Bitmap bmp = Bitmap.createBitmap(1280, 1024, false);
Canvas c = new Canvas(bmp);
this.mCamera.capture(c);
RgbImage inimg = RgbImageAndroid.toRgbImage(bmp);
DetectBarcode db = new DetectBarcode(20000);
if (!db.Push(inimg)) {
/**
* Couldn't find the barcode. Tell the user.
*/
System.out.println("Couldn't find barcode"); //$NON-NLS-1$
} else {