Skip to content

Commit 3b6f1b7

Browse files
author
SzabolcsGergely
committed
Merge remote-tracking branch 'origin/main' into HEAD
2 parents 6475b0c + a1f8eda commit 3b6f1b7

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

docs/source/components/messages/camera_control.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ CameraControl
22
=============
33

44
This message is used for controlling the :ref:`color camera <ColorCamera>` as well as the :ref:`mono camera <MonoCamera>`.
5-
The message handles things like capturing still images, confifguring auto focus, anti banding, white balance,
5+
The message handles things like capturing still images, configuring auto focus, anti banding, white balance,
66
scenes, effects etc.
77

88
Examples of functionality

docs/source/components/nodes/image_manip.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,8 @@ Limitations
7979

8080
Besides limitations mentioned above (unsupported frame formats), there are other limitations:
8181

82-
- Due to HW warp constraint, rotating/warping can be done only on frames whose width values are multiples of 16.
82+
- Due to HW warp constraint, rotating/warping can be done only on frames whose width values are multiples of 16
83+
- Maximum output width of a frame is 1920 pixels
8384

8485
Examples of functionality
8586
#########################

docs/source/components/nodes/video_encoder.rst

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,16 @@ Usage
7777
Limitations
7878
###########
7979

80-
- HW limit for the encoder is: 3840x2160 pixels at 30FPS or :code:`248 million pixels/second`. The resolution and frame rate can be divided into multiple streams - but the sum of all the pixels/second needs to be below 248 million.
80+
For **H.264 / H.265 encoding**, we have the following limits:
81+
- **248 million pixels/second** limit for the encoder or 3840x2160 pixels at 30FPS. The resolution and frame rate can be divided into multiple streams - but the sum of all the pixels/second needs to be below 248 million.
8182
- Due to a HW constraint, video encoding can be done only on frames whose width values are multiples of 32.
83+
- 4096 pixel max width for a frame.
84+
- Maximum of 3 parallel encoding streams.
85+
86+
The **MJPEG encoder** is capable of 16384x8192 resolution at 500Mpixel/second. From our testing, we were able to encode
87+
4K at 30FPS and 2x 800P at 55FPS.
88+
89+
Note the processing resources of the encoder **are shared** between H.26x and JPEG.
8290

8391
Examples of functionality
8492
#########################

docs/source/samples/SystemLogger/system_information.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Example script output
4040
----------------------------------------
4141
4242
- :code:`upa` represents the temperature of the SHAVE block
43-
- :code:`dss` represents the temperature od the DDR subsystem
43+
- :code:`dss` represents the temperature of the DDR subsystem
4444

4545
Setup
4646
#####

examples/calibration/calibration_reader.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@
2020
print(width)
2121
print(height)
2222

23-
M_rgb, width, height = calibData.getDefaultIntrinsics(dai.CameraBoardSocket.RGB)
24-
2523
M_left = np.array(calibData.getCameraIntrinsics(dai.CameraBoardSocket.LEFT, 1280, 720))
2624
print("LEFT Camera resized intrinsics...")
2725
print(M_left)

0 commit comments

Comments
 (0)