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

溫馨提示×

溫馨提示×

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

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

C語言版二值圖像如何統計連通區域

發布時間:2021-07-15 14:46:34 來源:億速云 閱讀:197 作者:小新 欄目:編程語言

這篇文章主要介紹C語言版二值圖像如何統計連通區域,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

連通區標記是最基本的圖像處理算法之一。該算法中,按從左至右、從上至下的順序,對整幅圖像進行掃描,通過比較每個前景像素的鄰域進行連通區標記,并創建等效標記列表。最后,合并等效標記列表,并再次掃描圖像以更新標記。算法的優點的是通俗易懂,缺點是需要兩次掃描圖像,效率不高。

區域生長法利用區域生長的思想,一次生長過程可以標記一整個連通區,只需對圖像進行一次掃描就能標記出所有連通區。算法描述如下:

輸入待標記圖像bitmap,初始化一個與輸入圖像同樣尺寸的標記矩陣labelmap,一個隊列queue以及標記計數labelIndex;按從左至右、從上至下的順序掃描bitmap,當掃描到一個未被標記的前景像素p時,labelIndex加1,并在labelmap中標記p(相應點的值賦為labelIndex),同時,掃描p的八鄰域點,若存在未被標記的前景像素,則在labelmap中進行標記,并放入queue中,作為區域生長的種子;當queue不為空時,從queue中取出一個生長種子點p1,掃描p1的八鄰域點,若存在未被標記過的前景像素,則在labelmap中進行標記,并放入queue中;重復3直至queue為空,一個連通區標記完成;轉到2,直至整幅圖像被掃描完畢,得到標記矩陣labelmap和連通區的個數labelIndex。

該算法最壞情況下,將對每個像素點都進行一次八鄰域搜索,算法復雜度為O(n)。

typedef struct QNode{
 int data;
 struct QNode *next;
}QNode;

typedef struct Queue{
 struct QNode* first;
 struct QNode* last;
}Queue;

void PushQueue(Queue *queue, int data){
 QNode *p = NULL;
 p = (QNode*)malloc(sizeof(QNode));
 p->data = data;
 if(queue->first == NULL){
  queue->first = p;
  queue->last = p;
  p->next = NULL;
 }
 else{
  p->next = NULL;
  queue->last->next = p;
  queue->last = p;
 }
}

int PopQueue(Queue *queue){
 QNode *p = NULL;
 int data;
 if(queue->first == NULL){
  return -1;
 }
 p = queue->first;
 data = p->data;
 if(queue->first->next == NULL){
  queue->first = NULL;
  queue->last = NULL;
 }
 else{
  queue->first = p->next;
 }
 free(p);
 return data;
}

static int NeighborDirection[8][2] = {{0,1},{1,1},{1,0},{1,-1},{0,-1},{-1,-1},{-1,0},{-1,1}};

void SearchNeighbor(unsigned char *bitmap, int width, int height, int *labelmap, 
     int labelIndex, int pixelIndex, Queue *queue){
 int searchIndex, i, length;
 labelmap[pixelIndex] = labelIndex;
 length = width * height;
 for(i = 0;i < 8;i++){
  searchIndex = pixelIndex + NeighborDirection[i][0] * width + NeighborDirection[i][1];
  if(searchIndex > 0 && searchIndex < length && 
   bitmap[searchIndex] == 255 && labelmap[searchIndex] == 0){
   labelmap[searchIndex] = labelIndex;
   PushQueue(queue, searchIndex);
  }
 }
}

int ConnectedComponentLabeling(unsigned char *bitmap, int width, int height, int *labelmap){
 int cx, cy, index, popIndex, labelIndex = 0;
 Queue *queue = NULL;
 queue = (Queue*)malloc(sizeof(Queue));
 queue->first = NULL;
  queue->last = NULL;
 memset(labelmap, 0, width * height);
 for(cy = 1; cy < height - 1; cy++){
  for(cx = 1; cx < width - 1; cx++){
   index = cy * width + cx;
   if(bitmap[index] == 255 && labelmap[index] == 0){
    labelIndex++;
    SearchNeighbor(bitmap, width, height, labelmap, labelIndex, index, queue);

    popIndex = PopQueue(queue);
    while(popIndex > -1){
    SearchNeighbor(bitmap, width, height, labelmap, labelIndex, popIndex, queue);
     popIndex = PopQueue(queue);
    }
   }
  }
 }
 free(queue);
 return labelIndex;
}

以上是“C語言版二值圖像如何統計連通區域”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

安康市| 六枝特区| 临潭县| 齐齐哈尔市| 莱西市| 潍坊市| 澜沧| 申扎县| 邵阳市| 兴安盟| 永修县| 韩城市| 太康县| 永宁县| 厦门市| 马龙县| 石河子市| 虞城县| 宜城市| 淳化县| 灌云县| 垦利县| 永顺县| 双桥区| 乐至县| 遵义县| 阳东县| 颍上县| 永康市| 祁连县| 贞丰县| 湘阴县| 呼玛县| 渭源县| 平果县| 高邮市| 喀什市| 桂林市| 辽宁省| 三台县| 繁峙县|