File tree
25 files changed
+1297
-129
lines changed- .github/workflows
- examples
- Camera
- Cast
- ImageAlign
- SpatialDetection
- models/cast-models
- src
- pipeline
- datatype
- node
- utilities
25 files changed
+1297
-129
lines changedLines changed: 7 additions & 62 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
72 | 72 |
| |
73 | 73 |
| |
74 | 74 |
| |
75 |
| - | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
76 | 78 |
| |
77 | 79 |
| |
78 | 80 |
| |
| |||
230 | 232 |
| |
231 | 233 |
| |
232 | 234 |
| |
233 |
| - | |
| 235 | + | |
234 | 236 |
| |
235 | 237 |
| |
236 | 238 |
| |
237 | 239 |
| |
238 |
| - | |
239 |
| - | |
| 240 | + | |
| 241 | + | |
240 | 242 |
| |
241 | 243 |
| |
242 | 244 |
| |
| |||
290 | 292 |
| |
291 | 293 |
| |
292 | 294 |
| |
293 |
| - | |
294 |
| - | |
295 |
| - | |
296 |
| - | |
297 |
| - | |
298 |
| - | |
299 |
| - | |
300 |
| - | |
301 |
| - | |
302 |
| - | |
303 |
| - | |
304 |
| - | |
305 |
| - | |
306 |
| - | |
307 |
| - | |
308 |
| - | |
309 |
| - | |
310 |
| - | |
311 |
| - | |
312 |
| - | |
313 |
| - | |
314 |
| - | |
315 |
| - | |
316 |
| - | |
317 |
| - | |
318 |
| - | |
319 |
| - | |
320 |
| - | |
321 |
| - | |
322 |
| - | |
323 |
| - | |
324 |
| - | |
325 |
| - | |
326 |
| - | |
327 |
| - | |
328 |
| - | |
329 |
| - | |
330 |
| - | |
331 |
| - | |
332 |
| - | |
333 |
| - | |
334 |
| - | |
335 |
| - | |
336 |
| - | |
337 |
| - | |
338 |
| - | |
339 |
| - | |
340 |
| - | |
341 |
| - | |
342 |
| - | |
343 |
| - | |
344 |
| - | |
345 |
| - | |
346 |
| - | |
347 |
| - | |
348 |
| - | |
349 |
| - | |
350 | 295 |
| |
351 | 296 |
| |
352 | 297 |
| |
| |||
470 | 415 |
| |
471 | 416 |
| |
472 | 417 |
| |
473 |
| - | |
| 418 | + | |
474 | 419 |
| |
475 | 420 |
| |
476 | 421 |
| |
|
Lines changed: 3 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
132 | 132 |
| |
133 | 133 |
| |
134 | 134 |
| |
135 |
| - | |
| 135 | + | |
| 136 | + | |
136 | 137 |
| |
137 | 138 |
| |
138 | 139 |
| |
| |||
157 | 158 |
| |
158 | 159 |
| |
159 | 160 |
| |
| 161 | + | |
160 | 162 |
| |
161 | 163 |
| |
162 | 164 |
| |
|
Submodule depthai-core updated 37 files
- .github/workflows/main.workflow.yml+3-1
- CMakeLists.txt+4-1
- cmake/Depthai/DepthaiBootloaderConfig.cmake+2-2
- cmake/Depthai/DepthaiDeviceSideConfig.cmake+1-1
- examples/CMakeLists.txt+36
- examples/Camera/thermal_cam.cpp+7-6
- examples/Cast/blur.cpp+50
- examples/Cast/concat.cpp+63
- examples/Cast/diff.cpp+66
- examples/FeatureTracker/feature_tracker.cpp+1-1
- examples/ImageAlign/depth_align.cpp+148
- examples/ImageAlign/image_align.cpp+135
- examples/ImageAlign/thermal_align.cpp+164
- examples/ImageAlign/tof_align.cpp+135
- examples/SpatialDetection/spatial_tiny_yolo_tof.cpp+169
- examples/ToF/tof_depth.cpp+140
- include/depthai/device/CalibrationHandler.hpp+1-1
- include/depthai/device/DeviceBase.hpp+10
- include/depthai/pipeline/datatype/ImageAlignConfig.hpp+33
- include/depthai/pipeline/datatype/ToFConfig.hpp-7
- include/depthai/pipeline/node/Cast.hpp+62
- include/depthai/pipeline/node/ImageAlign.hpp+91
- include/depthai/pipeline/node/ToF.hpp+26-2
- include/depthai/pipeline/node/VideoEncoder.hpp+5-5
- include/depthai/pipeline/nodes.hpp+2
- shared/depthai-shared+1-1
- src/device/DeviceBase.cpp+4
- src/device/DeviceBootloader.cpp+13
- src/pipeline/datatype/ImageAlignConfig.cpp+21
- src/pipeline/datatype/ImgFrame.cpp+2
- src/pipeline/datatype/StreamMessageParser.cpp+46-17
- src/pipeline/datatype/ToFConfig.cpp+1-21
- src/pipeline/node/Cast.cpp+34
- src/pipeline/node/ImageAlign.cpp+46
- src/pipeline/node/ToF.cpp+11-1
- tests/src/image_manip_node_test.cpp-1
- tests/src/stream_message_parser_test.cpp+24-5
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: 49 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 | + |
Lines changed: 59 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 | + |
Lines changed: 60 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 | + |
0 commit comments