OpenCV Sobel滤波器产生几乎完全黑色的图像

时间:2015-02-10 04:21:05

标签: c++ opencv

我对我的sobel_y(和sobel_x,但我认为他们有同样的问题)过滤器有一些问题,因为它不断给我一个基本上只有黑白图像。我不得不为一个类重写这个函数,所以没有我不能使用内置的,并且让它工作,减去一些小的调整因为输出图像看起来有点奇怪仍然是黑色和白色,即使它是假设被转换回来。我想出了如何解决这个问题,并且在这个过程中我搞砸了一些东西然后打破了它,即使只使用黑白图像输出也无法恢复工作。我不断得到一个黑色的图像,顶部附近有一些白线。我已经尝试将Mat灰度类型(第三个参数)更改为所有不同的值,正如我的教授在课堂上提到的那样我们使用32位浮点图像,但这也无济于事。

即使在运行Studentfilter2D之后出现问题,我认为这是灰度图像的问题,虽然每当我调试时,它似乎工作得很好。这也是因为我还有另外两个使用Studentfilter2D编写的过滤函数,它们都给了我预期的结果。我的sobel_y函数如下所示:

// Convert the image in bgr to grayscale OK to use the OpenCV function.  
// Find the coefficients used by the OpenCV function, and give a link where you found it.
// Note: This student function expects the matrix gray to be preallocated with the same width and
// height, but with 1 channel.
void BGR2Gray(Mat& bgr, Mat& gray)
{
    // Y = .299 * R + .587 * G + .114 * B, from http://docs.opencv.org/modules/imgproc/doc/miscellaneous_transformations.html#cvtcolor
    // Some extra assistance, for the third parameter for the InputArray, from http://docs.opencv.org/trunk/modules/core/doc/basic_structures.html#inputarray
    // Not sure about the fourth parameter, but was just trying it to see if that may be the issue as well
    cvtColor(bgr, gray, CV_BGR2GRAY, 1);
    return;
}
// Convolve image with kernel - this routine will be called from the other
// subroutines!  (gaussian, sobel_x and sobel_y)
// image is single channel.  Do not use the OpenCV filter2D!!
// Implementation can be with the .at or similar to the
// basic method found in the Chapter 2 of the OpenCV tutorial in CANVAS,  
// or online at the OpenCV documentation here: 
// http://docs.opencv.org/doc/tutorials/core/mat-mask-operations/mat-mask operations.html 
// In our code the image and the kernel are both floats (so the sample code   will need to change)
void Studentfilter2D (Mat& image, Mat& kernel)
{
    int kCenterX = kernel.cols / 2;
    int kCenterY = kernel.rows / 2;
    // Algorithm help from http://www.songho.ca/dsp/convolution/convolution.html
    for (int iRows = 0; iRows < image.rows; iRows++)
    {
        for (int iCols = 0; iCols < image.cols; iCols++)
        {
            float result = 0.0;
            for (int kRows = 0; kRows < kernel.rows; kRows++)
            {
                // Flip the rows for the convolution
                int kRowsFlipped = kernel.rows - 1 - kRows;
                for (int kCols = 0; kCols < kernel.cols; kCols++)
                {
                    // Flip the columns for the convolution
                    int kColsFlipped = kernel.cols - 1 - kCols;
                    // Indices of shifting around the convolution
                    int iRowsIndex = iRows + kRows - kCenterY;
                    int iColsIndex = iCols + kCols - kCenterX;
                    // Check bounds using the indices
                    if (iRowsIndex >= 0 && iRowsIndex < image.rows && iColsIndex >= 0 && iColsIndex < image.cols)
                    {
                        result += image.at<float>(iRowsIndex, iColsIndex) * kernel.at<float>(kRowsFlipped, kColsFlipped);
                    }
                }
            }
            image.at<float>(iRows, iCols) = result;
        }
    }
    return;
}

void sobel_y (Mat& image, int)
{
    // Note, the filter parameter int is unused.
    Mat mask = (Mat_<float>(3, 3) << 1, 2, 1,
        0, 0, 0,
        -1, -2, -1) / 3;
    //Mat grayscale(image.rows, image.cols, CV_32FC1);
    BGR2Gray(image, image);
    Studentfilter2D(image, mask);
    // Here is the documentation on normalize http://docs.opencv.org/modules/core/doc/operations_on_arrays.html#normalize
    normalize(image, image, 0, 1, NORM_MINMAX);
    cvtColor(image, image, CV_GRAY2BGR);
    return;
}

就像我说的那样,我之前有过这个工作,只是寻找一些新鲜的眼睛来看它,看看我可能会缺少什么。在过去的4天里,我一直在看这个相同的代码,我认为我只是错过了一些东西。如果有人想知道,我也尝试更改过滤器的掩码值,但无济于事。

1 个答案:

答案 0 :(得分:1)

有两件事值得一提。

首先,您没有正确处理矩阵/图像的类型。 Studentfilter2Dsobel_y的输入是CV_8UC1类型的8位灰度图像,这意味着数据是unsigned char的数组。 但是,您的Studentfilter2D函数正在将此输入图像编入索引,就好像它是float类型一样。这意味着正在选择错误的像素来使用

如果上述内容无法立即解决您的问题,则应考虑最终衍生图像的范围。由于它是一个导数,它将不再在[0,255]范围内。相反,它甚至可能包含负数。当您尝试对此进行可视化时,除非您首先规范化您的图片,否则您将遇到问题。 如果您在文档中查看,可以在OpenCV中执行此功能。