@@ -422,32 +422,30 @@ class CV_EXPORTS_W Retina : public Algorithm {
422
422
Retina::getParvo methods
423
423
*/
424
424
CV_WRAP virtual void activateContoursProcessing (const bool activate)=0;
425
- };
426
-
427
- // ! @relates bioinspired::Retina
428
- // ! @{
429
-
430
- /* * @overload */
431
- CV_EXPORTS_W Ptr<Retina> createRetina (Size inputSize);
432
- /* * @brief Constructors from standardized interfaces : retreive a smart pointer to a Retina instance
433
-
434
- @param inputSize the input frame size
435
- @param colorMode the chosen processing mode : with or without color processing
436
- @param colorSamplingMethod specifies which kind of color sampling will be used :
437
- - cv::bioinspired::RETINA_COLOR_RANDOM: each pixel position is either R, G or B in a random choice
438
- - cv::bioinspired::RETINA_COLOR_DIAGONAL: color sampling is RGBRGBRGB..., line 2 BRGBRGBRG..., line 3, GBRGBRGBR...
439
- - cv::bioinspired::RETINA_COLOR_BAYER: standard bayer sampling
440
- @param useRetinaLogSampling activate retina log sampling, if true, the 2 following parameters can
441
- be used
442
- @param reductionFactor only usefull if param useRetinaLogSampling=true, specifies the reduction
443
- factor of the output frame (as the center (fovea) is high resolution and corners can be
444
- underscaled, then a reduction of the output is allowed without precision leak
445
- @param samplingStrenght only usefull if param useRetinaLogSampling=true, specifies the strenght of
446
- the log scale that is applied
447
- */
448
- CV_EXPORTS_W Ptr<Retina> createRetina (Size inputSize, const bool colorMode, int colorSamplingMethod=RETINA_COLOR_BAYER, const bool useRetinaLogSampling=false , const float reductionFactor=1 .0f , const float samplingStrenght=10 .0f );
449
425
450
- // ! @}
426
+ /* * @overload */
427
+ CV_WRAP static Ptr<Retina> create (Size inputSize);
428
+ /* * @brief Constructors from standardized interfaces : retreive a smart pointer to a Retina instance
429
+
430
+ @param inputSize the input frame size
431
+ @param colorMode the chosen processing mode : with or without color processing
432
+ @param colorSamplingMethod specifies which kind of color sampling will be used :
433
+ - cv::bioinspired::RETINA_COLOR_RANDOM: each pixel position is either R, G or B in a random choice
434
+ - cv::bioinspired::RETINA_COLOR_DIAGONAL: color sampling is RGBRGBRGB..., line 2 BRGBRGBRG..., line 3, GBRGBRGBR...
435
+ - cv::bioinspired::RETINA_COLOR_BAYER: standard bayer sampling
436
+ @param useRetinaLogSampling activate retina log sampling, if true, the 2 following parameters can
437
+ be used
438
+ @param reductionFactor only usefull if param useRetinaLogSampling=true, specifies the reduction
439
+ factor of the output frame (as the center (fovea) is high resolution and corners can be
440
+ underscaled, then a reduction of the output is allowed without precision leak
441
+ @param samplingStrenght only usefull if param useRetinaLogSampling=true, specifies the strenght of
442
+ the log scale that is applied
443
+ */
444
+ CV_WRAP static Ptr<Retina> create (Size inputSize, const bool colorMode,
445
+ int colorSamplingMethod=RETINA_COLOR_BAYER,
446
+ const bool useRetinaLogSampling=false ,
447
+ const float reductionFactor=1 .0f , const float samplingStrenght=10 .0f );
448
+ };
451
449
452
450
// ! @}
453
451
0 commit comments