Package org.opencv.ximgproc
Class GuidedFilter
- java.lang.Object
-
- org.opencv.core.Algorithm
-
- org.opencv.ximgproc.GuidedFilter
-
public class GuidedFilter extends Algorithm
Interface for realizations of (Fast) Guided Filter. For more details about this filter see CITE: Kaiming10 CITE: Kaiming15 .
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
GuidedFilter(long addr)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GuidedFilter
__fromPtr__(long addr)
void
filter(Mat src, Mat dst)
Apply (Fast) Guided Filter to the filtering image.void
filter(Mat src, Mat dst, int dDepth)
Apply (Fast) Guided Filter to the filtering image.protected void
finalize()
-
Methods inherited from class org.opencv.core.Algorithm
clear, empty, getDefaultName, getNativeObjAddr, save
-
-
-
-
Method Detail
-
__fromPtr__
public static GuidedFilter __fromPtr__(long addr)
-
filter
public void filter(Mat src, Mat dst, int dDepth)
Apply (Fast) Guided Filter to the filtering image.- Parameters:
src
- filtering image with any numbers of channels.dst
- output 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)
Apply (Fast) Guided Filter to the filtering image.- Parameters:
src
- filtering image with any numbers of channels.dst
- output image. to src.depth().
-
-