mirror of
https://github.com/opencv/opencv.git
synced 2026-07-26 22:03:04 +04:00
463cd09811
Moved barcode from opencv_contrib #23666 Merge with https://github.com/opencv/opencv_contrib/pull/3497 ##### TODO - [x] Documentation (bib) - [x] Tutorial (references) - [x] Sample app (refactored) - [x] Java (test passes) - [x] Python (test passes) - [x] Build without DNN
32 lines
740 B
C++
32 lines
740 B
C++
// This file is part of OpenCV project.
|
|
// It is subject to the license terms in the LICENSE file found in the top-level directory
|
|
// of this distribution and at http://opencv.org/license.html.
|
|
// Copyright (c) 2020-2021 darkliang wangberlinT Certseeds
|
|
|
|
#ifndef OPENCV_BARCODE_EAN13_DECODER_HPP
|
|
#define OPENCV_BARCODE_EAN13_DECODER_HPP
|
|
|
|
#include "upcean_decoder.hpp"
|
|
|
|
namespace cv {
|
|
namespace barcode {
|
|
//extern struct EncodePair;
|
|
using std::string;
|
|
using std::vector;
|
|
using std::pair;
|
|
|
|
|
|
class Ean13Decoder : public UPCEANDecoder
|
|
{
|
|
public:
|
|
Ean13Decoder();
|
|
|
|
~Ean13Decoder() override = default;
|
|
|
|
protected:
|
|
Result decode(const vector<uchar> &data) const override;
|
|
};
|
|
}
|
|
} // namespace cv
|
|
#endif // OPENCV_BARCODE_EAN13_DECODER_HPP
|