Package org.opencv.ximgproc
Class FastGlobalSmootherFilter
- java.lang.Object
 - 
- org.opencv.core.Algorithm
 - 
- org.opencv.ximgproc.FastGlobalSmootherFilter
 
 
 
- 
public class FastGlobalSmootherFilter extends Algorithm
Interface for implementations of Fast Global Smoother filter. For more details about this filter see CITE: Min2014 and CITE: Farbman2008 . 
- 
- 
Constructor Summary
Constructors Modifier Constructor Description protectedFastGlobalSmootherFilter(long addr) 
- 
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FastGlobalSmootherFilter__fromPtr__(long addr)voidfilter(Mat src, Mat dst)Apply smoothing operation to the source image.protected voidfinalize()- 
Methods inherited from class org.opencv.core.Algorithm
clear, empty, getDefaultName, getNativeObjAddr, save 
 - 
 
 - 
 
- 
- 
Method Detail
- 
__fromPtr__
public static FastGlobalSmootherFilter __fromPtr__(long addr)
 
- 
filter
public void filter(Mat src, Mat dst)
Apply smoothing operation to the source image.- Parameters:
 src- source image for filtering with unsigned 8-bit or signed 16-bit or floating-point 32-bit depth and up to 4 channels.dst- destination image.
 
 - 
 
 -