Ask Your Question

Revision history [back]

Apparently you can get some information here: http://stackoverflow.com/questions/13376420/setting-opencv-video-to-fullscreen-android

It seems to be that it was an error in OpenCV 2.4.3 and the OpenCV hidden those methods. In older versions of 2.4.3, you should use the code:

disconnectCamera();
mMaxHeight = //your desired height
mMaxWidth = //your desired width
connectCamera(mMaxWidth, mMaxHeight);

But I'm still working on it.