You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/components/nodes/tof.rst
+44-9Lines changed: 44 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,31 +30,39 @@ Inputs and Outputs
30
30
.. code-block::
31
31
32
32
┌───────────┐ depth
33
-
inputConfig | ├────────►
34
-
───────────►│ | amplitude
35
-
input | ToF ├────────►
36
-
───────────►│ │ error
33
+
│ ├────────►
34
+
inputConfig | | amplitude
35
+
───────────►│ ├────────►
36
+
│ ToF │ error
37
+
input | ├────────►
38
+
───────────►│ │ intensity
37
39
│ ├────────►
38
40
└───────────┘
39
41
42
+
43
+
40
44
**Message types**
41
45
42
46
- ``inputConfig`` - :ref:`ToFConfig`
43
47
- ``input`` - :ref:`ImgFrame`
44
-
- ``depth`` - :ref:`ImgFrame`
48
+
- ``depth`` - :ref:`ImgFrame` - Decoded depth map
45
49
- ``amplitude`` - :ref:`ImgFrame`
46
-
- ``error`` - :ref:`ImgFrame`
50
+
- ``intensity`` - :ref:`ImgFrame`
51
+
- ``phase`` - :ref:`ImgFrame` Phase image, useful for debugging (FP32)
47
52
48
53
ToF Settings
49
54
############
50
55
51
-
In :ref:`ToF depth` example we allow users to quickly configure the following ToF settings:
56
+
In :ref:`ToF depth` example we allow users to quickly configure ToF settings. These are mostly for debugging, and should be enabled:
52
57
53
-
- FFPN Correction; It's a process that corrects the fixed pattern noise (FPN) of the ToF sensor. It's enabled by default for best performance.
58
+
- FPPN Correction; It's a process that corrects the fixed pattern noise (FPN) of the ToF sensor. It's enabled by default for best performance.
54
59
- Wiggle Correction: It's a process that corrects the wiggle effect of the ToF sensor. It's enabled by default for best performance.
55
60
- Temperature Correction: It's a process that corrects the temperature effect of the ToF sensor. It's enabled by default for best performance.
61
+
62
+
And these settings are up to the user:
63
+
56
64
- Optical Correction: It's a process that corrects the optical effect (On -> ToF returns distance represented by Green Line), so it matches :ref:`StereoDepth` depth reporting.
57
-
- Phase Unwrapping - Process that corrects the phase wrapping effect of the ToF sensor. You can set it to [0..4]. The higher the number, the longer the ToF range, but it also increases the noise.
65
+
- Phase Unwrapping - Process that corrects the phase wrapping effect of the ToF sensor. You can set it to [0..5 are optimized]. The higher the number, the longer the ToF range, but it also increases the noise.
58
66
- `0` - Disabled.
59
67
- `1` - Up to 1.5 meters
60
68
- `2` - Up to 3 meters
@@ -63,6 +71,24 @@ In :ref:`ToF depth` example we allow users to quickly configure the following To
Copy file name to clipboardExpand all lines: docs/source/samples/ToF/tof_depth.rst
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ on the ToF sensor.
17
17
18
18
With keyboard you can configure ToF settings:
19
19
20
-
- FFPN Correction; Turn on/off with `f`. It's a process that corrects the fixed pattern noise (FPN) of the ToF sensor. Should be enabled.
20
+
- FPPN Correction; Turn on/off with `f`. It's a process that corrects the fixed pattern noise (FPN) of the ToF sensor. Should be enabled.
21
21
- Wiggle Correction: Turn on/off with `w`. It's a process that corrects the wiggle effect of the ToF sensor. Should be enabled.
22
22
- Temperature Correction: Turn on/off with `t`. It's a process that corrects the temperature effect of the ToF sensor. Should be enabled.
23
23
- Optical Correction: Turn on/off with `o`. It's a process that corrects the optical effect (On -> ToF returns distance represented by Green Line), so it matches stereo depth reporting.
@@ -27,6 +27,7 @@ With keyboard you can configure ToF settings:
0 commit comments