1
Getting Started
Pick the correct getting started guide for your device.
After you have you camera connected, the quickest way to start is by running OAK Viewer.
2
Running your first App
Try out our pre-made applications to dip your toes into our ecosystem. Here is an example of how to start the generic neural network app:
3
Building the App from ground up
Quickest way to get started with developing on your own is to use the template app. This app is a starting point for your own applications and includes all the necessary components to get you up and running.
1# Install core packages
2pip install depthai --force-reinstall
3# Clone the template app
4git clone https://github.com/luxonis/oak-template.git
5# Change directory to the template app
6cd oak-template
7# Install requirements
8pip install -r requirements.txtThis will download the template / cookie-cutter app to your current directory.
1template-app/
2├── main.py
3├── oakapp.toml
4├── requirements.txt
5├── media/ # Optional media files
6└── utils/ # Optional helper functions4
Next Steps
We suggest you continue exploring the ecosystem in one of the following ways.