1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 15:23:05 +04:00

Merge pull request #29289 from vrabaud:mcc1

Forward port MCC fix
This commit is contained in:
Alexander Smorkalov
2026-06-15 11:28:14 +03:00
committed by GitHub
+1 -1
View File
@@ -167,7 +167,7 @@ void CBoundMin::calculate()
j = (i + 1) % 4;
Vcart = lines[i].cross(lines[j]);
if (fabs(Vcart.z) <= 1e-6){
continue;
return;
}
Vhom.x = Vcart.x / Vcart.z;
Vhom.y = Vcart.y / Vcart.z;