Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

what about this:

   Mat frame = ... // from onCameraFrame()
   Mat reduced = new Mat();
   Imgproc.resize(frame, reduced, new Size(320,240), 0, 0);
   // ... use "reduced" Mat for further processing