Skip to content

Commit

Permalink
Merge pull request #524 from luxonis/bump_sdk
Browse files Browse the repository at this point in the history
Bump SDK version to 1.1.3
  • Loading branch information
VanDavv authored Nov 16, 2021
2 parents 92c66ab + 766ebed commit 6d599b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion depthai_sdk/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='depthai-sdk',
version='1.1.2',
version='1.1.3',
description='This package contains convenience classes and functions that help in most common tasks while using DepthAI API',
long_description=io.open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion depthai_sdk/src/depthai_sdk/managers/nnet_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def createNN(self, pipeline, nodes, blobPath, source="color", flipDetection=Fals
nodes.camRgb.preview.link(nodes.nn.input)
elif self.source == "host":
nodes.xinNn = pipeline.createXLinkIn()
self.nodes.xinRgbControl.setMaxDataSize(self.inputSize[0] * self.inputSize[1] * 3)
nodes.xinNn.setMaxDataSize(self.inputSize[0] * self.inputSize[1] * 3)
nodes.xinNn.setStreamName("nnIn")
nodes.xinNn.out.link(nodes.nn.input)
elif self.source in ("left", "right", "rectifiedLeft", "rectifiedRight"):
Expand Down

0 comments on commit 6d599b3

Please sign in to comment.