- Timestamp:
- 11/03/08 17:41:32 (5 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
lang/cpluspluscli/OpenCvSharp/trunk/OpenCvSharp/CvHistogram.cpp
r21994 r22623 6 6 #include "StdAfx.h" 7 7 #include "CvHistogram.h" 8 #include " OpenCV.h"8 #include "CV.h" 9 9 10 10 //typedef struct CvHistogram __CvHistogram; … … 122 122 void CvHistogram::CalcArr( N::CvArr^ arr ) 123 123 { 124 OpenCV::cvCalcArrHist(arr, this);124 CV::CalcArrHist(arr, this); 125 125 } 126 126 /// <summary> … … 132 132 void CvHistogram::CalcArr( N::CvArr^ arr, Int32 accumulate ) 133 133 { 134 OpenCV::cvCalcArrHist(arr, this, accumulate);134 CV::CalcArrHist(arr, this, accumulate); 135 135 } 136 136 /// <summary> … … 143 143 void CvHistogram::CalcArr( N::CvArr^ arr, Int32 accumulate, N::CvArr^ mask ) 144 144 { 145 OpenCV::cvCalcArrHist(arr, this, accumulate, mask);145 CV::CalcArrHist(arr, this, accumulate, mask); 146 146 } 147 147 /// <summary> … … 152 152 void CvHistogram::CalcArr( array<N::CvArr^>^ arr ) 153 153 { 154 OpenCV::cvCalcArrHist(arr, this);154 CV::CalcArrHist(arr, this); 155 155 } 156 156 /// <summary> … … 162 162 void CvHistogram::CalcArr( array<N::CvArr^>^ arr, Int32 accumulate ) 163 163 { 164 OpenCV::cvCalcArrHist(arr, this, accumulate);164 CV::CalcArrHist(arr, this, accumulate); 165 165 } 166 166 /// <summary> … … 173 173 void CvHistogram::CalcArr( array<N::CvArr^>^ arr, Int32 accumulate, N::CvArr^ mask ) 174 174 { 175 OpenCV::cvCalcArrHist(arr, this, accumulate, mask);175 CV::CalcArrHist(arr, this, accumulate, mask); 176 176 } 177 177 #pragma endregion … … 184 184 void CvHistogram::Calc( N::IplImage^ image ) 185 185 { 186 OpenCV::cvCalcHist(image, this);186 CV::CalcHist(image, this); 187 187 } 188 188 /// <summary> … … 194 194 void CvHistogram::Calc( N::IplImage^ image, Int32 accumulate ) 195 195 { 196 OpenCV::cvCalcHist(image, this, accumulate);196 CV::CalcHist(image, this, accumulate); 197 197 } 198 198 /// <summary> … … 205 205 void CvHistogram::Calc( N::IplImage^ image, Int32 accumulate, N::CvArr^ mask ) 206 206 { 207 OpenCV::cvCalcHist(image, this, accumulate, mask);207 CV::CalcHist(image, this, accumulate, mask); 208 208 } 209 209 /// <summary> … … 214 214 void CvHistogram::Calc( array<N::IplImage^>^ image ) 215 215 { 216 OpenCV::cvCalcHist(image, this);216 CV::CalcHist(image, this); 217 217 } 218 218 /// <summary> … … 224 224 void CvHistogram::Calc( array<N::IplImage^>^ image, Int32 accumulate) 225 225 { 226 OpenCV::cvCalcHist(image, this, accumulate);226 CV::CalcHist(image, this, accumulate); 227 227 } 228 228 /// <summary> … … 235 235 void CvHistogram::Calc( array<N::IplImage^>^ image, Int32 accumulate, N::CvArr^ mask ) 236 236 { 237 OpenCV::cvCalcHist(image, this, accumulate, mask);237 CV::CalcHist(image, this, accumulate, mask); 238 238 } 239 239 #pragma endregion … … 316 316 void CvHistogram::GetMinMaxValue( [Out] Single% min_value, [Out] Single% max_value ) 317 317 { 318 OpenCV::cvGetMinMaxHistValue(this, min_value, max_value);318 CV::GetMinMaxHistValue(this, min_value, max_value); 319 319 } 320 320 /// <summary> … … 328 328 void CvHistogram::GetMinMaxValue( [Out] Single% min_value, [Out] Single% max_value, [Out] Int32% min_idx, [Out] Int32% max_idx ) 329 329 { 330 OpenCV::cvGetMinMaxHistValue(this, min_value, max_value, min_idx, max_idx);330 CV::GetMinMaxHistValue(this, min_value, max_value, min_idx, max_idx); 331 331 } 332 332 #pragma endregion
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)