objdetect_c.h 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. /*M///////////////////////////////////////////////////////////////////////////////////////
  2. //
  3. // IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
  4. //
  5. // By downloading, copying, installing or using the software you agree to this license.
  6. // If you do not agree to this license, do not download, install,
  7. // copy or use the software.
  8. //
  9. //
  10. // License Agreement
  11. // For Open Source Computer Vision Library
  12. //
  13. // Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
  14. // Copyright (C) 2009, Willow Garage Inc., all rights reserved.
  15. // Copyright (C) 2013, OpenCV Foundation, all rights reserved.
  16. // Third party copyrights are property of their respective owners.
  17. //
  18. // Redistribution and use in source and binary forms, with or without modification,
  19. // are permitted provided that the following conditions are met:
  20. //
  21. // * Redistribution's of source code must retain the above copyright notice,
  22. // this list of conditions and the following disclaimer.
  23. //
  24. // * Redistribution's in binary form must reproduce the above copyright notice,
  25. // this list of conditions and the following disclaimer in the documentation
  26. // and/or other materials provided with the distribution.
  27. //
  28. // * The name of the copyright holders may not be used to endorse or promote products
  29. // derived from this software without specific prior written permission.
  30. //
  31. // This software is provided by the copyright holders and contributors "as is" and
  32. // any express or implied warranties, including, but not limited to, the implied
  33. // warranties of merchantability and fitness for a particular purpose are disclaimed.
  34. // In no event shall the Intel Corporation or contributors be liable for any direct,
  35. // indirect, incidental, special, exemplary, or consequential damages
  36. // (including, but not limited to, procurement of substitute goods or services;
  37. // loss of use, data, or profits; or business interruption) however caused
  38. // and on any theory of liability, whether in contract, strict liability,
  39. // or tort (including negligence or otherwise) arising in any way out of
  40. // the use of this software, even if advised of the possibility of such damage.
  41. //
  42. //M*/
  43. #ifndef __OPENCV_OBJDETECT_C_H__
  44. #define __OPENCV_OBJDETECT_C_H__
  45. #include "opencv2/core/core_c.h"
  46. #ifdef __cplusplus
  47. #include <deque>
  48. #include <vector>
  49. extern "C" {
  50. #endif
  51. /** @addtogroup objdetect_c
  52. @{
  53. */
  54. /****************************************************************************************\
  55. * Haar-like Object Detection functions *
  56. \****************************************************************************************/
  57. #define CV_HAAR_MAGIC_VAL 0x42500000
  58. #define CV_TYPE_NAME_HAAR "opencv-haar-classifier"
  59. #define CV_IS_HAAR_CLASSIFIER( haar ) \
  60. ((haar) != NULL && \
  61. (((const CvHaarClassifierCascade*)(haar))->flags & CV_MAGIC_MASK)==CV_HAAR_MAGIC_VAL)
  62. #define CV_HAAR_FEATURE_MAX 3
  63. typedef struct CvHaarFeature
  64. {
  65. int tilted;
  66. struct
  67. {
  68. CvRect r;
  69. float weight;
  70. } rect[CV_HAAR_FEATURE_MAX];
  71. } CvHaarFeature;
  72. typedef struct CvHaarClassifier
  73. {
  74. int count;
  75. CvHaarFeature* haar_feature;
  76. float* threshold;
  77. int* left;
  78. int* right;
  79. float* alpha;
  80. } CvHaarClassifier;
  81. typedef struct CvHaarStageClassifier
  82. {
  83. int count;
  84. float threshold;
  85. CvHaarClassifier* classifier;
  86. int next;
  87. int child;
  88. int parent;
  89. } CvHaarStageClassifier;
  90. typedef struct CvHidHaarClassifierCascade CvHidHaarClassifierCascade;
  91. typedef struct CvHaarClassifierCascade
  92. {
  93. int flags;
  94. int count;
  95. CvSize orig_window_size;
  96. CvSize real_window_size;
  97. double scale;
  98. CvHaarStageClassifier* stage_classifier;
  99. CvHidHaarClassifierCascade* hid_cascade;
  100. } CvHaarClassifierCascade;
  101. typedef struct CvAvgComp
  102. {
  103. CvRect rect;
  104. int neighbors;
  105. } CvAvgComp;
  106. /* Loads haar classifier cascade from a directory.
  107. It is obsolete: convert your cascade to xml and use cvLoad instead */
  108. CVAPI(CvHaarClassifierCascade*) cvLoadHaarClassifierCascade(
  109. const char* directory, CvSize orig_window_size);
  110. CVAPI(void) cvReleaseHaarClassifierCascade( CvHaarClassifierCascade** cascade );
  111. #define CV_HAAR_DO_CANNY_PRUNING 1
  112. #define CV_HAAR_SCALE_IMAGE 2
  113. #define CV_HAAR_FIND_BIGGEST_OBJECT 4
  114. #define CV_HAAR_DO_ROUGH_SEARCH 8
  115. CVAPI(CvSeq*) cvHaarDetectObjects( const CvArr* image,
  116. CvHaarClassifierCascade* cascade, CvMemStorage* storage,
  117. double scale_factor CV_DEFAULT(1.1),
  118. int min_neighbors CV_DEFAULT(3), int flags CV_DEFAULT(0),
  119. CvSize min_size CV_DEFAULT(cvSize(0,0)), CvSize max_size CV_DEFAULT(cvSize(0,0)));
  120. /* sets images for haar classifier cascade */
  121. CVAPI(void) cvSetImagesForHaarClassifierCascade( CvHaarClassifierCascade* cascade,
  122. const CvArr* sum, const CvArr* sqsum,
  123. const CvArr* tilted_sum, double scale );
  124. /* runs the cascade on the specified window */
  125. CVAPI(int) cvRunHaarClassifierCascade( const CvHaarClassifierCascade* cascade,
  126. CvPoint pt, int start_stage CV_DEFAULT(0));
  127. /** @} objdetect_c */
  128. #ifdef __cplusplus
  129. }
  130. CV_EXPORTS CvSeq* cvHaarDetectObjectsForROC( const CvArr* image,
  131. CvHaarClassifierCascade* cascade, CvMemStorage* storage,
  132. std::vector<int>& rejectLevels, std::vector<double>& levelWeightds,
  133. double scale_factor = 1.1,
  134. int min_neighbors = 3, int flags = 0,
  135. CvSize min_size = cvSize(0, 0), CvSize max_size = cvSize(0, 0),
  136. bool outputRejectLevels = false );
  137. #endif
  138. #endif /* __OPENCV_OBJDETECT_C_H__ */