Skip to content

Commit

Permalink
attributes name update
Browse files Browse the repository at this point in the history
  • Loading branch information
JulienFleuret committed Mar 28, 2024
1 parent 80a8588 commit ce68448
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/quality/src/qualitymae.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@ Scalar QualityMAE::compute( InputArray cmpImg )
// If the input is a set of images.
_mat_type cmp = extract_mat<_mat_type>(cmpImg, std::max(cmpImg.depth(), CV_32F));

return QualityMAE::compute(this->_ref, cmp, this->_qualityMap, this->_flags);
return QualityMAE::compute(this->_ref, cmp, this->_qualityMap, this->_flag);
}

QualityMAE::QualityMAE(QualityBase::_mat_type ref, int flags)
QualityMAE::QualityMAE(QualityBase::_mat_type ref, int flag)
: _ref(std::move(ref)),
_flags(flags)
_flag(flag)
{}

} // quality
Expand Down

0 comments on commit ce68448

Please sign in to comment.