opencv查詢輪廓---cvFindContours && cvDrawCountours 用法及例子

weixin_34067049發表於2015-11-13

http://blog.csdn.net/timidsmile/article/details/8519751

環境: vs2008 + opencv2.1

先看,這兩個函式的用法(參考 opencv手冊):

+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

FindContours        在二值影象中尋找輪廓 


int cvFindContours( CvArr* image, CvMemStorage* storage, CvSeq** first_contour,
int header_size=sizeof(CvContour), int mode=CV_RETR_LIST,
int method=CV_CHAIN_APPROX_SIMPLE, CvPoint offset=cvPoint(0,0) );


image 
輸入的 8-位元、單通道影象. 非零元素被當成 1, 0 象素值保留為 0 - 從而影象被看成二值的。為了從灰度影象中得到這樣的二值影象,可以使用 cvThreshold, cvAdaptiveThreshold 或 cvCanny. 本函式改變輸入影象內容。 


storage 
得到的輪廓的儲存容器 


first_contour 
輸出引數:包含第一個輸出輪廓的指標 


header_size 
如果 method=CV_CHAIN_CODE,則序列頭的大小 >=sizeof(CvChain),否則 >=sizeof(CvContour) . 


mode 
提取模式. 
CV_RETR_EXTERNAL - 只提取最外層的輪廓 
CV_RETR_LIST - 提取所有輪廓,並且放置在 list 中 
CV_RETR_CCOMP - 提取所有輪廓,並且將其組織為兩層的 hierarchy: 頂層為連通域的外圍邊界,次層為洞的內層邊界。 
CV_RETR_TREE - 提取所有輪廓,並且重構巢狀輪廓的全部 hierarchy 


method 
逼近方法 (對所有節點, 不包括使用內部逼近的 CV_RETR_RUNS). 
CV_CHAIN_CODE - Freeman 鏈碼的輸出輪廓. 其它方法輸出多邊形(定點序列). 
CV_CHAIN_APPROX_NONE - 將所有點由鏈碼形式翻譯(轉化)為點序列形式 
CV_CHAIN_APPROX_SIMPLE - 壓縮水平、垂直和對角分割,即函式只保留末端的象素點; 
CV_CHAIN_APPROX_TC89_L1, 
CV_CHAIN_APPROX_TC89_KCOS - 應用 Teh-Chin 鏈逼近演算法. CV_LINK_RUNS - 通過連線為 1 的水平碎片使用完全不同的輪廓提取演算法。僅有 CV_RETR_LIST 提取模式可以在本方法中應用. 


offset 
每一個輪廓點的偏移量. 當輪廓是從影象 ROI 中提取出來的時候,使用偏移量有用,因為可以從整個影象上下文來對輪廓做分析. 
函式 cvFindContours 從二值影象中提取輪廓,並且返回提取輪廓的數目。指標 first_contour 的內容由函式填寫。它包含第一個最外層輪廓的指標,如果指標為 NULL,則沒有檢測到輪廓(比如影象是全黑的)。其它輪廓可以從 first_contour 利用 h_next 和 v_next 連結訪問到。 在 cvDrawContours 的樣例顯示如何使用輪廓來進行連通域的檢測。輪廓也可以用來做形狀分析和物件識別 - 見CVPR2001 教程中的 squares 樣例。該教程可以在 SourceForge 網站上找到。 

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

DrawContours    在影象中繪製外部和內部的輪廓。 


void cvDrawContours( CvArr *img, CvSeq* contour,
                     CvScalar external_color, CvScalar hole_color,
                     int max_level, int thickness=1,
                     int line_type=8, CvPoint offset=cvPoint(0,0) );
img 
用以繪製輪廓的影象。和其他繪圖函式一樣,邊界影象被感興趣區域(ROI)所剪下。 


contour  指標指向第一個輪廓。 


external_color   外層輪廓的顏色。 


hole_color   內層輪廓的顏色。 


max_level   繪製輪廓的最大等級。如果等級為0,繪製單獨的輪廓。如果為1,繪製輪廓及在其後的相同的級別下輪廓。如果值為2,所有的輪廓。如果等級為2,繪製所有同級輪廓及所有低一級輪廓,諸此種種。如果值為負數,函式不繪製同級輪廓,但會升序繪製直到級別為abs(max_level)-1的子輪廓。 


thickness   繪製輪廓時所使用的線條的粗細度。如果值為負(e.g. =CV_FILLED),繪製內層輪廓。 


line_type   線條的型別。參考cvLine. 


offset  照給出的偏移量移動每一個輪廓點座標.當輪廓是從某些感興趣區域(ROI)中提取的然後需要在運算中考慮ROI偏移量時,將會用到這個引數。 


當thickness>=0,函式cvDrawContours在影象中繪製輪廓,或者當thickness<0時,填充輪廓所限制的區域。 


