Spelt / ZXing.Delphi

ZXing Barcode Scanning object Pascal Library for Delphi VCL and Delphi Firemonkey
Apache License 2.0
479 stars 204 forks source link

Scanning more than one barcode in an image #28

Closed DelProgger closed 8 years ago

DelProgger commented 8 years ago

Hi, I just tried the lib and found it pretty useful.

For some reasons I use it in an VCL (XE7) test project. It works fine so far (made some minor changes to the source just for testing).

Now I would like to scan several barcodes in an image. Is there an easy way to achieve this? Up to now only one barcode is found.

Any hint welcome ;-)

Spelt commented 8 years ago

Scanning multiple barcodes is not supported.

In the coming branch 3.0 the scan strategy is more aggresive for 1D barcodes.

i would imagine that a catch all barcodes mode would involve blanking out the current barcode scanned somehow and then refeed the new bitmap.

Op 13 jul. 2016 om 12:18 heeft DelProgger notifications@github.com het volgende geschreven:

Hi, I just tried the lib and found it pretty useful.

For some reasons I use it in an VCL (XE7) test project. It works fine so far (made some minor changes to the source just for testing).

Now I would like to scan several barcodes in an image. Is there an easy way to achieve this? Up to now only one barcode is found.

Any hint welcome ;-)

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or mute the thread.

DelProgger commented 8 years ago

Hi, thanx for the reply!

I had a similar idea to solve this. As the TReadResult delivers the resultPoints there seems to be a way to kind of 'partition' the image and scan each partition then.