OpenCV - 一个偏移的DrawContour

时间:2012-05-04 11:14:44

标签: opencv drawing contour approximate

我正在使用OpenCV进行图像处理。 我正在寻找一个人体,我想隔离(段)。

目前,我能够找到身体的轮廓,并用Polygon近似轮廓。接下来,我想在cvWatershed中使用该轮廓,以真正隔离身体。

有谁知道如何在向中心偏移处绘制轮廓? 为了说明,请参见下图。

enter image description here

蓝色:轮廓的多边形近似

红色:我想要的多边形,但无法找到。 (在上图中,我使用了photoshop ......)

以下是我找到&绘制当前轮廓:

CvContourScanner scanner = cvStartFindContours(mask, pStorage, sizeof(CvContour),    CV_RETR_EXTERNAL, CV_CHAIN_APPROX_SIMPLE);
CvSeq* c;
CvSeq* polyContour;
int numCont = 0;
int perimScale = 4;
int contour_approx_level = 6;
while((c = cvFindNextContour(scanner)) != NULL)
{
    CvSeq* c_new;

    // Polygonal approximation
    c_new = cvApproxPoly(c, sizeof(CvContour), pStorage, CV_POLY_APPROX_DP, contour_approx_level, 0);

    // Create the new contour
    cvSubstituteContour(scanner, c_new);
    numCont++;
}

polyContour = cvEndFindContours(&scanner);
int i = 0;
for(i=0, c=polyContour; c!=NULL; c = c->h_next, i++)
{
    cvDrawContours(pOutput, c, cvScalar(255,125,0), cvScalar(255,255,0), -1, 2, 8);
}

/* Draw the contour at an offset towards the center here */
// Based upon the answers, I found 2 solutions

编辑:根据以下答案,我找到了两个解决方案:

// 1) Erode - 
// void cvErode( const CvArr* A, CvArr* C, IplConvKernel* B=0, int iterations=1 );
cvErode(pOutput, pOutput, NULL, 3);

// 2) Another option - draw with a black border and thick pencil:
cvDrawContours(pOutput, c, cvScalarAll(0), cvScalarAll(0), 12, 2, 8);

2 个答案:

答案 0 :(得分:3)

在获得轮廓之前,只需erode找到的蓝色多边形。 对于C API Here(抱歉,我对C API不是很熟悉)。

// void cvErode( const CvArr* A, CvArr* C, IplConvKernel* B=0, int iterations=1 );
cvErode(pOutput, pOutput, NULL, 3);

答案 1 :(得分:2)

它可能不是最优雅的东西,但它肯定会起作用:

  1. 以新阵列绘制原始轮廓。
  2. 计算距离变换。
  3. 阈值:如果您想要十个像素的偏移,请保持距离图中的像素高于十。
  4. 找到新图像的轮廓。
  5. 使用函数pointPolygonTest()可以直接在轮廓上完成类似且可能不那么严格的事情。