Searched refs:img_size (Results 1 - 14 of 14) sorted by relevance

/external/opencv/cvaux/src/
H A Dcvlines.cpp314 // img_size - width and height of the image in pixels
320 icvDeleteMoire8u( uchar * img, int img_step, CvSize img_size, int cn ) argument
325 if( !img || img_size.width <= 0 || img_size.height <= 0 || img_step < img_size.width * 3 )
328 img_size.width *= cn;
330 for( y = 1; y < img_size.height; y++, src = dst, dst += img_step )
335 for( x = 0; x < img_size.width; x++ )
342 for( x = 0; x < img_size.width; x += 3 )
375 CvSize img_size; local
413 CvSize img_size; local
457 CvSize img_size; local
[all...]
H A Dcveigenobjects.cpp1205 CvSize img_size = avg_size, old_size = avg_size; local
1215 cvGetImageRawData( img, &img_data, &img_step, &img_size );
1218 if( img_size != avg_size || img_size != old_size )
1226 old_size = img_size;
/external/opencv/cv/src/
H A Dcvcontours.cpp158 CvSize img_size; /* ROI size */ member in struct:_CvContourScanner
236 scanner->img_size.width = size.width - 1; /* exclude rightest column */
237 scanner->img_size.height = size.height - 1; /* exclude bottomost row */
863 width = scanner->img_size.width;
864 height = scanner->img_size.height;
1154 CvSize img_size; local
1201 img_size = cvGetMatSize( mat );
1222 for( j = 0; j < img_size.width; )
1224 for( ; j < img_size.width && !ICV_IS_COMPONENT_POINT(src_data[j]); j++ )
1226 if( j == img_size
[all...]
H A Dcvtemplmatch.cpp398 CvSize img_size = cvGetMatSize(img), templ_size = cvGetMatSize(templ); local
401 img_size, templ->data.ptr,
/external/valgrind/coregrind/m_debuginfo/
H A Dpriv_image.h78 DiOffT ML_(img_size)(const DiImage* img);
185 vg_assert(cur.ioff + size <= ML_(img_size)(cur.img));
195 return mk_DiSlice(img, 0, ML_(img_size)(img));
H A Dreadmacho.c175 if (ML_(img_size)(sli.img) < sizeof(struct fat_header)) {
187 if (ML_(img_size)(sli.img) < sizeof(struct fat_header)
219 if (ML_(img_size)(sli.img) < arch.offset + arch.size) {
239 vg_assert(ML_(img_size)(sli.img) >= sizeof(struct fat_header));
246 if (sli.szB > ML_(img_size)(sli.img)) {
251 if (sli.ioff >= 0 && sli.ioff + sli.szB <= ML_(img_size)(sli.img)) {
275 vg_assert(ML_(img_size)(sli.img) > 0);
279 vg_assert(sli.ioff + sli.szB <= ML_(img_size)(sli.img));
H A Dreadelf.c1596 (ULong)ML_(img_size)(mimg));
1874 if ((foff >= ML_(img_size)(mimg))
1875 || (foff + (bits ? size : 0) > ML_(img_size)(mimg))) {
2389 + (nobits ? 0 : _sec_escn.szB) > ML_(img_size)(mimg) ) { \
2684 + (nobits ? 0 : _sec_escn.szB) > ML_(img_size)(dimg)) { \
H A Dimage.c788 DiOffT ML_(img_size)(const DiImage* img) function
1004 DiOffT img_szB = ML_(img_size)(img);
/external/opencv/ml/src/
H A Dmlcnn.cpp129 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,
[all...]
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_screen_cache.c66 unsigned img_size = ((w + bw - 1) / bw) * ((h + bh - 1) / bh) * d * bpb; local
67 total_size += img_size;
/external/opencv/cxcore/src/
H A Dcxdrawing.cpp81 cvClipLine( CvSize img_size, CvPoint* pt1, CvPoint* pt2 ) argument
91 int right = img_size.width-1, bottom = img_size.height-1;
/external/opencv/cvaux/include/
H A Dcvaux.h1045 CVAPI(void) cvMakeScanlines( const CvMatrix3* matrix, CvSize img_size,
/external/opencv/cv/include/
H A Dcv.h1339 const CvMat* F, CvSize img_size,
/external/opencv/cxcore/include/
H A Dcxcore.h1344 (0<=x<img_size.width, 0<=y<img_size.height). */
1345 CVAPI(int) cvClipLine( CvSize img_size, CvPoint* pt1, CvPoint* pt2 );

Completed in 279 milliseconds