fix Connected Components Labeling test crash
This commit is contained in:
parent
a04ef08602
commit
97cab339d2
@ -135,7 +135,7 @@ namespace {
|
||||
|
||||
int outliers = 0;
|
||||
for (int j = 0; j < image.rows; ++j)
|
||||
for (int i = 0; i < image.cols; ++i)
|
||||
for (int i = 0; i < image.cols - 1; ++i)
|
||||
{
|
||||
if ( (_labels.at<int>(j,i) == gpu.at<int>(j,i + 1)) && (diff.at<int>(j, i) != diff.at<int>(j,i + 1)))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user