Skip to content

Commit 85ce26f

Browse files
committed
comment imwrite in floodfillasync test
1 parent cd6a95f commit 85ce26f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/imgproc/imgproc_async_test.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ void main() async {
269269

270270
final point = cv.Point(200, 100);
271271
await cv.floodFillAsync(img, point, cv.Scalar(0, 255, 0));
272-
cv.imwrite("floodFillNoMask.png", img);
272+
// cv.imwrite("floodFillNoMask.png", img);
273273

274274
var mask = cv.Mat.zeros(256, 256, cv.MatType.CV_8UC1);
275275
mask.forEachPixel((row, col, pix) {
@@ -278,10 +278,10 @@ void main() async {
278278
}
279279
});
280280
mask = await cv.copyMakeBorderAsync(mask, 1, 1, 1, 1, cv.BORDER_REPLICATE);
281-
cv.imwrite("mask.png", mask);
281+
// cv.imwrite("mask.png", mask);
282282

283283
await cv.floodFillAsync(img, point, cv.Scalar.white, mask: mask);
284-
cv.imwrite("floodFillMask.png", img);
284+
// cv.imwrite("floodFillMask.png", img);
285285
});
286286

287287
test('cv.boundingRectAsync', () async {

0 commit comments

Comments
 (0)