/external/opencv3/apps/traincascade/ |
haarfeatures.h | 51 float calc( const cv::Mat &sum, const cv::Mat &tilted, size_t y) const; 54 bool tilted; member in class:CvHaarEvaluator::Feature 69 cv::Mat tilted; /* tilted sum images (each row represents image) */ member in class:CvHaarEvaluator 76 return !nf ? 0.0f : (features[featureIdx].calc( sum, tilted, sampleIdx)/nf); 81 const int* img = tilted ? _tilted.ptr<int>((int)y) : _sum.ptr<int>((int)y);
|
/external/opencv/cv/src/ |
cvsumpixels.cpp | 50 sumtype* tilted, int tiltedstep,\ 71 if( tilted ) \ 73 memset( tilted, 0, (size.width+1)*sizeof(tilted[0])); \ 74 tiltedstep /= sizeof(tilted[0]); \ 75 tilted += tiltedstep + 1; \ 78 if( sqsum == 0 && tilted == 0 ) \ 92 else if( tilted == 0 ) \ 123 sum[-1] = tilted[-1] = 0; \ 131 buf[x] = tilted[x] = t; 324 CvMat tilted_stub, *tilted = (CvMat*)tiltedSumImage; local [all...] |
mycvHaarDetectObjects.cpp | 107 CvMat sum, sqsum, tilted; member in struct:MyCvHidHaarClassifierCascade 221 int tilted = classifier->haar_feature[l].tilted; local 222 has_tilted_features |= tilted != 0; 226 (!tilted && 229 (tilted && (r.x - r.height < 0 || 639 CvMat tilted_stub, *tilted = (CvMat*)_tilted_sum; local 673 CV_CALL( tilted = cvGetMat( tilted, &tilted_stub, &coi1 )); 675 if( CV_MAT_TYPE(tilted->type) != CV_32SC1 880 CvMat *tilted = 0, *norm_img = 0, *sumcanny = 0, *img_small = 0; local [all...] |
cvhaar.cpp | 107 CvMat sum, sqsum, tilted; member in struct:CvHidHaarClassifierCascade 239 int tilted = classifier->haar_feature[l].tilted; local 240 has_tilted_features |= tilted != 0; 244 (!tilted && 247 (tilted && (r.x - r.height < 0 || 440 CvMat tilted_stub, *tilted = (CvMat*)_tilted_sum; local 474 CV_CALL( tilted = cvGetMat( tilted, &tilted_stub, &coi1 )); 476 if( CV_MAT_TYPE(tilted->type) != CV_32SC1 864 CvMat *temp = 0, *sum = 0, *tilted = 0, *sqsum = 0, *norm_img = 0, *sumcanny = 0, *img_small = 0; local [all...] |
/external/opencv3/modules/objdetect/include/opencv2/objdetect/ |
objdetect_c.h | 75 int tilted; member in struct:CvHaarFeature
|
/external/opencv3/modules/objdetect/src/ |
cascadedetect_convert.cpp | 57 #define ICV_HAAR_TILTED_NAME "tilted" 76 tilted = false; 83 bool tilted; member in struct:cv::haar_cvt::HaarFeature 157 f.tilted = (int)fnode[ICV_HAAR_TILTED_NAME] != 0; 256 if( f.tilted ) 257 newfs << "tilted" << 1;
|
cascadedetect.hpp | 266 #define CC_TILTED "tilted" 283 #define CV_TILTED_PTRS( p0, p1, p2, p3, tilted, rect, step ) \ 285 (p0) = tilted + (rect).x + (step) * (rect).y, \ 287 (p1) = tilted + (rect).x - (rect).height + (step) * ((rect).y + (rect).height), \ 289 (p2) = tilted + (rect).x + (rect).width + (step) * ((rect).y + (rect).width), \ 291 (p3) = tilted + (rect).x + (rect).width - (rect).height \ 309 #define CV_TILTED_OFS( p0, p1, p2, p3, tilted, rect, step ) \ 311 (p0) = tilted + (rect).x + (step) * (rect).y, \ 313 (p1) = tilted + (rect).x - (rect).height + (step) * ((rect).y + (rect).height), \ 315 (p2) = tilted + (rect).x + (rect).width + (step) * ((rect).y + (rect).width), 339 bool tilted; member in struct:cv::HaarEvaluator::Feature [all...] |
haar.cpp | 123 CvMat sum, sqsum, tilted; member in struct:CvHidHaarClassifierCascade 241 int tilted = classifier->haar_feature[l].tilted; local 242 has_tilted_features |= tilted != 0; 246 (!tilted && 249 (tilted && (r.x - r.height < 0 || 432 CvMat tilted_stub, *tilted = (CvMat*)_tilted_sum; local 466 tilted = cvGetMat( tilted, &tilted_stub, &coi1 ); 468 if( CV_MAT_TYPE(tilted->type) != CV_32SC1 1501 cv::Ptr<CvMat> temp, sum, tilted, sqsum, normImg, sumcanny, imgSmall; local [all...] |
/external/opencv3/modules/imgproc/src/ |
sumpixels.cpp | 80 int * tilted, size_t, 83 if (sqsum || tilted || cn != 1 || !haveSSE2) 149 QT* sqsum, size_t _sqsumstep, ST* tilted, size_t _tiltedstep, 157 tilted, _tiltedstep, 177 if( tilted ) 179 memset( tilted, 0, (size.width+cn)*sizeof(tilted[0])); 180 tilted += tiltedstep + cn; 183 if( sqsum == 0 && tilted == 0 ) 198 else if( tilted == 0 451 Mat src = _src.getMat(), sum =_sum.getMat(), sqsum, tilted; local 552 cv::Mat sqsum0, sqsum, tilted0, tilted; local [all...] |
/external/opencv/cv/include/ |
cvtypes.h | 329 int tilted; member in struct:CvHaarFeature
|
/external/opencv3/modules/java/src/ |
imgproc.cpp | 3073 Mat& tilted = *((Mat*)tilted_nativeObj); local 3097 Mat& tilted = *((Mat*)tilted_nativeObj); local [all...] |
/external/opencv3/modules/imgproc/misc/java/test/ |
ImgprocTest.java | 1241 Mat tilted = new Mat(); local 1266 Mat tilted = new Mat(); local [all...] |
/cts/apps/CtsVerifier/libs/ |
opencv3-android.jar | |