Hello engineers,
I'm very new to the VoxelSDK and TIs evaluation module. I tried to get an instance of the camera connected by first scanning the environment, like the samples do.
#include "CameraSystem.h" int main(int argc, char *argv[]) { Voxel::CameraSystem cameraSystem; const Voxel::Vector<Voxel::DevicePtr> &devices = cameraSystem.scan(); std::cout << devices.size() << std::endl; return 0; }
But the list of devices has always size = 0.
If I try to find the module within the VoxelViewer software everything works fine, so the module seems to be connected correctly. Also the device manager doesn't report any problems with the device.
Any suggestions what I'm doing wrong?
Best regards
Dennis