Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update repository server #8414

Merged
merged 2 commits into from
Feb 23, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMake/connectivity_check.cmake
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# License: Apache 2.0. See LICENSE file in root directory.
# Copyright(c) 2019 Intel Corporation. All Rights Reserved.
message(STATUS "Checking internet connection...")
file(DOWNLOAD "http://realsense-hw-public.s3-eu-west-1.amazonaws.com/Releases/connectivity_check" "${CMAKE_CURRENT_SOURCE_DIR}/connectivity_check" SHOW_PROGRESS TIMEOUT 5 STATUS status)
file(DOWNLOAD "https://librealsense.intel.com/Releases/connectivity_check" "${CMAKE_CURRENT_SOURCE_DIR}/connectivity_check" SHOW_PROGRESS TIMEOUT 5 STATUS status)
list (FIND status "\"No error\"" _index)
if (${_index} EQUAL -1)
message(STATUS "Failed to identify Internet connection")
Expand Down
6 changes: 3 additions & 3 deletions doc/distribution_linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ In case the public key still cannot be retrieved, check and specify proxy settin

- Add the server to the list of repositories:
Ubuntu 16 LTS:
`sudo add-apt-repository "deb http://realsense-hw-public.s3.amazonaws.com/Debian/apt-repo xenial main" -u`
`sudo add-apt-repository "deb https://librealsense.intel.com/Debian/apt-repo xenial main" -u`
Ubuntu 18 LTS:
`sudo add-apt-repository "deb http://realsense-hw-public.s3.amazonaws.com/Debian/apt-repo bionic main" -u`
`sudo add-apt-repository "deb https://librealsense.intel.com/Debian/apt-repo bionic main" -u`
Ubuntu 20 LTS:
`sudo add-apt-repository "deb http://realsense-hw-public.s3.amazonaws.com/Debian/apt-repo focal main" -u`
`sudo add-apt-repository "deb https://librealsense.intel.com/Debian/apt-repo focal main" -u`

- Install the libraries (see section below if upgrading packages):
`sudo apt-get install librealsense2-dkms`
Expand Down
4 changes: 2 additions & 2 deletions doc/installation_jetson.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ Note that this method provides binary installation compiled using the `-DFORCE_R

* Ubuntu 16:
```
sudo add-apt-repository "deb http://realsense-hw-public.s3.amazonaws.com/Debian/apt-repo xenial main" -u
sudo add-apt-repository "deb https://librealsense.intel.com/Debian/apt-repo xenial main" -u
```

* Ubuntu 18:
```
sudo add-apt-repository "deb http://realsense-hw-public.s3.amazonaws.com/Debian/apt-repo bionic main" -u
sudo add-apt-repository "deb https://librealsense.intel.com/Debian/apt-repo bionic main" -u
```

3. Install the SDK:
Expand Down
2 changes: 1 addition & 1 deletion wrappers/tensorflow/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ When we upsample we get the lost information back (by the concatenation process)
so we can see last-layer features in the perspective of the layer above them.

#### Training Dataset
Download [part 1](https://librealsense.intel.com/rs-tests/ML/Depth_Learning/Dataset/part1_1_4000.zip) and [part 2](http://realsense-hw-public.s3.eu-west-1.amazonaws.com/rs-tests/ML/Depth_Learning/Dataset/part2_4001_8375.zip) of the dataset. It contains 4 types of 848x480 images in uncompressed PNG format:
Download [part 1](https://librealsense.intel.com/rs-tests/ML/Depth_Learning/Dataset/part1_1_4000.zip) and [part 2](https://librealsense.intel.com/rs-tests/ML/Depth_Learning/Dataset/part2_4001_8375.zip) of the dataset. It contains 4 types of 848x480 images in uncompressed PNG format:

###### 1. Simulated Left Infrared:
- Synthetic view from left infrared sensor of the virtual camera, including infrared projection pattern
Expand Down