Search found 2 matches
- 2013-12-18T01:26:21-07:00
- Forum: Users
- Topic: QR code cleaning after scan
- Replies: 2
- Views: 5258
Re: QR code cleaning after scan
try using -threshold and -morphology convert test.png -threshold 75% -morphology open square:1 result.png see http://www.imagemagick.org/Usage/morphology/ Or try multiple iterations of -despeckle (and possible threshold afterwards) convert test.png -despeckle -despeckle -despeckle -despeckle ...
- 2013-12-17T04:40:40-07:00
- Forum: Users
- Topic: QR code cleaning after scan
- Replies: 2
- Views: 5258
QR code cleaning after scan
I've developed a script to process scanned documents that carry a QR code on them. When the original is scanned, I apply median 2 and noise 2 and the QR decoding library (zxing more used for android), and normally it decodes ok. The problem is when somebody scan a not original document. I've tried ...