0

我正在尝试使用 Java 在 jpg 图片上添加 sobel 运算符。我在这里找到了示例:http ://www.tutorialspoint.com/java_dip/applying_sobel_operator.htm但它不起作用。相反,它打印黑色图像。有人可以向我解释我做错了什么吗?其他 imgproc 函数运行良好。

这是我的代码:

 Mat sourceImage = Highgui.imread(sourcePath,  Highgui.CV_LOAD_IMAGE_GRAYSCALE);
    Mat destinationImage = new Mat(sourceImage.rows(), sourceImage.cols(), sourceImage.type());

    Mat kernel = new Mat(kernelSize,kernelSize, CvType.CV_32F){
        {
           put(0,0,-1);
           put(0,1,0);
           put(0,2,1);

           put(1,0-2);
           put(1,1,0);
           put(1,2,2);

           put(2,0,-1);
           put(2,1,0);
           put(2,2,1);
        }
     };      

    Imgproc.filter2D(sourceImage, destinationImage, -1, kernel);          
    Highgui.imwrite(destinationPath, destinationImage);

    //display
    new ShowImage(sourcePath, sourceImage);
    new ShowImage(destinationPath, destinationImage);
4

1 回答 1

5

首先,您是否有理由不使用

Imgproc.Sobel(Mat src, Mat dst, int ddepth, int dx, int dy);

我不确定这里使用的 Java 语法。s的块什么时候put执行?是否假定它是您定义的 Mat 子类的构造函数的一部分?话虽如此,假设这看起来像它打算做的那样,那么您的输出文件类型可能没有正确指定;的价值是destinationPath多少?

您是否尝试在替代图像查看器中打开保存的文件以确定是ShowImage()代码还是保存的文件有问题?

您是否尝试过在十六进制编辑器中打开保存的文件以查看它是否具有“合理”的外观值或全为零?

于 2015-05-18T01:20:04.883 回答