++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

 

code1 :

 

[cpp] view plaincopy
 
  1. #include "stdafx.h"    
  2. #include "cxcore.h"     
  3. #include "cv.h"     
  4. #include "highgui.h"    
  5.   
  6.   
  7. // 內輪廓填充     
  8. // 引數:     
  9. // 1. pBinary: 輸入二值影象,單通道,位深IPL_DEPTH_8U。    
  10. // 2. dAreaThre: 面積閾值,當內輪廓面積小於等於dAreaThre時,進行填充。     
  11. void FillInternalContours(IplImage *pBinary, double dAreaThre)     
  12. {     
  13.     double dConArea;     
  14.     CvSeq *pContour = NULL;     
  15.     CvSeq *pConInner = NULL;     
  16.     CvMemStorage *pStorage = NULL;     
  17.     // 執行條件     
  18.     if (pBinary)     
  19.     {     
  20.         // 查詢所有輪廓     
  21.         pStorage = cvCreateMemStorage(0);     
  22.         cvFindContours(pBinary, pStorage, &pContour, sizeof(CvContour), CV_RETR_CCOMP, CV_CHAIN_APPROX_SIMPLE);     
  23.         // 填充所有輪廓     
  24.         cvDrawContours(pBinary, pContour, CV_RGB(255, 255, 255), CV_RGB(255, 255, 255), 2, CV_FILLED, 8, cvPoint(0, 0));    
  25.         // 外輪廓迴圈     
  26.         int wai = 0;    
  27.         int nei = 0;    
  28.         for (; pContour != NULL; pContour = pContour->h_next)     
  29.         {     
  30.             wai++;    
  31.             // 內輪廓迴圈     
  32.             for (pConInner = pContour->v_next; pConInner != NULL; pConInner = pConInner->h_next)     
  33.             {     
  34.                 nei++;    
  35.                 // 內輪廓面積     
  36.                 dConArea = fabs(cvContourArea(pConInner, CV_WHOLE_SEQ));    
  37.                 printf("%f\n", dConArea);     
  38.             }    
  39.             CvRect rect = cvBoundingRect(pContour,0);  
  40.             cvRectangle(pBinary, cvPoint(rect.x, rect.y), cvPoint(rect.x + rect.width, rect.y + rect.height),CV_RGB(255,255, 255), 1, 8, 0);  
  41.         }     
  42.   
  43.         printf("wai = %d, nei = %d", wai, nei);    
  44.         cvReleaseMemStorage(&pStorage);     
  45.         pStorage = NULL;     
  46.     }     
  47. }     
  48. int Otsu(IplImage* src)        
  49. {        
  50.     int height=src->height;        
  51.     int width=src->width;            
  52.   
  53.     //histogram        
  54.     float histogram[256] = {0};        
  55.     for(int i=0; i < height; i++)      
  56.     {        
  57.         unsigned char* p=(unsigned char*)src->imageData + src->widthStep * i;        
  58.         for(int j = 0; j < width; j++)       
  59.         {        
  60.             histogram[*p++]++;        
  61.         }        
  62.     }        
  63.     //normalize histogram        
  64.     int size = height * width;        
  65.     for(int i = 0; i < 256; i++)      
  66.     {        
  67.         histogram[i] = histogram[i] / size;        
  68.     }        
  69.   
  70.     //average pixel value        
  71.     float avgValue=0;        
  72.     for(int i=0; i < 256; i++)      
  73.     {        
  74.         avgValue += i * histogram[i];  //整幅影象的平均灰度      
  75.     }         
  76.   
  77.     int threshold;          
  78.     float maxVariance=0;        
  79.     float w = 0, u = 0;        
  80.     for(int i = 0; i < 256; i++)       
  81.     {        
  82.         w += histogram[i];  //假設當前灰度i為閾值, 0~i 灰度的畫素(假設畫素值在此範圍的畫素叫做前景畫素) 所佔整幅影象的比例      
  83.         u += i * histogram[i];  // 灰度i 之前的畫素(0~i)的平均灰度值: 前景畫素的平均灰度值      
  84.   
  85.         float t = avgValue * w - u;        
  86.         float variance = t * t / (w * (1 - w) );        
  87.         if(variance > maxVariance)       
  88.         {        
  89.             maxVariance = variance;        
  90.             threshold = i;        
  91.         }        
  92.     }        
  93.   
  94.     return threshold;        
  95. }       
  96.   
  97. int main()    
  98. {    
  99.     IplImage *img = cvLoadImage("c://temp.jpg", 0);    
  100.     IplImage *bin = cvCreateImage(cvGetSize(img), 8, 1);    
  101.   
  102.     int thresh = Otsu(img);    
  103.     cvThreshold(img, bin, thresh, 255, CV_THRESH_BINARY);    
  104.   
  105.     FillInternalContours(bin, 200);    
  106.   
  107.     cvNamedWindow("img");    
  108.     cvShowImage("img", img);    
  109.   
  110.     cvNamedWindow("result");    
  111.     cvShowImage("result", bin);    
  112.   
  113.     cvWaitKey(-1);    
  114.   
  115.     cvReleaseImage(&img);    
  116.     cvReleaseImage(&bin);    
  117.   
  118.     return 0;    
  119. }    



 

