Skip to content

Commit b338f6c

Browse files
authored
Update thinning.cpp
1 parent 88fdb86 commit b338f6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/ximgproc/src/thinning.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ static void thinningIteration(Mat &img, Mat &marker, const uint8_t* const lut) {
118118

119119
int neighbors = p9 | (p2 << 1) | (p3 << 2) | (p4 << 3) | (p5 << 4) | (p6 << 5) | (p7 << 6) | (p8 << 7);
120120
value = lut[neighbors];
121-
}
121+
}
122122
});
123123

124124
img &= marker;

0 commit comments

Comments
 (0)