Camera Rotated Preview

This example showcases how to rotate the preview frames by a desired angle (currently only 90, 180 and 270 degrees are supported).

Note

Visualization in current example is done with blocking behavor. This means that the program will halt at oak.start() until the window is closed. This is done to keep the example simple. For more advanced usage, see Blocking behavior section.

Demo

Rotated preview

Setup

Please run the install script to download all required dependencies. Please note that this script must be ran from git context, so you have to download the depthai repository first and then run the script

git clone https://github.com/luxonis/depthai.git
cd depthai/
python3 install_requirements.py

For additional information, please follow our installation guide.

Pipeline

Pipeline graph

Source Code

Also available on GitHub

1
2
3
4
5
6
from depthai_sdk import OakCamera

with OakCamera(rotation=90) as oak:
    all_cams = oak.create_all_cameras()
    oak.visualize(all_cams, fps=True)
    oak.start(blocking=True)

Got questions?

Head over to Discussion Forum for technical support or any other questions you might have.