predict_collector.hpp 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /*
  2. By downloading, copying, installing or using the software you agree to this license.
  3. If you do not agree to this license, do not download, install,
  4. copy or use the software.
  5. License Agreement
  6. For Open Source Computer Vision Library
  7. (3-clause BSD License)
  8. Copyright (C) 2000-2015, Intel Corporation, all rights reserved.
  9. Copyright (C) 2009-2011, Willow Garage Inc., all rights reserved.
  10. Copyright (C) 2009-2015, NVIDIA Corporation, all rights reserved.
  11. Copyright (C) 2010-2013, Advanced Micro Devices, Inc., all rights reserved.
  12. Copyright (C) 2015, OpenCV Foundation, all rights reserved.
  13. Copyright (C) 2015, Itseez Inc., all rights reserved.
  14. Third party copyrights are property of their respective owners.
  15. Redistribution and use in source and binary forms, with or without modification,
  16. are permitted provided that the following conditions are met:
  17. * Redistributions of source code must retain the above copyright notice,
  18. this list of conditions and the following disclaimer.
  19. * Redistributions in binary form must reproduce the above copyright notice,
  20. this list of conditions and the following disclaimer in the documentation
  21. and/or other materials provided with the distribution.
  22. * Neither the names of the copyright holders nor the names of the contributors
  23. may be used to endorse or promote products derived from this software
  24. without specific prior written permission.
  25. This software is provided by the copyright holders and contributors "as is" and
  26. any express or implied warranties, including, but not limited to, the implied
  27. warranties of merchantability and fitness for a particular purpose are disclaimed.
  28. In no event shall copyright holders or contributors be liable for any direct,
  29. indirect, incidental, special, exemplary, or consequential damages
  30. (including, but not limited to, procurement of substitute goods or services;
  31. loss of use, data, or profits; or business interruption) however caused
  32. and on any theory of liability, whether in contract, strict liability,
  33. or tort (including negligence or otherwise) arising in any way out of
  34. the use of this software, even if advised of the possibility of such damage.
  35. */
  36. #ifndef __OPENCV_PREDICT_COLLECTOR_HPP__
  37. #define __OPENCV_PREDICT_COLLECTOR_HPP__
  38. #include <cfloat>
  39. #include "opencv2/core/cvdef.h"
  40. #include "opencv2/core/cvstd.hpp"
  41. namespace cv {
  42. namespace face {
  43. //! @addtogroup face
  44. //! @{
  45. /** @brief Abstract base class for all strategies of prediction result handling
  46. */
  47. class CV_EXPORTS_W PredictCollector {
  48. protected:
  49. double _threshhold;
  50. int _size;
  51. int _state;
  52. public:
  53. /** @brief creates new predict collector with given threshhold */
  54. PredictCollector(double threshhold = DBL_MAX) :_threshhold(threshhold) {};
  55. CV_WRAP virtual ~PredictCollector() {}
  56. /** @brief called once at start of recognition
  57. @param size total size of prediction evaluation that recognizer could perform
  58. @param state user defined send-to-back optional value to allow multi-thread, multi-session or aggregation scenarios
  59. */
  60. CV_WRAP virtual void init(const int size, const int state = 0);
  61. /** @brief called with every recognition result
  62. @param label current prediction label
  63. @param dist current prediction distance (confidence)
  64. @param state user defined send-to-back optional value to allow multi-thread, multi-session or aggregation scenarios
  65. @return true if recognizer should proceed prediction , false - if recognizer should terminate prediction
  66. */
  67. CV_WRAP virtual bool emit(const int label, const double dist, const int state = 0); //not abstract while Python generation require non-abstract class
  68. };
  69. /** @brief default predict collector that trace minimal distance with treshhold checking (that is default behavior for most predict logic)
  70. */
  71. class CV_EXPORTS_W MinDistancePredictCollector : public PredictCollector {
  72. private:
  73. int _label;
  74. double _dist;
  75. public:
  76. /** @brief creates new MinDistancePredictCollector with given threshhold */
  77. CV_WRAP MinDistancePredictCollector(double threshhold = DBL_MAX) : PredictCollector(threshhold) {
  78. _label = 0;
  79. _dist = DBL_MAX;
  80. };
  81. CV_WRAP bool emit(const int label, const double dist, const int state = 0);
  82. /** @brief result label, 0 if not found */
  83. CV_WRAP int getLabel() const;
  84. /** @brief result distance (confidence) DBL_MAX if not found */
  85. CV_WRAP double getDist() const;
  86. /** @brief factory method to create cv-pointers to MinDistancePredictCollector */
  87. CV_WRAP static Ptr<MinDistancePredictCollector> create(double threshold = DBL_MAX);
  88. };
  89. //! @}
  90. }
  91. }
  92. #endif