File tree
31 files changed
+579
-137
lines changed- .github/workflows
- ci
- docs
- source/components
- examples
- IMU
- MobileNet
- NeuralNetwork
- SpatialDetection
- bootloader
- src
- openvino
- pipeline
- tests
- utilities
31 files changed
+579
-137
lines changedLines changed: 2 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
177 | 177 |
| |
178 | 178 |
| |
179 | 179 |
| |
| 180 | + | |
180 | 181 |
| |
181 | 182 |
| |
182 | 183 |
| |
| |||
230 | 231 |
| |
231 | 232 |
| |
232 | 233 |
| |
| 234 | + | |
233 | 235 |
| |
234 | 236 |
| |
235 | 237 |
| |
|
Lines changed: 30 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
9 | 9 |
| |
10 | 10 |
| |
11 | 11 |
| |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
12 | 18 |
| |
13 | 19 |
| |
14 | 20 |
| |
| |||
29 | 35 |
| |
30 | 36 |
| |
31 | 37 |
| |
32 |
| - | |
| 38 | + | |
33 | 39 |
| |
34 | 40 |
| |
35 | 41 |
| |
| |||
97 | 103 |
| |
98 | 104 |
| |
99 | 105 |
| |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
100 | 123 |
| |
101 | 124 |
| |
102 | 125 |
| |
| |||
108 | 131 |
| |
109 | 132 |
| |
110 | 133 |
| |
111 |
| - | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
112 | 140 |
| |
113 | 141 |
| |
114 | 142 |
| |
|
Lines changed: 0 additions & 6 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
4 | 4 |
| |
5 | 5 |
| |
6 | 6 |
| |
7 |
| - | |
8 |
| - | |
9 |
| - | |
10 |
| - | |
11 |
| - | |
12 |
| - | |
13 | 7 |
| |
14 | 8 |
| |
15 | 9 |
| |
|
Submodule depthai-core updated 48 files
- .github/workflows/main.workflow.yml+3-3
- .github/workflows/test.workflow.yml+3-3
- CMakeLists.txt+6-3
- README.md+3-6
- cmake/ClangFormat.cmake+2-2
- cmake/Depthai/DepthaiDeviceSideConfig.cmake+1-1
- cmake/Hunter/config.cmake+19-6
- cmake/depthaiDependencies.cmake+7-1
- cmake/toolchain/asan.cmake+12
- cmake/toolchain/ubsan.cmake+12
- examples/CMakeLists.txt+31-3
- examples/IMU/imu_firmware_update.cpp+88
- examples/IMU/imu_rotation_vector.cpp+1
- examples/MobileNet/rgb_mobilenet.cpp+18
- examples/NeuralNetwork/detection_parser.cpp+151
- examples/SpatialDetection/spatial_tiny_yolo.cpp+15
- examples/bootloader/bootloader_config.cpp+1-1
- examples/bootloader/bootloader_version.cpp+1-1
- examples/bootloader/flash_bootloader.cpp+1-1
- include/depthai/device/DeviceBase.hpp+10-2
- include/depthai/openvino/OpenVINO.hpp+2-2
- include/depthai/pipeline/datatype/StereoDepthConfig.hpp+9
- include/depthai/pipeline/node/DetectionNetwork.hpp+5
- include/depthai/pipeline/node/DetectionParser.hpp+107
- include/depthai/pipeline/node/IMU.hpp+6
- include/depthai/pipeline/node/StereoDepth.hpp+9
- include/depthai/pipeline/node/VideoEncoder.hpp+6
- include/depthai/pipeline/nodes.hpp+1
- include/depthai/utility/Initialization.hpp+4-1
- include/depthai/xlink/XLinkConnection.hpp+18-6
- shared/depthai-shared+1-1
- src/device/DeviceBase.cpp+63-32
- src/device/DeviceBootloader.cpp+10-9
- src/openvino/OpenVINO.cpp+15-3
- src/pipeline/datatype/StereoDepthConfig.cpp+5
- src/pipeline/node/DetectionNetwork.cpp+15-15
- src/pipeline/node/DetectionParser.cpp+94
- src/pipeline/node/IMU.cpp+4
- src/pipeline/node/SpatialDetectionNetwork.cpp+12-12
- src/pipeline/node/StereoDepth.cpp+4
- src/pipeline/node/VideoEncoder.cpp+8-5
- src/utility/Initialization.cpp+18-3
- src/utility/Resources.cpp+4-3
- src/xlink/XLinkConnection.cpp+199-165
- tests/CMakeLists.txt+42-12
- tests/integration/CMakeLists.txt+33
- tests/integration/src/main.cpp+8
- tests/src/openvino_blob_test.cpp+23
Lines changed: 2 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
40 | 40 |
| |
41 | 41 |
| |
42 | 42 |
| |
| 43 | + | |
| 44 | + | |
43 | 45 |
| |
44 | 46 |
| |
45 | 47 |
| |
|
Lines changed: 6 additions & 3 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
21 | 21 |
| |
22 | 22 |
| |
23 | 23 |
| |
24 |
| - | |
| 24 | + | |
25 | 25 |
| |
26 | 26 |
| |
27 | 27 |
| |
28 | 28 |
| |
29 | 29 |
| |
30 | 30 |
| |
31 |
| - | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
32 | 36 |
| |
33 | 37 |
| |
34 | 38 |
| |
35 | 39 |
| |
36 | 40 |
| |
37 |
| - | |
38 | 41 |
| |
39 | 42 |
| |
40 | 43 |
| |
|
Lines changed: 14 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
40 | 40 |
| |
41 | 41 |
| |
42 | 42 |
| |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
43 | 57 |
| |
44 | 58 |
| |
45 | 59 |
| |
|
Lines changed: 6 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
33 | 33 |
| |
34 | 34 |
| |
35 | 35 |
| |
| 36 | + | |
| 37 | + | |
36 | 38 |
| |
37 | 39 |
| |
38 | 40 |
| |
| |||
49 | 51 |
| |
50 | 52 |
| |
51 | 53 |
| |
| 54 | + | |
| 55 | + | |
52 | 56 |
| |
53 | 57 |
| |
54 | 58 |
| |
| |||
70 | 74 |
| |
71 | 75 |
| |
72 | 76 |
| |
| 77 | + | |
| 78 | + | |
73 | 79 |
| |
74 | 80 |
| |
75 | 81 |
| |
|
Lines changed: 74 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 | + |
Lines changed: 1 addition & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
16 | 16 |
| |
17 | 17 |
| |
18 | 18 |
| |
| 19 | + | |
19 | 20 |
| |
20 | 21 |
| |
21 | 22 |
| |
|
Lines changed: 15 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
29 | 29 |
| |
30 | 30 |
| |
31 | 31 |
| |
| 32 | + | |
32 | 33 |
| |
33 | 34 |
| |
34 | 35 |
| |
| 36 | + | |
35 | 37 |
| |
36 | 38 |
| |
37 | 39 |
| |
| |||
51 | 53 |
| |
52 | 54 |
| |
53 | 55 |
| |
| 56 | + | |
54 | 57 |
| |
55 | 58 |
| |
56 | 59 |
| |
57 | 60 |
| |
58 | 61 |
| |
59 | 62 |
| |
60 | 63 |
| |
| 64 | + | |
61 | 65 |
| |
62 | 66 |
| |
63 | 67 |
| |
| |||
81 | 85 |
| |
82 | 86 |
| |
83 | 87 |
| |
| 88 | + | |
| 89 | + | |
84 | 90 |
| |
85 | 91 |
| |
86 | 92 |
| |
87 | 93 |
| |
88 | 94 |
| |
| 95 | + | |
89 | 96 |
| |
90 | 97 |
| |
91 | 98 |
| |
92 | 99 |
| |
| 100 | + | |
93 | 101 |
| |
94 | 102 |
| |
95 | 103 |
| |
| |||
100 | 108 |
| |
101 | 109 |
| |
102 | 110 |
| |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
103 | 118 |
| |
104 | 119 |
| |
105 | 120 |
| |
|
0 commit comments