I'm currently having a problem with detecting inverted QR code. The problem is that it detects normal QR code well but not inverted QR Code.
I tried to find solution on google and stackoverflow but most of questions have no acceptable answers.
I saw this article and I think this might be helpful but I don't know how to edit c++ file. Invert pixels - zxing
Here's my code.
setContentView(R.layout.activity_simple_scanner);
setupToolbar();
ViewGroup contentFrame = (ViewGroup) findViewById(R.id.content_frame);
mScannerView = new ZBarScannerView(this);
contentFrame.addView(mScannerView);
Here's a link to sample inverted QR code imgae. http://prntscr.com/dijmc8
Is there anybody who knows solution?