OpenCV JavaCameraView is not full screen
I defined a camera view in .xml user interface file using opencv Camera view like this :
<org.opencv.android.JavaCameraView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:visibility="visible"
android:id="@+id/tutorial1_activity_java_surface_view"
/>
Although I set width and height to be as large as parent and parent is full-screen but my captured frame is really small, some thing like 150*200 pixel. How can I get bigger frame?
What is you device model and Android version? What version of OpenCV4Android SDK do you use? There is tutorial-3-camera control example that allows to change camera resolution. Does it work properly?
Take a look at the color blob detection sample, it is full screen. I haven't checked out much of it, I just recall that being a difference between the HelloWorld and that sample. Sorry I can't help more.