Class DTFilter

java.lang.Object
org.opencv.core.Algorithm
org.opencv.ximgproc.DTFilter

public class DTFilter extends Algorithm
Interface for realizations of Domain Transform filter. For more details about this filter see CITE: Gastal11 .
  • Constructor Details

    • DTFilter

      protected DTFilter(long addr)
  • Method Details

    • __fromPtr__

      public static DTFilter __fromPtr__(long addr)
    • filter

      public void filter(Mat src, Mat dst, int dDepth)
      Produce domain transform filtering operation on source image.
      Parameters:
      src - filtering image with unsigned 8-bit or floating-point 32-bit depth and up to 4 channels.
      dst - destination image.
      dDepth - optional depth of the output image. dDepth can be set to -1, which will be equivalent to src.depth().
    • filter

      public void filter(Mat src, Mat dst)
      Produce domain transform filtering operation on source image.
      Parameters:
      src - filtering image with unsigned 8-bit or floating-point 32-bit depth and up to 4 channels.
      dst - destination image. to src.depth().
    • finalize

      protected void finalize() throws Throwable
      Overrides:
      finalize in class Algorithm
      Throws:
      Throwable