| /** | |
| * @file KAZEConfig.h | |
| * @brief Configuration file | |
| * @date Dec 27, 2011 | |
| * @author Pablo F. Alcantarilla | |
| */ | |
| // OpenCV Includes | |
| namespace cv | |
| { | |
| //************************************************************************************* | |
| struct KAZEOptions { | |
| KAZEOptions() | |
| : diffusivity(KAZE::DIFF_PM_G2) | |
| , soffset(1.60f) | |
| , omax(4) | |
| , nsublevels(4) | |
| , img_width(0) | |
| , img_height(0) | |
| , sderivatives(1.0f) | |
| , dthreshold(0.001f) | |
| , kcontrast(0.01f) | |
| , kcontrast_percentille(0.7f) | |
| , kcontrast_bins(300) | |
| , upright(false) | |
| , extended(false) | |
| { | |
| } | |
| KAZE::DiffusivityType diffusivity; | |
| float soffset; | |
| int omax; | |
| int nsublevels; | |
| int img_width; | |
| int img_height; | |
| float sderivatives; | |
| float dthreshold; | |
| float kcontrast; | |
| float kcontrast_percentille; | |
| int kcontrast_bins; | |
| bool upright; | |
| bool extended; | |
| }; | |
| } | |