91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

OpenCV連通域數量統計實例分析

發布時間:2022-06-07 10:10:04 來源:億速云 閱讀:172 作者:zzz 欄目:開發技術

本文小編為大家詳細介紹“OpenCV連通域數量統計實例分析”,內容詳細,步驟清晰,細節處理妥當,希望這篇“OpenCV連通域數量統計實例分析”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

核心代碼

/*
	Input:
		src: 待檢測連通域的二值化圖像
	Output:
		dst: 標記后的圖像
		featherList: 連通域特征的清單(可自行查閱文檔)
	return:
		連通域數量。
*/
int connectionDetect(Mat &src, Mat &dst, vector<Feather> &featherList)
{
	int rows = src.rows;
	int cols = src.cols;
	int labelValue = 0;
	Point seed, neighbor;
	stack<Point> pointStack;
	// 用于計算連通域的面積
	int area = 0;         
	// 連通域的左邊界,即外接最小矩形的左邊框,橫坐標值,依此類推
	int leftBoundary = 0;       
	int rightBoundary = 0;
	int topBoundary = 0;
	int bottomBoundary = 0;
	// 外接矩形框
	Rect box;                   
	Feather feather;
	vector<stack<Point>> points;
	featherList.clear();
	dst.release();
	dst = src.clone();
	for (int i = 0; i < rows; i++)
	{
		uchar *pRow = dst.ptr<uchar>(i);
		for (int j = 0; j < cols; j++)
		{
			if (pRow[j] == 255)
			{
				area = 0;
				// labelValue最大為254,最小為1.
				labelValue++;       
				// Point(橫坐標,縱坐標)
				seed = Point(j, i);     
				dst.at<uchar>(seed) = labelValue;
				pointStack.push(seed);
				area++;
				leftBoundary = seed.x;
				rightBoundary = seed.x;
				topBoundary = seed.y;
				bottomBoundary = seed.y;
				while (!pointStack.empty())
				{
					neighbor = Point(seed.x + 1, seed.y);
					if ((seed.x != (cols - 1)) && (dst.at<uchar>(neighbor) == 255))
					{
						dst.at<uchar>(neighbor) = labelValue;
						pointStack.push(neighbor);
						area++;
						if (rightBoundary < neighbor.x)
							rightBoundary = neighbor.x;
					}
					neighbor = Point(seed.x, seed.y + 1);
					if ((seed.y != (rows - 1)) && (dst.at<uchar>(neighbor) == 255))
					{
						dst.at<uchar>(neighbor) = labelValue;
						pointStack.push(neighbor);
						area++;
						if (bottomBoundary < neighbor.y)
							bottomBoundary = neighbor.y;
					}
					neighbor = Point(seed.x - 1, seed.y);
					if ((seed.x != 0) && (dst.at<uchar>(neighbor) == 255))
					{
						dst.at<uchar>(neighbor) = labelValue;
						pointStack.push(neighbor);
						area++;
						if (leftBoundary > neighbor.x)
							leftBoundary = neighbor.x;
					}
					neighbor = Point(seed.x, seed.y - 1);
					if ((seed.y != 0) && (dst.at<uchar>(neighbor) == 255))
					{
						dst.at<uchar>(neighbor) = labelValue;
						pointStack.push(neighbor);
						area++;
						if (topBoundary > neighbor.y)
							topBoundary = neighbor.y;
					}
					seed = pointStack.top();
					pointStack.pop();
				}
				box = Rect(leftBoundary, topBoundary, rightBoundary - leftBoundary, bottomBoundary - topBoundary);
				feather.area = area;
				feather.boundingbox = box;
				feather.label = labelValue;
				featherList.push_back(feather);
			}
		}
	}
	return labelValue;
}

 代碼執行說明

<font color=#999AAA >在此不進行實例演示

1、 輸入圖像為分割后圖像

2、 執行結果可根據featherList信息自行繪制矩形框

<hr style=" border:solid; width:100px; height:1px;" color=#000000 size=1">

讀到這里,這篇“OpenCV連通域數量統計實例分析”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

汉阴县| 乐至县| 湘潭市| 新源县| 青神县| 临朐县| 高密市| 枣强县| 白玉县| 鄂伦春自治旗| 石阡县| 额尔古纳市| 镇沅| 三门县| 鹤峰县| 卢龙县| 当阳市| 华宁县| 雅安市| 仁化县| 虞城县| 娄底市| 从化市| 镇江市| 泰来县| 津南区| 禄劝| 临武县| 东乌珠穆沁旗| 郎溪县| 乌鲁木齐县| 宁蒗| 四会市| 康平县| 钦州市| 涟水县| 班玛县| 太和县| 锦屏县| 大理市| 杭锦后旗|