我的 Android 相机将整个图像传递到 onPreviewFrame 中,但我只想要对应于像素范围的字节。例如,通过一个像素为 480x640 的图像。我想要一个新的 byte[] 数组,其像素在 Rect(100,100,200,200) 范围内
public void onPreviewFrame(byte[] arg0, Camera arg1) {
// arg0 = 460,800 BYTES
// the camera's resolution is at 640 x 480
// arg0 format is NV21
}