/external/opencv/cvaux/src/ |
D | cvlines.cpp | 320 icvDeleteMoire8u( uchar * img, int img_step, CvSize img_size, int cn ) in icvDeleteMoire8u() argument 325 if( !img || img_size.width <= 0 || img_size.height <= 0 || img_step < img_size.width * 3 ) in icvDeleteMoire8u() 328 img_size.width *= cn; in icvDeleteMoire8u() 330 for( y = 1; y < img_size.height; y++, src = dst, dst += img_step ) in icvDeleteMoire8u() 335 for( x = 0; x < img_size.width; x++ ) in icvDeleteMoire8u() 342 for( x = 0; x < img_size.width; x += 3 ) in icvDeleteMoire8u() 375 CvSize img_size; in cvDeleteMoire() local 381 cvGetImageRawData( img, &img_data, &img_step, &img_size ); in cvDeleteMoire() 388 CV_CALL( icvDeleteMoire8u( img_data, img_step, img_size, img->nChannels )); in cvDeleteMoire() 413 CvSize img_size; in cvPreWarpImage() local [all …]
|
D | cveigenobjects.cpp | 1205 CvSize img_size = avg_size, old_size = avg_size; in cvCalcCovarMatrixEx() local 1215 cvGetImageRawData( img, &img_data, &img_step, &img_size ); in cvCalcCovarMatrixEx() 1218 if( img_size != avg_size || img_size != old_size ) in cvCalcCovarMatrixEx() 1226 old_size = img_size; in cvCalcCovarMatrixEx()
|
/external/opencv/cv/src/ |
D | cvcontours.cpp | 158 CvSize img_size; /* ROI size */ member 236 scanner->img_size.width = size.width - 1; /* exclude rightest column */ in cvStartFindContours() 237 scanner->img_size.height = size.height - 1; /* exclude bottomost row */ in cvStartFindContours() 863 width = scanner->img_size.width; in cvFindNextContour() 864 height = scanner->img_size.height; in cvFindNextContour() 1154 CvSize img_size; in icvFindContoursInInterval() local 1201 img_size = cvGetMatSize( mat ); in icvFindContoursInInterval() 1222 for( j = 0; j < img_size.width; ) in icvFindContoursInInterval() 1224 for( ; j < img_size.width && !ICV_IS_COMPONENT_POINT(src_data[j]); j++ ) in icvFindContoursInInterval() 1226 if( j == img_size.width ) in icvFindContoursInInterval() [all …]
|
D | cvtemplmatch.cpp | 398 CvSize img_size = cvGetMatSize(img), templ_size = cvGetMatSize(templ); in cvMatchTemplate() local 401 img_size, templ->data.ptr, in cvMatchTemplate()
|
/external/opencv/ml/src/ |
D | mlcnn.cpp | 129 if( img_size != first_layer->input_height*first_layer->input_width ) \ 175 int img_size; 185 &n_images, &img_size, &img_size, &responses, 230 const int img_size = img_width*img_height; 232 CvMat image = cvMat( 1, img_size, CV_32FC1 ); 329 int img_height, img_width, img_size; 343 img_size = img_height*img_width; 345 cvPreparePredictData( _image, img_size, 0, nclasses, probs, &img_data ); 350 CV_CALL(X[0] = cvCreateMat( img_size,1,CV_32FC1 )); 357 image = cvMat( 1, img_size, CV_32FC1, img_data ); [all …]
|
/external/valgrind/coregrind/m_debuginfo/ |
D | readmacho.c | 175 if (ML_(img_size)(sli.img) < sizeof(struct fat_header)) { in map_image_aboard() 187 if (ML_(img_size)(sli.img) < sizeof(struct fat_header) in map_image_aboard() 219 if (ML_(img_size)(sli.img) < arch.offset + arch.size) { in map_image_aboard() 239 vg_assert(ML_(img_size)(sli.img) >= sizeof(struct fat_header)); in map_image_aboard() 246 if (sli.szB > ML_(img_size)(sli.img)) { in map_image_aboard() 251 if (sli.ioff >= 0 && sli.ioff + sli.szB <= ML_(img_size)(sli.img)) { in map_image_aboard() 275 vg_assert(ML_(img_size)(sli.img) > 0); in map_image_aboard() 279 vg_assert(sli.ioff + sli.szB <= ML_(img_size)(sli.img)); in map_image_aboard()
|
D | priv_image.h | 78 DiOffT ML_(img_size)(const DiImage* img); 185 vg_assert(cur.ioff + size <= ML_(img_size)(cur.img)); in ML_() 195 return mk_DiSlice(img, 0, ML_(img_size)(img)); in ML_()
|
D | image.c | 788 DiOffT ML_(img_size)(const DiImage* img) in ML_() argument 1004 DiOffT img_szB = ML_(img_size)(img); in ML_()
|
D | readelf.c | 1596 (ULong)ML_(img_size)(mimg)); in ML_() 1874 if ((foff >= ML_(img_size)(mimg)) in ML_() 1875 || (foff + (bits ? size : 0) > ML_(img_size)(mimg))) { in ML_() 2389 + (nobits ? 0 : _sec_escn.szB) > ML_(img_size)(mimg) ) { \ in ML_() 2684 + (nobits ? 0 : _sec_escn.szB) > ML_(img_size)(dimg)) { \ in ML_()
|
/external/mesa3d/src/gallium/drivers/svga/ |
D | svga_screen_cache.c | 66 unsigned img_size = ((w + bw - 1) / bw) * ((h + bh - 1) / bh) * d * bpb; in surface_size() local 67 total_size += img_size; in surface_size()
|
/external/opencv/cxcore/src/ |
D | cxdrawing.cpp | 81 cvClipLine( CvSize img_size, CvPoint* pt1, CvPoint* pt2 ) in cvClipLine() argument 91 int right = img_size.width-1, bottom = img_size.height-1; in cvClipLine()
|
/external/opencv/cvaux/include/ |
D | cvaux.h | 1045 CVAPI(void) cvMakeScanlines( const CvMatrix3* matrix, CvSize img_size,
|
/external/opencv/cv/include/ |
D | cv.h | 1339 const CvMat* F, CvSize img_size, in LOAD_CHDL()
|
/external/opencv/cxcore/include/ |
D | cxcore.h | 1345 CVAPI(int) cvClipLine( CvSize img_size, CvPoint* pt1, CvPoint* pt2 );
|