Skip to content

Commit 6a1f5d8

Browse files
Merge pull request #1037 from luxonis/rvc3_stereo_rewrite
KeemBay: Reimplement StereoDepth algorithm
2 parents ba29193 + 9811dcb commit 6a1f5d8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

depthai-core

examples/StereoDepth/stereo_depth_from_host.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -530,14 +530,14 @@ def __init__(self, config):
530530

531531

532532
# StereoDepth initial config options.
533-
outDepth = False # Disparity by default
533+
outDepth = True # Disparity by default
534534
outConfidenceMap = False # Output disparity confidence map
535535
outRectified = False # Output and display rectified streams
536-
lrcheck = False # Better handling for occlusions
536+
lrcheck = True # Better handling for occlusions
537537
extended = False # Closer-in minimum depth, disparity range is doubled. Unsupported for now.
538538
subpixel = True # Better accuracy for longer distance, fractional disparity 32-levels
539539

540-
enableDebugLrCheckIt1 = True
540+
enableDebugLrCheckIt1 = args.debug
541541
enableDebugLrCheckIt2 = args.debug
542542
enableDebugExtLrCheckIt1 = args.debug
543543
enableDebugExtLrCheckIt2 = args.debug

0 commit comments

Comments
 (0)