- OpenCV简介
- OpenCV开发环境配置
- OpenCV存储图像
- OpenCV读取图像
- OpenCV写入图像
- OpenCV用户界面
- 图像类型
- 图像转换
- 绘图函数
- 模糊功能
- 过滤功能
- 阈值
- 索贝尔衍生品
- 变换操作
- 相机和人脸检测
- 几何变换
- 杂篇
OpenCV Scharr操作
Scharr也用于检测水平和垂直方向的图像的二阶导数。可以使用scharr()
方法对图像执行scharr
操作。以下是这种方法的语法 -
Scharr(src, dst, ddepth, dx, dy)
该方法接受以下参数 -
- src - 表示源(输入)图像的
Mat
类的对象。 - dst - 表示目标(输出)图像的
Mat
类的对象。 - ddepth - 表示图像深度的整数变量(
-1
)。 - dx - 表示
x
导数的整数变量(0
或1
)。 - dy - 表示
y
导数的整数变量(0
或1
)。
示例
以下程序演示了如何将scharr
应用于给定的图像。
package com.zyiz.sobelderivatives; import org.opencv.core.Core; import org.opencv.core.Mat; import org.opencv.imgcodecs.Imgcodecs; import org.opencv.imgproc.Imgproc; public class ScharrTest { public static void main( String[] args ) { // Loading the OpenCV core library System.loadLibrary( Core.NATIVE_LIBRARY_NAME ); // Reading the Image from the file and storing it in to a Matrix object String file ="F:/worksp/opencv/images/sample3.jpg"; Mat src = Imgcodecs.imread(file); // Creating an empty matrix to store the result Mat dst = new Mat(); // Applying Box Filter effect on the Image Imgproc.Scharr(src, dst, Imgproc.CV_SCHARR, 0, 1); // Writing the image Imgcodecs.imwrite("F:/worksp/opencv/images/sample3scharr_output.jpg", dst); System.out.println("Image processed"); } }
假定以下是上述程序中指定的输入图像sample3.jpg
。
执行上面示例代码,得到以下结果 -
更多scharr变体
将不同的值传递给最后一个参数(dx
和dy
),在0
和1
之间,将得到不同的输出。
// Applying scharr on the Image Imgproc.Scharr(src, dst, -1, 1, 1);
上一篇:OpenCV索贝尔操作
下一篇:OpenCV拉普拉斯变换
关注微信小程序
扫描二维码
程序员编程王