We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3a8ef4 commit 7c92b02Copy full SHA for 7c92b02
include/depthai/pipeline/nodes.hpp
@@ -32,8 +32,6 @@
32
#include "node/UVC.hpp"
33
#include "node/VideoEncoder.hpp"
34
#include "node/Warp.hpp"
35
-#include "node/internal/XLinkIn.hpp"
36
-#include "node/internal/XLinkOut.hpp"
37
#include "node/host/RGBD.hpp"
38
#ifdef DEPTHAI_HAVE_OPENCV_SUPPORT
39
#include "node/host/Display.hpp"
tests/src/ondevice_tests/pipeline_test.cpp
@@ -3,6 +3,10 @@
3
// Include depthai library
4
#include <depthai/depthai.hpp>
5
6
+// internal nodes
7
+#include <depthai/pipeline/node/internal/XLinkIn.hpp>
8
+#include <depthai/pipeline/node/internal/XLinkOut.hpp>
9
+
10
TEST_CASE("Pipeline link and remove") {
11
dai::Pipeline p;
12
auto x_in = p.create<dai::node::internal::XLinkIn>();
0 commit comments