File tree
44 files changed
+407
-120
lines changed- docs/source/components/nodes
- examples
- CrashReport
- IMU
- ImageManip
- MonoCamera
- NeuralNetwork
- Script
- SpatialDetection
- StereoDepth
- Warp
- bootloader
- device
- host_side
- mixed
- src
- pipeline
- datatype
- node
- utilities
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
44 files changed
+407
-120
lines changedSubmodule depthai-core updated 59 files
- .github/workflows/main.workflow.yml+4-4
- CMakeLists.txt+1-1
- README.md+23
- cmake/Depthai/DepthaiDeviceSideConfig.cmake+1-1
- cmake/Hunter/config.cmake+4-4
- examples/CMakeLists.txt+7
- examples/CrashReport/crash_report.cpp+41
- examples/FeatureTracker/feature_tracker.cpp+1-3
- examples/IMU/imu_firmware_update.cpp+24-58
- examples/SpatialDetection/spatial_location_calculator.cpp+28
- examples/StereoDepth/stereo_depth_video.cpp-1
- include/depthai/device/DataQueue.hpp+9-1
- include/depthai/device/DeviceBase.hpp+58-9
- include/depthai/device/DeviceBootloader.hpp+12-1
- include/depthai/pipeline/Pipeline.hpp+24
- include/depthai/pipeline/datatype/StereoDepthConfig.hpp+7
- include/depthai/pipeline/node/Camera.hpp+9
- include/depthai/pipeline/node/ColorCamera.hpp+10
- include/depthai/pipeline/node/MonoCamera.hpp+10
- include/depthai/pipeline/node/ObjectTracker.hpp+5
- include/depthai/pipeline/node/SPIOut.hpp+2-2
- include/depthai/pipeline/node/SpatialDetectionNetwork.hpp+8-1
- include/depthai/pipeline/node/StereoDepth.hpp+28
- include/depthai/pipeline/node/Warp.hpp+1-1
- include/depthai/utility/LockingQueue.hpp+1-4
- include/depthai/xlink/XLinkConnection.hpp+4-1
- include/depthai/xlink/XLinkStream.hpp+1
- shared/depthai-shared+1-1
- src/device/CalibrationHandler.cpp+2-2
- src/device/DataQueue.cpp+11-2
- src/device/Device.cpp-14
- src/device/DeviceBase.cpp+62-89
- src/device/DeviceBootloader.cpp+31-13
- src/pipeline/Node.cpp+7-7
- src/pipeline/Pipeline.cpp+12-4
- src/pipeline/datatype/StereoDepthConfig.cpp+5
- src/pipeline/node/Camera.cpp+4
- src/pipeline/node/ColorCamera.cpp+13-9
- src/pipeline/node/MonoCamera.cpp+7-3
- src/pipeline/node/NeuralNetwork.cpp+1-1
- src/pipeline/node/ObjectTracker.cpp+3
- src/pipeline/node/SPIIn.cpp+2-2
- src/pipeline/node/SpatialDetectionNetwork.cpp+4
- src/pipeline/node/StereoDepth.cpp+16
- src/utility/Initialization.cpp-1
- src/utility/PimplImpl.hpp+5-5
- src/xlink/XLinkConnection.cpp+16-26
- tests/CMakeLists.txt+9-4
- tests/src/bootloader_config_test.cpp+1-2
- tests/src/bootloader_version_test.cpp+1-2
- tests/src/device_usbspeed_test.cpp+1-2
- tests/src/filesystem_test.cpp+27-26
- tests/src/logging_test.cpp+1-2
- tests/src/neural_network_test.cpp+1-2
- tests/src/openvino_blob_test.cpp+1-2
- tests/src/pipeline_test.cpp+1-2
- tests/src/serialization_test.cpp+1-2
- tests/src/unlimited_io_connection_test.cpp+1-2
- tests/src/xlink_roundtrip_test.cpp+1-2
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
50 | 50 | | |
51 | 51 | | |
52 | 52 | | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
53 | 70 | | |
54 | 71 | | |
55 | 72 | | |
| |||
| 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 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
8 | 15 | | |
9 | 16 | | |
10 | 17 | | |
11 | 18 | | |
12 | 19 | | |
13 | 20 | | |
14 | 21 | | |
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 | 22 | | |
42 | | - | |
| 23 | + | |
43 | 24 | | |
44 | | - | |
45 | | - | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
46 | 29 | | |
47 | | - | |
48 | | - | |
49 | | - | |
50 | 30 | | |
51 | | - | |
52 | | - | |
53 | | - | |
54 | | - | |
55 | | - | |
56 | | - | |
57 | | - | |
58 | | - | |
59 | | - | |
60 | | - | |
61 | | - | |
62 | | - | |
63 | | - | |
64 | | - | |
65 | | - | |
66 | | - | |
67 | | - | |
68 | | - | |
69 | | - | |
70 | | - | |
71 | | - | |
72 | | - | |
73 | | - | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
74 | 38 | | |
| 39 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
8 | 18 | | |
9 | 19 | | |
10 | 20 | | |
| |||
28 | 38 | | |
29 | 39 | | |
30 | 40 | | |
31 | | - | |
| 41 | + | |
| 42 | + | |
32 | 43 | | |
33 | 44 | | |
34 | 45 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
File mode changed.
File mode changed.
File mode changed.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
42 | 42 | | |
43 | 43 | | |
44 | 44 | | |
45 | | - | |
46 | | - | |
47 | | - | |
48 | | - | |
49 | | - | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
50 | 50 | | |
51 | 51 | | |
52 | 52 | | |
| |||
0 commit comments