MCPcopy Create free account
hub / github.com/devilsen/CZXing / read

Method read

czxing/src/main/cpp/zxing/src/MultiFormatReader.cpp:49–59  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

47MultiFormatReader::~MultiFormatReader() = default;
48
49Result
50MultiFormatReader::read(const BinaryBitmap& image) const
51{
52 Result r;
53 for (const auto& reader : _readers) {
54 r = reader->decode(image);
55 if (r.isValid())
56 return r;
57 }
58 return _hints.returnErrors() ? r : Result();
59}
60
61Results MultiFormatReader::readMultiple(const BinaryBitmap& image, int maxSymbols) const
62{

Callers 7

ReadBarcodesFunction · 0.45
readFunction · 0.45
loadFunction · 0.45
loadFromStringFunction · 0.45
prepMethod · 0.45
pullMethod · 0.45
copyAssetsMethod · 0.45

Calls 3

ResultClass · 0.70
decodeMethod · 0.45
isValidMethod · 0.45

Tested by

no test coverage detected