opencv cv::VideoCapture indecipherable errors

Viewed 1715

OpenCV version 3.4.3
Xcode version 10.1 (10B61)
macOS version 10.14.2 (18C54) Mojave

I am using C++ to run an extremely simple program.
This code is used to access the macbook webcam.

#include <iostream>
#include <opencv2/opencv.hpp>

int main() {
    cv::VideoCapture camera(0);
    return 0;
}

These are the messages from the Xcode console.
I couldn't find any resources to debug this situation.

CMIO_Unit_ScopeElement.h:200:SafeGetElement Throwing err: -67454
CMIOUnitFigBaseObjectImpl.c:246:CMIOUnitCreateFromDescription Invalid paramater
CMIO_Unit_Input_Device.cpp:244:GetPropertyInfo CMIOUInputFromProcs::GetPropertyInfo() failed for id 102, Error: -67456
CMIO_DAL_PlugIn.cpp:269:StreamCopyBufferQueue got an error from the plug-in routine, Error: 1852797029
CMIOHardware.cpp:339:CMIOObjectGetPropertyData the System is exiting
CMIOHardware.cpp:339:CMIOObjectGetPropertyData the System is exiting
Program ended with exit code: 0
0 Answers
Related