這篇文章主要介紹C語言版二值圖像如何統(tǒng)計連通區(qū)域,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來自于我們對這個行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價值的長期合作伙伴,公司提供的服務(wù)項目有:國際域名空間、虛擬主機、營銷軟件、網(wǎng)站建設(shè)、柳州網(wǎng)站維護、網(wǎng)站推廣。
連通區(qū)標(biāo)記是最基本的圖像處理算法之一。該算法中,按從左至右、從上至下的順序,對整幅圖像進行掃描,通過比較每個前景像素的鄰域進行連通區(qū)標(biāo)記,并創(chuàng)建等效標(biāo)記列表。最后,合并等效標(biāo)記列表,并再次掃描圖像以更新標(biāo)記。算法的優(yōu)點的是通俗易懂,缺點是需要兩次掃描圖像,效率不高。
區(qū)域生長法利用區(qū)域生長的思想,一次生長過程可以標(biāo)記一整個連通區(qū),只需對圖像進行一次掃描就能標(biāo)記出所有連通區(qū)。算法描述如下:
輸入待標(biāo)記圖像bitmap,初始化一個與輸入圖像同樣尺寸的標(biāo)記矩陣labelmap,一個隊列queue以及標(biāo)記計數(shù)labelIndex;按從左至右、從上至下的順序掃描bitmap,當(dāng)掃描到一個未被標(biāo)記的前景像素p時,labelIndex加1,并在labelmap中標(biāo)記p(相應(yīng)點的值賦為labelIndex),同時,掃描p的八鄰域點,若存在未被標(biāo)記的前景像素,則在labelmap中進行標(biāo)記,并放入queue中,作為區(qū)域生長的種子;當(dāng)queue不為空時,從queue中取出一個生長種子點p1,掃描p1的八鄰域點,若存在未被標(biāo)記過的前景像素,則在labelmap中進行標(biāo)記,并放入queue中;重復(fù)3直至queue為空,一個連通區(qū)標(biāo)記完成;轉(zhuǎn)到2,直至整幅圖像被掃描完畢,得到標(biāo)記矩陣labelmap和連通區(qū)的個數(shù)labelIndex。
該算法最壞情況下,將對每個像素點都進行一次八鄰域搜索,算法復(fù)雜度為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語言版二值圖像如何統(tǒng)計連通區(qū)域”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
分享標(biāo)題:C語言版二值圖像如何統(tǒng)計連通區(qū)域
標(biāo)題鏈接:http://muchs.cn/article2/jsohic.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供域名注冊、網(wǎng)站維護、動態(tài)網(wǎng)站、微信公眾號、網(wǎng)站策劃、手機網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)