OpenCV
3.0.0
Open Source Computer Vision
|
Classes | |
class | AdaptiveManifoldFilter |
Interface for Adaptive Manifold Filter realizations. More... | |
class | DTFilter |
Interface for realizations of Domain Transform filter. More... | |
class | GuidedFilter |
Interface for realizations of Guided Filter. More... | |
class | RFFeatureGetter |
class | StructuredEdgeDetection |
Class implementing edge detection algorithm from [31] : More... | |
class | SuperpixelSEEDS |
Class implementing the SEEDS (Superpixels Extracted via Energy-Driven Sampling) superpixels algorithm described in [126] . More... | |
Enumerations | |
enum | EdgeAwareFiltersList { DTF_NC, DTF_IC, DTF_RF, GUIDED_FILTER, AM_FILTER } |
Functions | |
void | amFilter (InputArray joint, InputArray src, OutputArray dst, double sigma_s, double sigma_r, bool adjust_outliers=false) |
Simple one-line Adaptive Manifold Filter call. More... | |
Ptr< AdaptiveManifoldFilter > | createAMFilter (double sigma_s, double sigma_r, bool adjust_outliers=false) |
Factory method, create instance of AdaptiveManifoldFilter and produce some initialization routines. More... | |
Ptr< DTFilter > | createDTFilter (InputArray guide, double sigmaSpatial, double sigmaColor, int mode=DTF_NC, int numIters=3) |
Factory method, create instance of DTFilter and produce initialization routines. More... | |
Ptr< GuidedFilter > | createGuidedFilter (InputArray guide, int radius, double eps) |
Factory method, create instance of GuidedFilter and produce initialization routines. More... | |
Ptr< RFFeatureGetter > | createRFFeatureGetter () |
Ptr< StructuredEdgeDetection > | createStructuredEdgeDetection (const String &model, Ptr< const RFFeatureGetter > howToGetFeatures=Ptr< RFFeatureGetter >()) |
Ptr< SuperpixelSEEDS > | createSuperpixelSEEDS (int image_width, int image_height, int image_channels, int num_superpixels, int num_levels, int prior=2, int histogram_bins=5, bool double_step=false) |
Initializes a SuperpixelSEEDS object. More... | |
void | dtFilter (InputArray guide, InputArray src, OutputArray dst, double sigmaSpatial, double sigmaColor, int mode=DTF_NC, int numIters=3) |
Simple one-line Domain Transform filter call. If you have multiple images to filter with the same guided image then use DTFilter interface to avoid extra computations on initialization stage. More... | |
void | guidedFilter (InputArray guide, InputArray src, OutputArray dst, int radius, double eps, int dDepth=-1) |
Simple one-line Guided Filter call. More... | |
void | jointBilateralFilter (InputArray joint, InputArray src, OutputArray dst, int d, double sigmaColor, double sigmaSpace, int borderType=BORDER_DEFAULT) |
Applies the joint bilateral filter to an image. More... | |