From 32367c7973d01be5d259f62473105d4d91771d63 Mon Sep 17 00:00:00 2001 From: Daniil Pastukhov Date: Wed, 17 May 2023 13:17:37 +0200 Subject: [PATCH] Remove excessive OakCamera occurrences --- depthai_sdk/docs/source/quickstart.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/depthai_sdk/docs/source/quickstart.rst b/depthai_sdk/docs/source/quickstart.rst index 4ed932795..b81e902a5 100644 --- a/depthai_sdk/docs/source/quickstart.rst +++ b/depthai_sdk/docs/source/quickstart.rst @@ -15,8 +15,8 @@ Working with camera The :class:`OakCamera ` class is a fundamental part of the DepthAI SDK, providing a high-level interface for accessing the features of the OAK device. This class simplifies the creation of pipelines that capture video from the OAK camera, run neural networks on the video stream, and visualize the results. -With :class:`OakCamera `, you can easily create color and depth streams using the :meth:`OakCamera.create_camera() ` and :meth:`OakCamera.create_stereo() ` methods respectively, and add pre-trained neural networks using the :meth:`OakCamera.create_nn() ` method. -Additionally, you can add custom callbacks to the pipeline using the :meth:`OakCamera.callback() ` method and record the outputs using the :meth:`OakCamera.record() ` method. +With :class:`OakCamera `, you can easily create color and depth streams using the :meth:`create_camera() ` and :meth:`create_stereo() ` methods respectively, and add pre-trained neural networks using the :meth:`create_nn() ` method. +Additionally, you can add custom callbacks to the pipeline using the :meth:`callback() ` method and record the outputs using the :meth:`record() ` method. Creating color and depth streams ---------------------