Integrations¶
DepthAI SDK also provides integrations with other tools and services. We will be adding additional integrations in the future.
NN model integrations¶
Roboflow¶
SDK provides a simple integration with Roboflow that allows you to run a custom trained AI model on an OAK camera. Example is also available on Github.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | from depthai_sdk import OakCamera # Download & deploy a model from Roboflow universe: # # https://universe.roboflow.com/david-lee-d0rhs/american-sign-language-letters/dataset/6 with OakCamera() as oak: color = oak.create_camera('color') model_config = { 'source': 'roboflow', # Specify that we are downloading the model from Roboflow 'model':'american-sign-language-letters/6', 'key':'181b0f6e43d59ee5ea421cd77f6d9ea2a4b059f8' # Fake API key, replace with your own! } nn = oak.create_nn(model_config, color) oak.visualize(nn, fps=True) oak.start(blocking=True) |