Good evening everyone, I started working with a camera that supports API DepthAI. I used the link to the project build and the ready-made ones from https://github.com/luxonis/depthai-core#installation-and-integration. I also used the ready-made assembled product from https://github.com/luxonis/depthai-core/releases. However, when using this library, some functions are built during the build, and some give an error. I checked that this is version 3.7.1, not OLD version, but not a single example, not even the simplest type:
dai::Device::Device: no overloaded function could convert all the arguments type
simple code:
#include <depthai/depthai.hpp>
int main
{
dai::Pipeline pipline;
auto device = std::make_unique<dai::Device>(pipeline);
return 0;
}
I've been searching for an answer in a lot of AI, everyone says I'm using an old library, but I'm using what I provided for the task. What else could I be doing wrong? Please tell me what I need to do step by step. Where can I get the release or include files?
Good evening everyone, I started working with a camera that supports API DepthAI. I used the link to the project build and the ready-made ones from https://github.com/luxonis/depthai-core#installation-and-integration. I also used the ready-made assembled product from https://github.com/luxonis/depthai-core/releases. However, when using this library, some functions are built during the build, and some give an error. I checked that this is version 3.7.1, not OLD version, but not a single example, not even the simplest type:
dai::Device::Device: no overloaded function could convert all the arguments typesimple code:
I've been searching for an answer in a lot of AI, everyone says I'm using an old library, but I'm using what I provided for the task. What else could I be doing wrong? Please tell me what I need to do step by step. Where can I get the release or include files?