Skip to content

Commit

Permalink
Merge pull request #1037 from luxonis/rvc3_stereo_rewrite
Browse files Browse the repository at this point in the history
KeemBay: Reimplement StereoDepth algorithm
  • Loading branch information
SzabolcsGergely authored Sep 23, 2024
2 parents ba29193 + 9811dcb commit 6a1f5d8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion depthai-core
6 changes: 3 additions & 3 deletions examples/StereoDepth/stereo_depth_from_host.py
Original file line number Diff line number Diff line change
Expand Up @@ -530,14 +530,14 @@ def __init__(self, config):


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

enableDebugLrCheckIt1 = True
enableDebugLrCheckIt1 = args.debug
enableDebugLrCheckIt2 = args.debug
enableDebugExtLrCheckIt1 = args.debug
enableDebugExtLrCheckIt2 = args.debug
Expand Down

0 comments on commit 6a1f5d8

Please sign in to comment.