1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-17 15:26:00 +08:00
Files
opencv_contrib/modules/barcode
Junhao Liang ff9b0a10f6 Merge pull request #2929 from SUSTech-OpenCV:bugfix-barcode
Bugfix: barcode module

* bugfix:
1. jni crashing while coping vector<BarcodeType> to list;
2. in python/java, assertion fails when calling decode(), because of (2D Mat).copyTo(vector<Point>);
3. the algorithm of decodeROI() is wrong.

* add python and java tests

* use constexpr
2021-04-22 18:18:48 +00:00
..

1D Barcode Detect and Decode

This module is focused on detecting and decoding barcode from image. It is mainly designed for scanning the images, locating barcode, decoding barcode and outputting its decoded result.

  1. Support 1-dimension bar code detection of any angle tilting.
  2. Support multi-scale detection.
  3. Support EAN-13, EAN-8 and UPC-A decode yet.
  4. With x86 CPU, it achieves 50FPS averagely.