Package org.opencv.ximgproc
Class FastBilateralSolverFilter
- java.lang.Object
- 
- org.opencv.core.Algorithm
- 
- org.opencv.ximgproc.FastBilateralSolverFilter
 
 
- 
 public class FastBilateralSolverFilter extends Algorithm Interface for implementations of Fast Bilateral Solver. For more details about this solver see CITE: BarronPoole2016 .
- 
- 
Constructor SummaryConstructors Modifier Constructor Description protectedFastBilateralSolverFilter(long addr)
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FastBilateralSolverFilter__fromPtr__(long addr)voidfilter(Mat src, Mat confidence, Mat dst)Apply smoothing operation to the source image.protected voidfinalize()- 
Methods inherited from class org.opencv.core.Algorithmclear, empty, getDefaultName, getNativeObjAddr, save
 
- 
 
- 
- 
- 
Method Detail- 
__fromPtr__public static FastBilateralSolverFilter __fromPtr__(long addr) 
 - 
filterpublic void filter(Mat src, Mat confidence, 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 3 channels.
- confidence- confidence image with unsigned 8-bit or floating-point 32-bit confidence and 1 channel.
- dst- destination image. Note: Confidence images with CV_8U depth are expected to in [0, 255] and CV_32F in [0, 1] range.
 
 
- 
 
-