Skip to content

Commit 9f24993

Browse files
committed
Update readme.md
1 parent 281ec66 commit 9f24993

1 file changed

Lines changed: 21 additions & 32 deletions

File tree

readme.md

Lines changed: 21 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
<br><br>
88
</p>
99

10-
<p align="center">
11-
RealSense SDK 2.0 is a cross-platform library for RealSense depth cameras. The SDK allows depth and color streaming, and provides intrinsic and extrinsic calibration information.
12-
</p>
10+
<p align="center">RealSense SDK 2.0 is a cross-platform library for RealSense depth cameras.
11+
The SDK allows depth and color streaming, and provides intrinsic and extrinsic calibration information.</p>
12+
1313

1414
<p align="center">
1515
<a href="https://www.apache.org/licenses/LICENSE-2.0"><img src="https://img.shields.io/github/license/IntelRealSense/librealsense.svg" alt="License"></a>
@@ -49,55 +49,45 @@ Here are some examples of the supported models:
4949

5050
| Product | Image | Description |
5151
|---------|-------|-------------|
52-
| [**D455**](https://realsenseai.com/stereo-depth-cameras/real-sense-depth-camera-d455/) | <img src="https://www.realsenseai.com/wp-content/uploads/2021/11/455.png" width="1000"> | The D455 is the fourth in the D400 series, designed from feedback and knowledge gained from over 10 years of stereo camera development. |
53-
| [**D435f**](https://realsenseai.com/stereo-depth-with-ir-pass-filter/d435f/) | <img src="https://realsenseai.com/wp-content/uploads/2025/07/D435if-a.png" width="1000"> | The RealSense Depth Camera D435f expands our portfolio targeting the growing market of autonomous mobile robots. The D435f utilizes an IR pass filter to enhance depth noise quality and performance range in many robotic environments. |
52+
| [**D455**](https://realsenseai.com/stereo-depth-cameras/real-sense-depth-camera-d455/) | <img src="https://www.realsenseai.com/wp-content/uploads/2021/11/455.png" width="1000"> | The D455 is one of the D400 series, designed from feedback and knowledge gained from over 10 years of stereo camera development. |
53+
| [**D435f**](https://realsenseai.com/stereo-depth-with-ir-pass-filter/d435f/) | <img src="https://realsenseai.com/wp-content/uploads/2025/07/D435if-a.png" width="1000"> | The RealSense Depth Camera D435f expands our portfolio targeting the growing market of autonomous mobile robots. The D435f utilizes an IR pass filter to enhance depth noise quality and performance range in many robotic environments. |
5454
| [**D555 PoE**](https://realsenseai.com/ruggedized-industrial-stereo-depth/d555-poe/) | <img src="https://realsenseai.com/wp-content/uploads/2025/07/D555.png" width="1000"> | The RealSense™ Depth Camera D555 introduces Power over Ethernet (PoE) interface on chip, expanding our portfolio of USB and GMSL/FAKRA products. |
5555

5656
> 🛍️ [Explore more stereo products](https://store.realsenseai.com/)
5757
5858
## Getting Started
5959

60-
Start developing with RealSense in minutes using either method:
60+
Start developing with RealSense in minutes using either method below.
6161

6262
### 1️. Precompiled SDK
63-
**Best if you want to plug in a camera and try things right away.**
64-
65-
66-
1. **Download** the latest SDK bundle from the [Releases page](https://github.com/IntelRealSense/librealsense/releases).
67-
2. **Connect** your RealSense camera via USB.
68-
3. **Run** the included tools:
6963

70-
**RealSense Viewer**
71-
- View depth/RGB streams & point clouds
72-
- Record / playback
73-
- Tune settings & post-processing
74-
[▶️ Demo](https://www.youtube.com/watch?v=sBxSExrjULg)[⬇️ Download](https://github.com/IntelRealSense/librealsense/releases)[📚 User Guide](https://www.realsenseai.com/download/7144/)
75-
76-
**Depth Quality Tool**
77-
- Plane-fit std. dev., sub-pixel accuracy
78-
- Distance accuracy & fill rate
79-
[▶️ Demo](https://www.youtube.com/watch?v=daZitqbK1A8)[⬇️ Download](https://github.com/IntelRealSense/librealsense/releases)
64+
This is the best option if you want to plug in your camera and get started right away.
65+
1. Download the latest SDK bundle from the [Releases page](https://github.com/IntelRealSense/librealsense/releases).
66+
2. Connect your RealSense camera.
67+
3. Run the included tools:
68+
- RealSense Viewer: View streams, record playback, and tune settings.
69+
- Depth Quality Tool: Measure accuracy and fill rate.
8070

8171
### 2️. Build from Source
82-
72+
For a more custom installation, follow these steps to build the SDK from source.
73+
1. Clone the repository and create a build directory:
8374
```bash
8475
git clone https://github.com/IntelRealSense/librealsense.git
8576
mkdir build && cd build
86-
cmake .. -DBUILD_EXAMPLES=true
87-
cmake --build . --config Release -j$(nproc)
8877
```
78+
2. Run CMake to configure the build:
79+
```bash
80+
cmake .. -DBUILD_EXAMPLES=true
81+
```
8982

9083
</div>
9184

92-
#### Setup Guides
85+
### Setup Guides
9386
<div align="center" style="margin: 20px 0;"> <a href="./doc/distribution_linux.md"><img src="https://img.shields.io/badge/Ubuntu_Guide-E95420?logo=ubuntu&logoColor=white" style="margin: 5px;"></a> <a href="./doc/distribution_windows.md"><img src="https://img.shields.io/badge/Windows_Guide-0078D6?logo=windows&logoColor=white" style="margin: 5px;"></a> <a href="./doc/installation_osx.md"><img src="https://img.shields.io/badge/macOS_Guide-000000?logo=apple&logoColor=white" style="margin: 5px;"></a> <a href="./doc/android.md"><img src="https://img.shields.io/badge/Android_Guide-3DDC84?logo=android&logoColor=white" style="margin: 5px;"></a> <a href="./scripts/Docker/readme.md"><img src="https://img.shields.io/badge/Docker_Guide-2496ED?logo=docker&logoColor=white" style="margin: 5px;"></a> </div>
9487

9588

96-
## Python (PyPI) Packages
97-
98-
> The official Python wrapper for RealSenseAi SDK 2.0 is published on PyPI.
99-
100-
[![PyPI - pyrealsense2](https://img.shields.io/pypi/v/pyrealsense2.svg)](https://pypi.org/project/pyrealsense2/)
89+
## Python Packages
90+
[![pyrealsense2](https://img.shields.io/pypi/v/pyrealsense2.svg?label=pyrealsense2&logo=pypi)](https://pypi.org/project/pyrealsense2/)
10191
[![PyPI - pyrealsense2-beta](https://img.shields.io/pypi/v/pyrealsense2-beta.svg?label=pyrealsense2-beta)](https://pypi.org/project/pyrealsense2-beta/)
10292

10393
**Which should I use?**
@@ -109,7 +99,6 @@ Start developing with RealSense in minutes using either method:
10999
### Install
110100
```bash
111101
pip install -U pyrealsense2 # Stable
112-
113102
pip install -U pyrealsense2-beta # Beta
114103
```
115104

0 commit comments

Comments
 (0)