Merge pull request #25327 from dkurt:uninit_jump_qrcode

Resolve valgrind issue at QRCode detector
pull/25334/head
Alexander Smorkalov 11 months ago committed by GitHub
commit bd819f97f1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 3
      modules/objdetect/src/qrcode.cpp

@ -2936,7 +2936,8 @@ QRDecode::QRDecode(bool _useAlignmentMarkers):
useAlignmentMarkers(_useAlignmentMarkers),
version(0),
version_size(0),
test_perspective_size(0.f)
test_perspective_size(0.f),
mode(QRCodeEncoder::EncodeMode::MODE_AUTO)
{}
std::string ImplContour::decode(InputArray in, InputArray points, OutputArray straight_qrcode) const {

Loading…
Cancel
Save