We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, I am a novice and do not know when and where the function processImage of ViewController.mm is called. Can you give some advises ? Thanks.
processImage
The text was updated successfully, but these errors were encountered:
need help..
Sorry, something went wrong.
@IvyGongoogle It's a callback from OpenCV camera module. Basically, as soon, as you declare a camera delegate
self.videoCamera.delegate = self;
and start capturing
[videoCamera start];
instead of default AV output style, you are going to receive images in OpenCV format(i.e. cv::Mat with 4 Chanels(BGRA)).
cv::Mat
BGRA
However one detail here, is that in current work it appears a patched version of OpenCV seems to be used.
float lowPart = image.at<float>(0,0); float highPart = image.at<float>(0,1);
Original function, doesn't store timestamps on the borders of images(and all code further seems to take that in account).
No branches or pull requests
Hello, I am a novice and do not know when and where the function
processImage
of ViewController.mm is called.Can you give some advises ? Thanks.
The text was updated successfully, but these errors were encountered: