Skip to content

Commit a7828e1

Browse files
authored
Fixed whitespace errors
1 parent 67d9609 commit a7828e1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

modules/ximgproc/src/globalmatting.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ void GlobalMatting::expansionOfKnownRegions(cv::InputArray _img, cv::InputOutput
440440

441441
if (trimap.empty())
442442
CV_Error(CV_StsBadArg, "trimap is empty");
443-
443+
444444
CV_CheckTypeEQ(trimap.type(),CV_8UC1, "trimap must have CV_8UC1 type");
445445

446446
if (img.size() != trimap.size())
@@ -520,12 +520,12 @@ void GlobalMatting::globalMatting(cv::InputArray _image, cv::InputArray _trimap,
520520

521521
if (image.empty())
522522
CV_Error(CV_StsBadArg, "image is empty");
523-
523+
524524
CV_CheckTypeEQ(image.type(),CV_8UC3,"image mush have CV_8UC3 type");
525525

526526
if (trimap.empty())
527527
CV_Error(CV_StsBadArg, "trimap is empty");
528-
528+
529529
CV_CheckTypeEQ(trimap.type(),CV_8UC1,"trimap mush have CV_8UC1 type");
530530

531531
if (image.size() != trimap.size())

0 commit comments

Comments
 (0)