摘要: int bwLabel(const Mat& imgBw, Mat& imgLabeled) { Mat imgClone = Mat(imgBw.rows + 2, imgBw.cols + 2, imgBw.type(), Scalar(0)); imgBw.copyTo(imgClone(Rect(1, 1, imgBw.cols, imgBw.rows))); ... 阅读全文
posted @ 2017-09-01 22:44 JessZhu 阅读(584) 评论(0) 推荐(0)