| 346 | } |
| 347 | |
| 348 | DecoderResult Decode(const DetectorResult& detectorResult) |
| 349 | { |
| 350 | try { |
| 351 | auto bits = CorrectBits(detectorResult, ExtractBits(detectorResult)); |
| 352 | return Decode(bits); |
| 353 | } catch (Error e) { |
| 354 | return e; |
| 355 | } |
| 356 | } |
| 357 | |
| 358 | } // namespace ZXing::Aztec |
no test coverage detected