result1:

 

這種情況下,大月亮內部的兩個內輪廓沒有框出來。這個不是因為我的 rect框是 白色的緣故。。。。應該。

我斷點試了,就 cvRectangle 了 4次···

 

code2:

 

 

[cpp] view plaincopy
 
  1. // test.cpp : 定義控制檯應用程式的入口點。    
  2. //    
  3. #include "stdafx.h"    
  4. #include "stdio.h"    
  5. #include "cv.h"    
  6. #include "highgui.h"    
  7. #include "Math.h"    
  8.   
  9.   
  10. int _tmain(int argc, _TCHAR* argv[])    
  11. {    
  12.     IplImage *src = cvLoadImage("c:\\temp.jpg", 0);    
  13.     IplImage *dsw = cvCreateImage(cvGetSize(src), 8, 1);    
  14.     IplImage *dst = cvCreateImage(cvGetSize(src), 8, 3);    
  15.     CvMemStorage *storage = cvCreateMemStorage(0);    
  16.     CvSeq *first_contour = NULL;    
  17.   
  18.     //turn the src image to a binary image    
  19.     //cvThreshold(src, dsw, 125, 255, CV_THRESH_BINARY_INV);    
  20.     cvThreshold(src, dsw, 100, 255, CV_THRESH_BINARY);    
  21.   
  22.     cvFindContours(dsw, storage, &first_contour, sizeof(CvContour), CV_RETR_LIST, CV_CHAIN_APPROX_SIMPLE);    
  23.     cvZero(dst);    
  24.     int cnt = 0;    
  25.     for(; first_contour != 0; first_contour = first_contour->h_next)    
  26.     {    
  27.         cnt++;    
  28.         CvScalar color = CV_RGB(rand()&255, rand()&255, rand()&255);    
  29.         cvDrawContours(dst, first_contour, color, color, 0, 2, CV_FILLED, cvPoint(0, 0));    
  30.         CvRect rect = cvBoundingRect(first_contour,0);  
  31.         cvRectangle(dst, cvPoint(rect.x, rect.y), cvPoint(rect.x + rect.width, rect.y + rect.height),CV_RGB(255, 0, 0), 1, 8, 0);  
  32.     }    
  33.   
  34.     printf("the num of contours : %d\n", cnt);    
  35.   
  36.     cvNamedWindow( "Source", 1 );    
  37.     cvShowImage( "Source", src );    
  38.   
  39.     cvNamedWindow( "dsw", 1 );    
  40.     cvShowImage( "dsw", dsw );    
  41.   
  42.     cvNamedWindow( "Components", 1 );    
  43.     cvShowImage( "Components", dst );    
  44.   
  45.     cvReleaseMemStorage(&storage);    
  46.     cvWaitKey(-1);    
  47.   
  48.     return 0;    
  49. }    



 

resul2:

 

這種情況下 內輪廓也框出來了。。。。。

 

=======================================

看來閾值的選擇與想要的結果有很大關係哦。

如何適應不同的圖片呢?????????????????

 

=======================================

還有,每幅圖片裡面,最大的輪廓是整幅影象,可以根據其面積最大,去除 哦~~~修改如下:

 

area = fabs(cvContourArea(first_contour, CV_WHOLE_SEQ)); //cal the hole's area

 

 

++++++++++++++++++++++++++++++++

ps:

在寫後面那個 內輪廓填充的時候,才發現, dsw 是我二值化之後的影象,很明顯不應該是這樣子的呀。

我把 關於 Contours 的函式刪除之後 又 恢復正常了。不知道為嘛呢。 很顯然查出來的輪廓是 正確二值化之後的吧。 不知道為嘛會這樣顯示呢。

 

+++++++++++++++++++++++++++++==

ps:

再看另一個圖的結果:

總有 9 個輪廓。

另外,計算了下,每個大輪廓內部的 小輪廓的數目 conner ,結果顯示都為0.

看看第一個大五角星。 應該是把 邊邊作為了一個輪廓, 把 內部 黑色區域作為一個 輪廓 了吧????

還有,這幅圖片 沒有被當做一個大輪廓,上面那個小貓的,整幅圖片被框了一下啊。。。。。。。。。。。。

 

 

 

另外i, 把 關於 cvFindContours && cvDrawContours 兩個函式部分刪除,二值化結果如下:

 

 

相關文章