mirror of
https://github.com/opencv/opencv.git
synced 2025-01-18 22:44:02 +08:00
Merge pull request #129 from cuda-geek/CCL-test-fix
This commit is contained in:
commit
828faf4e68
@ -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