OpenCV - 距离变换


距离变换算子通常以二值图像作为输入。在此操作中,前景区域内的点的灰度级强度被改变以远离最接近的0值(边界)各自的距离。

您可以使用方法distanceTransform()在 OpenCV 中应用距离变换。以下是该方法的语法。

distanceTransform(src, dst, distanceType, maskSize)

该方法接受以下参数 -

  • src - Mat类的对象,表示源(输入)图像。

  • dst - Mat类的对象,表示目标(输出)图像。

  • distanceType - 整数类型的变量,表示要应用的距离变换的类型。

  • maskSize - 表示要使用的掩码大小的整数类型变量。

例子

下面的程序演示了如何对给定图像执行距离变换操作。

import org.opencv.core.Core;
import org.opencv.core.Mat;
import org.opencv.imgcodecs.Imgcodecs;
import org.opencv.imgproc.Imgproc;

public class DistanceTransform {
   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 ="E:/OpenCV/chap19/input.jpg";
      Mat src = Imgcodecs.imread(file,0);

      // Creating an empty matrix to store the results
      Mat dst = new Mat();
      Mat binary = new Mat();

      // Converting the grayscale image to binary image
      Imgproc.threshold(src, binary, 100, 255, Imgproc.THRESH_BINARY);

      // Applying distance transform
      Imgproc.distanceTransform(mat, dst, Imgproc.DIST_C, 3);

      // Writing the image
      Imgcodecs.imwrite("E:/OpenCV/chap19/distnceTransform.jpg", dst);

      System.out.println("Image Processed");
   }
}

假设以下是上述程序中指定的输入图像input.jpg 。

距离变换输入

输出

执行程序时,您将得到以下输出 -

Image Processed

如果打开指定的路径,您可以观察输出图像,如下所示 -

距离变换输出

距离变换操作的类型

除了前面示例中演示的距离操作类型DIST_C之外,OpenCV 还提供各种其他类型的距离变换操作。所有这些类型都由 Imgproc 类的预定义静态字段(固定值)表示。

您可以通过将其各自的预定义值传递给distanceTransform()方法的名为distanceType的参数来选择所需的距离变换操作的类型。

// Applying distance transform 
Imgproc.distanceTransform(mat, dst, Imgproc.DIST_C, 3);

以下是表示各种类型的distanceTransform操作及其各自输出的值。

操作及说明 输出
距离_C 距离_C
距离_L1 距离_L1
距离_L2 距离_L2
DIST_LABEL_PIXEL DIST_LABEL_PIXEL
DIST_MASK_3 DIST_MASK_3