估计图像线渐变(不是像素渐变) [英] Estimate Image line gradient ( not pixel gradient)

查看:184
本文介绍了估计图像线渐变(不是像素渐变)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个问题,我想估计轮廓线的渐变。请注意,我不需要像素梯度但是线的变化率。

I have a problem whereby I want to estimate the gradient of the line on the contour. Please note that I dont need the pixel gradient but the rate of change of line.

如果看到附加的图像,您将看到带有绿色轮廓的二进制图像。我想根据轮廓上像素的渐变标记每个像素。

If you see the attached image, you will see a binary image with green contour. I want to label each pixel based on the gradient of the pixel on the contour.

为什么我需要渐变是因为我想计算渐变方向从+到 - 或从 - 到+变化的点。

Why I need the gradient is because I want to compute the points where the gradient orientation changes from + to - or from - to +.

我想不出一个好的方法,估计图像上的这一点。有人可以帮我提出如何估算这一点的建议。

I cannot think of a good method, to estimate this point on the image. Could someone help me with suggestion on how I can estimate this points.

推荐答案

这是一个小程序,以非常简单的方式计算每个轮廓像素位置的切线(还有其他可能更好的方法!其中包括: http://en.wikipedia.org/wiki/Finite_difference#Forward .2C_backward.2C_and_central_differences ):

Here is a small program that computes the tangent at each contour pixel location in a very simple way (there exist other and probably better ways! the easy ones are: http://en.wikipedia.org/wiki/Finite_difference#Forward.2C_backward.2C_and_central_differences):


  1. 对于轮廓像素c_ {i}获取邻居c_ {i-1}和c_ {i + 1}

  2. c_i处的切线方向为(c_ {i-1} - c_ {i + 1}

所以这一切都在CONTOUR PIXELS上,但如果计算与完整图像像素渐变的正交,也许你可以这么类似......不确定;)

So this is all on CONTOUR PIXELS but maybe you could so something similar if you compute the orthogonal to the full image pixel gradient... not sure about that ;)

这里是代码:

int main()
{
    cv::Mat input = cv::imread("../inputData/ContourTangentBin.png");

    cv::Mat gray;
    cv::cvtColor(input,gray,CV_BGR2GRAY);

    // binarize
    cv::Mat binary = gray > 100;

    // find contours
    std::vector<std::vector<cv::Point> > contours;
    std::vector<cv::Vec4i> hierarchy;
    findContours( binary.clone(), contours, hierarchy, CV_RETR_TREE, CV_CHAIN_APPROX_NONE );    // CV_CHAIN_APPROX_NONE to get each single pixel of the contour!!


    for( int i = 0; i< contours.size(); i++ )
    {
        std::vector<cv::Point> & cCont = contours[i];
        std::vector<cv::Point2f> tangents;

        if(cCont.size() < 3) continue;

        // 1. compute tangent for first point
        cv::Point2f cPoint = cCont.front();
        cv::Point2f tangent = cCont.back() - cCont.at(1);   // central tangent => you could use another method if you like to
        tangents.push_back(tangent);

        // display first tangent
        cv::Mat tmpOut = input.clone();
        cv::line(tmpOut, cPoint + 10*tangent, cPoint-10*tangent, cv::Scalar(0,0,255),1);
        cv::imshow("tangent",tmpOut);
        cv::waitKey(0);

        for(unsigned int j=1; j<cCont.size(); ++j)
        {
            cPoint = cCont[j];
            tangent = cCont[j-1] - cCont[(j+1)%cCont.size()];   // central tangent => you could use another method if you like to
            tangents.push_back(tangent);

            //display current tangent:
            tmpOut = input.clone();
            cv::line(tmpOut, cPoint + 10*tangent, cPoint-10*tangent, cv::Scalar(0,0,255),1);
            cv::imshow("tangent",tmpOut);
            cv::waitKey(0);
            //if(cv::waitKey(0) == 's') cv::imwrite("../outputData/ContourTangentTangent.png", tmpOut);
        }

        // now there are all the tangent directions in "tangents", do whatever you like with them
    }

    for( int i = 0; i< contours.size(); i++ )
    {
        drawContours( input, contours, i, cv::Scalar(0,255,0), 1, 8, hierarchy, 0 );
    }

    cv::imshow("input", input);
    cv::imshow("binary", binary);
    cv::waitKey(0);
    return 0;
}

我用过这张图片:

和获得如下输出:

在结果中,您可以获得具有该轮廓的每个像素的2D切线信息(线方向)的矢量。

in the result you get a vector with a 2D tangent information (line direction) for each pixel of that contour.

这篇关于估计图像线渐变(不是像素渐变)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