Commit 807f671
File tree
5 files changed
+85
-12
lines changed- src
- pipeline
5 files changed
+85
-12
lines changedSubmodule depthai-core updated 70 files
- .clang-format+7-2
- .clang-tidy+22-1
- .github/workflows/dev.workflow.yml+81
- CMakeLists.txt+22-12
- ci/check_format.sh+10
- cmake/CMakeRC.cmake+1-1
- cmake/Depthai/DepthaiDeviceSideConfig.cmake+1-1
- cmake/clang-format.cmake+64-21
- cmake/clang-tidy.cmake+3-2
- cmake/flags.cmake+7-2
- example/main.cpp+106-22
- include/depthai/CallbackHandler.hpp+6-6
- include/depthai/DataQueue.hpp+48-37
- include/depthai/Device.hpp+26-42
- include/depthai/LockingQueue.hpp+68-67
- include/depthai/device_support_listener.hpp+5-10
- include/depthai/disparity_stream_post_processor.hpp+8-13
- include/depthai/float16_to_float32_converter.hpp+6-7
- include/depthai/host_capture_command.hpp+5-10
- include/depthai/host_data_packet.hpp+18-32
- include/depthai/host_data_reader.hpp+6-8
- include/depthai/host_json_helper.hpp+1-6
- include/depthai/landmarks_parser.hpp+4-15
- include/depthai/mobilenet_metadata.hpp+4-5
- include/depthai/nnet/nnet_packet.hpp+15-29
- include/depthai/nnet/tensor_entry.hpp+20-29
- include/depthai/nnet/tensor_entry_container.hpp+21-38
- include/depthai/nnet/tensor_info.hpp+15-28
- include/depthai/nnet/tensor_info_helper.hpp+40-63
- include/depthai/pipeline/AssetManager.hpp+11-19
- include/depthai/pipeline/Node.hpp+59-72
- include/depthai/pipeline/Pipeline.hpp+42-50
- include/depthai/pipeline/cnn_host_pipeline.hpp+10-24
- include/depthai/pipeline/depth_calculation_interface.hpp+4-12
- include/depthai/pipeline/host_pipeline.hpp+17-21
- include/depthai/pipeline/host_pipeline_config.hpp+19-25
- include/depthai/pipeline/node/ColorCamera.hpp+13-16
- include/depthai/pipeline/node/MyProducer.hpp+9-12
- include/depthai/pipeline/node/NeuralNetwork.hpp+8-12
- include/depthai/pipeline/node/VideoEncoder.hpp+29
- include/depthai/pipeline/node/XLinkIn.hpp+9-12
- include/depthai/pipeline/node/XLinkOut.hpp+9-12
- include/depthai/types.hpp+5-18
- include/depthai/xlink/XLinkConnection.hpp+21-34
- shared/depthai-shared+1-1
- shared/depthai-shared.cmake+4-1
- src/CallbackHandler.cpp+15-24
- src/DataQueue.cpp+21-41
- src/Device.cpp+113-180
- src/bspatch/bspatch.c+181-183
- src/bspatch/bspatch.h+2-2
- src/device_support_listener.cpp+9-18
- src/disparity_stream_post_processor.cpp+14-32
- src/host_capture_command.cpp+6-6
- src/host_data_reader.cpp+6-12
- src/host_json_helper.cpp+13-28
- src/pipeline/AssetManager.cpp+21-25
- src/pipeline/Node.cpp+30-34
- src/pipeline/Pipeline.cpp+83-90
- src/pipeline/cnn_host_pipeline.cpp+9-25
- src/pipeline/host_pipeline.cpp+27-59
- src/pipeline/host_pipeline_config.cpp+51-102
- src/pipeline/node/ColorCamera.cpp+70-76
- src/pipeline/node/MyProducer.cpp+28-35
- src/pipeline/node/NeuralNetwork.cpp+64-72
- src/pipeline/node/VideoEncoder.cpp+63
- src/pipeline/node/XLinkIn.cpp+31-37
- src/pipeline/node/XLinkOut.cpp+30-35
- src/types.cpp+14-24
- src/xlink/XLinkConnection.cpp+105-129
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
4 | 7 | | |
5 | 8 | | |
6 | 9 | | |
7 | 10 | | |
8 | 11 | | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
9 | 16 | | |
10 | 17 | | |
11 | 18 | | |
12 | | - | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
13 | 31 | | |
14 | 32 | | |
15 | 33 | | |
16 | 34 | | |
17 | 35 | | |
18 | 36 | | |
19 | | - | |
20 | | - | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
21 | 51 | | |
22 | 52 | | |
23 | 53 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | 3 | | |
4 | | - | |
| 4 | + | |
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
| |||
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
17 | | - | |
18 | | - | |
| 17 | + | |
| 18 | + | |
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
| 8 | + | |
| 9 | + | |
8 | 10 | | |
9 | 11 | | |
10 | 12 | | |
| |||
21 | 23 | | |
22 | 24 | | |
23 | 25 | | |
| 26 | + | |
| 27 | + | |
24 | 28 | | |
25 | 29 | | |
26 | 30 | | |
27 | 31 | | |
28 | 32 | | |
29 | 33 | | |
30 | 34 | | |
31 | | - | |
| 35 | + | |
32 | 36 | | |
33 | | - | |
| 37 | + | |
34 | 38 | | |
35 | 39 | | |
36 | 40 | | |
37 | 41 | | |
| 42 | + | |
38 | 43 | | |
39 | | - | |
| 44 | + | |
40 | 45 | | |
41 | 46 | | |
42 | 47 | | |
| |||
66 | 71 | | |
67 | 72 | | |
68 | 73 | | |
| 74 | + | |
| 75 | + | |
69 | 76 | | |
70 | 77 | | |
71 | 78 | | |
| |||
78 | 85 | | |
79 | 86 | | |
80 | 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 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
81 | 124 | | |
82 | 125 | | |
83 | 126 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
13 | | - | |
| 13 | + | |
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| |||
0 commit comments