File tree
40 files changed
+1079
-110
lines changed- ci
- examples
- ColorCamera
- IMU
- ImageManip
- MonoCamera
- SpatialDetection
- Warp
- bootloader
- mixed
- src
- pipeline
- datatype
- node
- utilities
40 files changed
+1079
-110
lines changedLines changed: 2 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
100 | 100 |
| |
101 | 101 |
| |
102 | 102 |
| |
| 103 | + | |
103 | 104 |
| |
104 | 105 |
| |
105 | 106 |
| |
| |||
124 | 125 |
| |
125 | 126 |
| |
126 | 127 |
| |
| 128 | + | |
127 | 129 |
| |
128 | 130 |
| |
129 | 131 |
| |
|
Lines changed: 8 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | 1 |
| |
2 | 2 |
| |
3 |
| - | |
| 3 | + | |
4 | 4 |
| |
5 | 5 |
| |
6 | 6 |
| |
7 | 7 |
| |
8 | 8 |
| |
9 | 9 |
| |
| 10 | + | |
10 | 11 |
| |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
11 | 18 |
|
Submodule depthai-core updated 48 files
- CMakeLists.txt+3-1
- cmake/Depthai/DepthaiBootloaderConfig.cmake+2-2
- cmake/Depthai/DepthaiDeviceSideConfig.cmake+1-1
- docs/Doxyfile.in+1-1
- examples/CMakeLists.txt+7-2
- examples/ColorCamera/rgb_preview.cpp+5
- examples/IMU/imu_firmware_update.cpp+2-2
- examples/IMU/imu_gyroscope_accelerometer.cpp+2-2
- examples/IMU/imu_rotation_vector.cpp+1-1
- examples/Script/script_change_pipeline_flow.cpp+5-5
- examples/SpatialDetection/spatial_calculator_multi_roi.cpp+2-3
- examples/SpatialDetection/spatial_mobilenet.cpp+11-21
- examples/SpatialDetection/spatial_mobilenet_mono.cpp+11-20
- examples/SpatialDetection/spatial_tiny_yolo.cpp+11-21
- examples/Warp/warp_mesh.cpp+74
- examples/bootloader/bootloader_version.cpp+1-1
- examples/bootloader/flash_user_bootloader.cpp+50
- examples/calibration/calibration_factory_reset.cpp+2-2
- examples/host_side/device_information.cpp-1
- include/depthai/common/CameraBoardSocket.hpp+18-3
- include/depthai/device/CalibrationHandler.hpp+25-22
- include/depthai/device/Device.hpp+1-1
- include/depthai/device/DeviceBase.hpp+52-1
- include/depthai/device/DeviceBootloader.hpp+22-35
- include/depthai/device/Version.hpp+43
- include/depthai/pipeline/datatype/CameraControl.hpp+97-19
- include/depthai/pipeline/datatype/ImgFrame.hpp+21
- include/depthai/pipeline/node/ColorCamera.hpp+10
- include/depthai/pipeline/node/MonoCamera.hpp+20
- include/depthai/pipeline/node/Script.hpp+6-4
- include/depthai/pipeline/node/Warp.hpp+99
- include/depthai/pipeline/nodes.hpp+1
- include/depthai/xlink/XLinkConnection.hpp+3-1
- shared/depthai-bootloader-shared+1-1
- shared/depthai-shared+1-1
- src/device/CalibrationHandler.cpp+85-81
- src/device/DeviceBase.cpp+40
- src/device/DeviceBootloader.cpp+147-65
- src/device/Version.cpp+74
- src/pipeline/datatype/CameraControl.cpp+56
- src/pipeline/datatype/ImgFrame.cpp+12
- src/pipeline/node/ColorCamera.cpp+68-4
- src/pipeline/node/DetectionNetwork.cpp+1
- src/pipeline/node/MonoCamera.cpp+22-1
- src/pipeline/node/Script.cpp+6-2
- src/pipeline/node/Warp.cpp+98
- src/utility/Initialization.cpp+14
- tests/src/stability_stress_test.cpp+11-21
Lines changed: 13 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
32 | 32 |
| |
33 | 33 |
| |
34 | 34 |
| |
| 35 | + | |
| 36 | + | |
35 | 37 |
| |
36 | 38 |
| |
37 | 39 |
| |
| |||
117 | 119 |
| |
118 | 120 |
| |
119 | 121 |
| |
| 122 | + | |
120 | 123 |
| |
121 | 124 |
| |
122 | 125 |
| |
| |||
129 | 132 |
| |
130 | 133 |
| |
131 | 134 |
| |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
| 141 | + | |
132 | 142 |
| |
133 | 143 |
| |
134 | 144 |
| |
| |||
150 | 160 |
| |
151 | 161 |
| |
152 | 162 |
| |
| 163 | + | |
| 164 | + | |
| 165 | + | |
153 | 166 |
| |
154 | 167 |
| |
155 | 168 |
| |
|
Lines changed: 3 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
26 | 26 |
| |
27 | 27 |
| |
28 | 28 |
| |
| 29 | + | |
| 30 | + | |
| 31 | + | |
29 | 32 |
| |
30 | 33 |
| |
31 | 34 |
| |
|
Lines changed: 88 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + |
Lines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
55 | 55 |
| |
56 | 56 |
| |
57 | 57 |
| |
58 |
| - | |
59 |
| - | |
| 58 | + | |
| 59 | + | |
60 | 60 |
| |
61 | 61 |
| |
62 | 62 |
| |
|
Lines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
46 | 46 |
| |
47 | 47 |
| |
48 | 48 |
| |
49 |
| - | |
50 |
| - | |
| 49 | + | |
| 50 | + | |
51 | 51 |
| |
52 | 52 |
| |
53 | 53 |
| |
|
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
43 | 43 |
| |
44 | 44 |
| |
45 | 45 |
| |
46 |
| - | |
| 46 | + | |
47 | 47 |
| |
48 | 48 |
| |
49 | 49 |
| |
|
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
12 | 12 |
| |
13 | 13 |
| |
14 | 14 |
| |
15 |
| - | |
| 15 | + | |
16 | 16 |
| |
17 | 17 |
| |
18 | 18 |
| |
|
Lines changed: 116 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + |
File mode changed.
0 commit comments