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

Misc. modules/ cont. pt2

Found via `codespell`
This commit is contained in:
luz.paz
2018-02-13 11:28:11 -05:00
parent 252e871a8b
commit d05714995c
75 changed files with 195 additions and 195 deletions
+2 -2
View File
@@ -1395,7 +1395,7 @@ FillEdgeCollection( Mat& img, std::vector<PolyEdge>& edges, const void* color )
{
if( last && last->y1 == y )
{
// exclude edge if y reachs its lower point
// exclude edge if y reaches its lower point
prelast->next = last->next;
last = last->next;
continue;
@@ -1409,7 +1409,7 @@ FillEdgeCollection( Mat& img, std::vector<PolyEdge>& edges, const void* color )
}
else if( i < total )
{
// insert new edge into active list if y reachs its upper point
// insert new edge into active list if y reaches its upper point
prelast->next = e;
e->next = last;
prelast = e;