OpenCV根據面積篩選連通域學習示例

學習目標:

對二值圖進行分析,設定最大最小面積區間

保留該面積區間內的區域

示例代碼

//src為二值圖,minArea、maxArea為面積閾值,dest為結果圖像
void connectionAreaSelect(Mat src, int minArea, int maxArea, Mat &dest)
{
	Mat labels, stats, centroids, img_color;
	//連通域計算
	int nccomps = connectedComponentsWithStats(
		src, //二值圖像
		labels,
		stats,
		centroids
	);

	//去除過小區域,初始化顏色表
	vector<Vec3b> colors(nccomps);
	colors[0] = Vec3b(0, 0, 0); // background pixels remain black.
	for (int i = 1; i < nccomps; i++)
	{
		colors[i] = Vec3b(rand() % 256, rand() % 256, rand() % 256);

		//面積閾值篩選
		int holeArea = stats.at<int>(i, CC_STAT_AREA);
		if ((holeArea < minArea) || (holeArea > maxArea))
		{
			colors[i] = Vec3b(0, 0, 0);
		}
	}
	//按照label值,對不同的連通域進行著色
	img_color = Mat::zeros(src.size(), CV_8UC3);
	for (int y = 0; y < img_color.rows; y++)
	{
		for (int x = 0; x < img_color.cols; x++)
		{
			int label = labels.at<int>(y, x);
			CV_Assert(0 <= label && label <= nccomps);
			img_color.at<Vec3b>(y, x) = colors[label];
		}
	}
	//統計降噪後的連通區域
	Mat grayImg;
	cvtColor(img_color, grayImg, COLOR_BGR2GRAY);
	threshold(grayImg, grayImg, 1, 255, THRESH_BINARY);
	dest = grayImg.clone();

	labels.release();
	stats.release();
	centroids.release();
	img_color.release();
	grayImg.release();
}

以上就是OpenCV根據面積篩選連通域學習示例的詳細內容,更多關於OpenCV根據面積篩選連通域的資料請關註WalkonNet其它相關文章!

推薦閱讀: