我目前正在开发一个android应用程序,它应该能够从拍摄的照片中检测到二维码。不需要解码二维码,因为只需要对相机进行校准即可。我正在使用openCV,当我尝试从原始下载的二维码图片中检测二维码时,它工作正常。这是我使用的代码:
bitmap= BitmapFactory.decodeResource(getResources(),R.drawable.qrcodemitzeugs);
Mat img =new Mat();
Utils.bitmapToMat(bitmap,img)
Mat points= new Mat();
QRCodeDetector detector=new QRCo