Skip to content

Commit 17fc7ba

Browse files
committed
added camera tuning docs
1 parent daa43e3 commit 17fc7ba

File tree

2 files changed

+32
-8
lines changed

2 files changed

+32
-8
lines changed

docs/source/index.rst

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,14 @@ node functionalities are presented with code.
4949
components/nodes.rst
5050
components/messages.rst
5151

52+
.. toctree::
53+
:maxdepth: 1
54+
:hidden:
55+
:caption: Code:
56+
57+
tutorials/code_samples.rst
58+
Experiments (GitHub) <https://github.com/luxonis/depthai-experiments>
59+
5260
.. toctree::
5361
:maxdepth: 1
5462
:hidden:
@@ -60,14 +68,7 @@ node functionalities are presented with code.
6068
tutorials/debugging.rst
6169
tutorials/ram_usage.rst
6270
tutorials/dispaying_detections.rst
63-
64-
.. toctree::
65-
:maxdepth: 1
66-
:hidden:
67-
:caption: Code:
68-
69-
tutorials/code_samples.rst
70-
Experiments (GitHub) <https://github.com/luxonis/depthai-experiments>
71+
tutorials/camera_tuning.rst
7172

7273
.. toctree::
7374
:maxdepth: 1
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Camera tuning
2+
=============
3+
4+
Our library supports setting camera IQ (Image Quality) tuning blob, which would be used for all cameras.
5+
By default, cameras will use a *general* tuning blob, which works great in most cases - so changing the camera
6+
tuning blob is not needed for most cases.
7+
8+
.. code-block:: python
9+
10+
import depthai as dai
11+
12+
pipeline = dai.Pipeline()
13+
pipeline.setCameraTuningBlobPath('/path/to/tuning.bin')
14+
15+
Available tuning blobs
16+
######################
17+
18+
To tune your own camera sensors, one would need special Intel's software, which is under their IP (license needed)
19+
- which means that the majority of people will only be able to use pre-tuned blobs.
20+
21+
**Currently available tuning blobs:**
22+
23+
- Color tuning for low-light environments `here <https://artifacts.luxonis.com/artifactory/luxonis-depthai-data-local/misc/tuning_color_low_light.bin>`__

0 commit comments

Comments
 (0)