Home
last modified time | relevance | path

Searched refs:_tryHarder (Results 1 – 7 of 7) sorted by relevance

/dports/textproc/zxing-cpp/zxing-cpp-1.2.0/core/src/datamatrix/
H A DDMReader.cpp35 : _tryRotate(hints.tryRotate()), _tryHarder(hints.tryHarder()), _isPure(hints.isPure()), in Reader()
56 auto detectorResult = Detect(*binImg, _tryHarder, _tryRotate, _isPure); in decode()
H A DDMReader.h35 bool _tryRotate, _tryHarder, _isPure; variable
/dports/textproc/zxing-cpp/zxing-cpp-1.2.0/core/src/qrcode/
H A DQRReader.cpp36 : _tryHarder(hints.tryHarder()), _isPure(hints.isPure()), _charset(hints.characterSet()) in Reader()
48 auto detectorResult = Detect(*binImg, _tryHarder, _isPure); in decode()
H A DQRReader.h41 bool _tryHarder, _isPure;
/dports/textproc/zxing-cpp/zxing-cpp-1.2.0/core/src/oned/
H A DODReader.cpp40 _tryHarder(hints.tryHarder()), in Reader()
154 Result result = DoDecode(_readers, image, _tryHarder, _isPure); in decode()
158 result = DoDecode(_readers, *rotatedImage, _tryHarder, _isPure); in decode()
H A DODReader.h46 bool _tryHarder; variable
/dports/textproc/zxing-cpp/zxing-cpp-1.2.0/core/src/
H A DDecodeHints.h50 bool _tryHarder : 1; variable
67 : _tryHarder(1), _tryRotate(1), _isPure(0), _tryCode39ExtendedMode(0), _assumeCode39CheckDigit(0), in DecodeHints()