Skip to content

Commit 22c860b

Browse files
author
codeboost
committed
Added erode filter
1 parent 4ebc263 commit 22c860b

File tree

4 files changed

+21
-203
lines changed

4 files changed

+21
-203
lines changed

bea/cv.bea

+3
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@
4040

4141
void dilate(const Mat& src, Mat& dst, const Mat& element, Point anchor=Point(-1, -1), int iterations=1, int borderType=cv::BORDER_CONSTANT, const Scalar& borderValue=cv::morphologyDefaultBorderValue())
4242
REQUIRE_SAME_SIZE_TYPE(src, dst);
43+
44+
void erode(const Mat& src, Mat& dst, const Mat& element, Point anchor=Point(-1, -1), int iterations=1, int borderType=cv::BORDER_CONSTANT, const Scalar& borderValue=cv::morphologyDefaultBorderValue())
45+
REQUIRE_SAME_SIZE_TYPE(src, dst);
4346

4447
void absdiff(const Mat& src1, const Mat& src2, Mat& dst)
4548
REQUIRE_SAME_SIZE_TYPE(src1, src2);

npm-debug.log

-203
This file was deleted.

0 commit comments

Comments
 (0)