Ask Your Question

Carlos Martínez's profile - activity

2013-04-17 01:20:22 -0600 received badge  Necromancer (source)
2013-04-16 11:48:10 -0600 answered a question OpenCV4Android : setResolution(Camera.size) is undefined for cameraBridgeViewBase

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.