Spelt / ZXing.Delphi

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

Recognition for slanted 1D barcode #112

Closed Johan-Lee closed 3 years ago

Johan-Lee commented 3 years ago

How to recognize a one-dimensional barcode image captured vertically or at various angles?

Spelt commented 3 years ago

It does 90 and 180 degrees with the data.

I once investigated rotation on 45 but because of time constraints I could not continue.

Easiest to accomplish is to feed the parser a bitmap which is rotated 45 degrees.

Op 26 okt. 2020 om 00:45 heeft Johan-Lee notifications@github.com het volgende geschreven:

 How to recognize a one-dimensional barcode image captured vertically or at various angles?

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

Johan-Lee commented 3 years ago

Thank you for the answer.