Skip to content

Commit

Permalink
RVC2: Fix intrinsics used in ImageAlign
Browse files Browse the repository at this point in the history
  • Loading branch information
SzabolcsGergely committed Nov 20, 2024
1 parent 53997cb commit e7e46e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmake/Depthai/DepthaiDeviceSideConfig.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set(DEPTHAI_DEVICE_SIDE_MATURITY "snapshot")

# "full commit hash of device side binary"
set(DEPTHAI_DEVICE_SIDE_COMMIT "ff377bfee122b3c2c9d9b9e04e77ab06a8afb9c3")
set(DEPTHAI_DEVICE_SIDE_COMMIT "23e603b35f76cf2751908e75deeddef6e58e2234")

# "version if applicable"
set(DEPTHAI_DEVICE_SIDE_VERSION "")
2 changes: 1 addition & 1 deletion examples/python/ImageAlign/depth_align.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def getFps(self):

sync.setSyncThreshold(timedelta(seconds=1/(2*FPS)))

rgbOut = camRgb.requestOutput(size = (1280, 960))
rgbOut = camRgb.requestOutput(size = (1280, 960), fps = FPS)
leftOut = left.requestOutput(size = (640, 400), fps = FPS)
rightOut = right.requestOutput(size = (640, 400), fps = FPS)

Expand Down

0 comments on commit e7e46e0

Please sign in to comment.