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 Guided Filter. For more details about this filter see CITE: Kaiming10 .
- 
- 
Constructor SummaryConstructors Modifier Constructor Description protectedGuidedFilter(long addr)
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GuidedFilter__fromPtr__(long addr)voidfilter(Mat src, Mat dst)Apply Guided Filter to the filtering image.voidfilter(Mat src, Mat dst, int dDepth)Apply Guided Filter to the filtering image.protected voidfinalize()- 
Methods inherited from class org.opencv.core.Algorithmclear, empty, getDefaultName, getNativeObjAddr, save
 
- 
 
- 
- 
- 
Method Detail- 
__fromPtr__public static GuidedFilter __fromPtr__(long addr) 
 - 
filterpublic void filter(Mat src, Mat dst, int dDepth) Apply 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().
 
 - 
filterpublic void filter(Mat src, Mat dst) Apply Guided Filter to the filtering image.- Parameters:
- src- filtering image with any numbers of channels.
- dst- output image. to src.depth().
 
 
- 
 
-