mirror of
https://github.com/opencv/opencv.git
synced 2026-07-29 07:13:02 +04:00
Alternative solution for QR code black/white balance computation.
This commit is contained in:
@@ -3070,7 +3070,10 @@ protected:
|
||||
{
|
||||
bool operator()(const Point2f& a, const Point2f& b) const
|
||||
{
|
||||
return a.y < b.y;
|
||||
if (a.y != b.y)
|
||||
return a.y < b.y;
|
||||
else
|
||||
return a.x < b.x;
|
||||
}
|
||||
};
|
||||
struct compareSquare
|
||||
|
||||
Reference in New Issue
Block a user