5

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

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

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

在此处输入图像描述

蓝色:轮廓的多边形近似

红色:我想要的多边形,但找不到。(在上图中,我使用了 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);
4

2 回答 2

3

只需在获取轮廓之前 侵蚀您找到的蓝色多边形。这里是 C API(对不起,我对 C API 不是很熟悉)。

// void cvErode( const CvArr* A, CvArr* C, IplConvKernel* B=0, int iterations=1 );
cvErode(pOutput, pOutput, NULL, 3);
于 2012-05-04T12:08:29.437 回答
2

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

  1. 在新数组中绘制原始轮廓。
  2. 计算它的距离变换。
  3. 阈值:如果您想要 10 个像素的偏移量,请将距离图中的像素保持在 10 以上。
  4. 找到新图像的轮廓。

可以使用函数 直接在轮廓上完成类似且可能不太严格的事情pointPolygonTest()

于 2012-05-04T11:57:31.893 回答