diff --git a/Sources/src/Visnode/cameras/cameraManager.cpp b/Sources/src/Visnode/cameras/cameraManager.cpp index 9bed7a2..978e0e4 100644 --- a/Sources/src/Visnode/cameras/cameraManager.cpp +++ b/Sources/src/Visnode/cameras/cameraManager.cpp @@ -40,7 +40,8 @@ int cameraManager::init(){ if(!vs.isOpened() && !vs.open(camID)) { cout << "opening camera " << camIdx << " failed" <source = new VideoCapture(camID); @@ -48,7 +49,8 @@ int cameraManager::init(){ videoSources.push_back(cam); //valid camera added cout << "added camera with path /dev/video" << cam->path << endl; Mat m; - captures.push_back(std::move(m)); + captures.push_back(std::move(m)); + } } catch(exception e){ cout << e.what() << endl; diff --git a/Sources/src/Visnode/prog b/Sources/src/Visnode/prog index 1c04364..a859e94 100755 Binary files a/Sources/src/Visnode/prog and b/Sources/src/Visnode/prog differ