public void onPreviewFrame(byte[] data, Camera camera) {
if (yuvIplimage != null && recording) {
yuvIplimage.getByteBuffer().put(data);
cvPutText(yuvIplimage,"HELLO_JAVA_CV?",cvPoint(0,0),mCvFont, opencv_core.CvScalar.WHITE);
// Log.d(TAG, "Writing Frame");
try {
long t = 1000 * (System.currentTimeMillis() - startTime);
if (t > recorder.getTimestamp()) {
recorder.setTimestamp(t);
}
recorder.record(yuvIplimage);
} catch (FFmpegFrameRecorder.Exception e) {
Log.d(TAG, e.getMessage());
e.printStackTrace();
}
}
mCamera.addCallbackBuffer(data);
}
--
---
You received this message because you are subscribed to the Google Groups "javacv" group.
To unsubscribe from this group and stop receiving emails from it, send an email to javacv+un...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
opencv_core.CvFont mCvFont = new opencv_core.CvFont();
cvInitFont(mCvFont,CV_FONT_HERSHEY_SCRIPT_SIMPLEX,1.0,1.0,0,1,CV_AA);
Did this solve your error? :)
Almost every OpenCV function does not support the YUV format. We first
need to convert those images to RGB/BGR...
void decodeYUV420SP(int[] rgb, byte[] yuv420sp, int width, int height) {
final int frameSize = width * height;
for (int j = 0, yp = 0; j < height; j++) { int uvp = frameSize + (j >> 1) * width, u = 0, v = 0;
for (int i = 0; i < width; i++, yp++) {
int y = (0xff & ((int) yuv420sp[yp])) - 16;
if (y < 0)
y = 0;
if ((i & 1) == 0) {
v = (0xff & yuv420sp[uvp++]) - 128;
u = (0xff & yuv420sp[uvp++]) - 128;
}
int y1192 = 1192 * y;
int r = (y1192 + 1634 * v);
int g = (y1192 - 833 * v - 400 * u);
int b = (y1192 + 2066 * u);
if (r < 0) r = 0; else if (r > 262143)
r = 262143;
if (g < 0) g = 0; else if (g > 262143)
g = 262143;
if (b < 0) b = 0; else if (b > 262143)
b = 262143;
rgb[yp] = 0xff000000 | ((r << 6) & 0xff0000) | ((g >> 2) & 0xff00) | ((b >> 10) & 0xff);
}
}
}
int[] pixels = new int[previewSize.width * previewSize.height];
@Override
public void onPreviewFrame(byte[] data, Camera camera) {
/* get video data */
decodeYUV420SP(pixels, data, previewSize.width, previewSize.height);
if (yuvIplimage != null && recording) {
yuvIplimage.getByteBuffer().put(data);
Log.v(LOG_TAG,"Writing Frame");
try {
long t = 1000 * (System.currentTimeMillis() - startTime);
if (t > recorder.getTimestamp()) {
recorder.setTimestamp(t);
}
cvPutText(yuvIplimage,"HELLO_JAVA_CV?",cvPoint(imageWidth/2,imageHeight/2),mFont, opencv_core.CvScalar.WHITE);
recorder.record(yuvIplimage);
} catch (FFmpegFrameRecorder.Exception e) {
Log.v(LOG_TAG,e.getMessage());
e.printStackTrace();
}
}
}