Package org.opencv.ximgproc
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 Summary
Constructors Modifier Constructor Description protected
DTFilter(long addr)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DTFilter
__fromPtr__(long addr)
void
filter(Mat src, Mat dst)
Produce domain transform filtering operation on source image.void
filter(Mat src, Mat dst, int dDepth)
Produce domain transform filtering operation on source image.protected void
finalize()
-
Methods inherited from class org.opencv.core.Algorithm
clear, empty, getDefaultName, getNativeObjAddr, save
-
-
-
-
Method Detail
-
__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().
-
-