Path: blob/master/modules/features2d/src/kaze/KAZEConfig.h
16337 views
/**1* @file KAZEConfig.h2* @brief Configuration file3* @date Dec 27, 20114* @author Pablo F. Alcantarilla5*/67#ifndef __OPENCV_FEATURES_2D_KAZE_CONFIG_H__8#define __OPENCV_FEATURES_2D_KAZE_CONFIG_H__910// OpenCV Includes11#include "../precomp.hpp"12#include <opencv2/features2d.hpp>1314namespace cv15{16//*************************************************************************************1718struct KAZEOptions {1920KAZEOptions()21: diffusivity(KAZE::DIFF_PM_G2)2223, soffset(1.60f)24, omax(4)25, nsublevels(4)26, img_width(0)27, img_height(0)28, sderivatives(1.0f)29, dthreshold(0.001f)30, kcontrast(0.01f)31, kcontrast_percentille(0.7f)32, kcontrast_bins(300)33, upright(false)34, extended(false)35{36}3738KAZE::DiffusivityType diffusivity;39float soffset;40int omax;41int nsublevels;42int img_width;43int img_height;44float sderivatives;45float dthreshold;46float kcontrast;47float kcontrast_percentille;48int kcontrast_bins;49bool upright;50bool extended;51};5253}5455#endif565758