Skip to content

Commit

Permalink
Merge branch 'release_3.0.0-alpha.3' into v3_develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Matevz Morato committed Sep 17, 2024
2 parents fe8bc26 + 1c2faf7 commit 2e72fe5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ endif()
# Create depthai project
project(depthai VERSION "3.0.0" LANGUAGES CXX C)
set(DEPTHAI_PRE_RELEASE_TYPE "alpha") # Valid options are "alpha", "beta", "rc", ""
set(DEPTHAI_PRE_RELEASE_VERSION "2")
set(DEPTHAI_PRE_RELEASE_VERSION "3")

# Set DEPTHAI_VERSION universally, not conditionally
set(DEPTHAI_VERSION ${PROJECT_VERSION}-${DEPTHAI_PRE_RELEASE_TYPE}.${DEPTHAI_PRE_RELEASE_VERSION})
Expand Down
2 changes: 1 addition & 1 deletion examples/python/VideoEncoder/video_encode.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def process(self, frame):

with dai.Pipeline() as pipeline:
camRgb = pipeline.create(dai.node.Camera).build(dai.CameraBoardSocket.CAM_A)
output = camRgb.requestOutput((1920, 1440))
output = camRgb.requestOutput((1920, 1440), type=dai.ImgFrame.Type.NV12)
outputQueue = output.createOutputQueue()
encoded = pipeline.create(dai.node.VideoEncoder).build(output,
frameRate = 30,
Expand Down

0 comments on commit 2e72fe5

Please sign in to comment.