First time here? Check out the FAQ!
answered 2020-11-27 12:25:17 -0600
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