/external/opencv3/modules/videoio/src/ |
cap_v4l.cpp | 976 cvSize( capture->form.fmt.pix.width, [all...] |
cap_gstreamer.cpp | 307 frame = cvCreateImageHeader(cvSize(width, height), IPL_DEPTH_8U, depth); 1041 double fps, CvSize frameSize, bool isColor ); [all...] |
cap_msmf.cpp | [all...] |
/external/opencv/cv/include/ |
cv.h | 115 const CvSize* layer_sizes CV_DEFAULT(0), 465 CvSize win_size, CvArr* velx, CvArr* vely ); 469 CvSize block_size, CvSize shift_size, 470 CvSize max_range, int use_previous, 493 CvSize win_size, 508 CvSize win_size, int level, [all...] |
/external/opencv/cv/src/ |
cvmorph.cpp | 132 CvSize _ksize, CvPoint _anchor, 159 CvSize _ksize, CvPoint _anchor, 293 bool _is_separable, CvSize _ksize, [all...] |
cvfilter.cpp | 69 bool _is_separable, CvSize _ksize, CvPoint _anchor, 125 bool _is_separable, CvSize _ksize, CvPoint _anchor, 677 CvSize _ksize; 892 bool _is_separable, CvSize _ksize, [all...] |
cvfundam.cpp | 60 CvModelEstimator2(int _modelPoints, CvSize _modelSize, int _maxBasicSolutions); 84 CvSize modelSize; 90 CvModelEstimator2::CvModelEstimator2(int _modelPoints, CvSize _modelSize, int _maxBasicSolutions) 439 : CvModelEstimator2(_modelPoints, cvSize(3,3), 1) 672 : CvModelEstimator2( _modelPoints, cvSize(3,3), _modelPoints == 7 ? 3 : 1 ) [all...] |
cvcontours.cpp | 158 CvSize img_size; /* ROI size */ 199 CvSize size; 216 size = cvSize( mat->width, mat->height ); [all...] |
cvhaar.cpp | 192 CvSize orig_window_size; 859 int min_neighbors, int flags, CvSize min_size ) [all...] |
/external/opencv/cvaux/src/ |
cvhmm1d.cpp | 157 CvSize num_obs, int obs_size ) [all...] |
cvvecfacetracking.cpp | 150 imgGray = cvCreateImage(cvSize(imgGray->width, imgGray->height), 8, 1); 151 imgThresh = cvCreateImage(cvSize(imgGray->width, imgGray->height), 8, 1); 161 CvSize sz = {img->width, img->height}; [all...] |
cvepilines.cpp | 667 int icvGetAngleLine( CvPoint2D64d startPoint, CvSize imageSize,CvPoint2D64d *point1,CvPoint2D64d *point2) 794 void icvGetCommonArea( CvSize imageSize, [all...] |
/external/opencv3/modules/calib3d/src/ |
calibinit.cpp | 170 CvCBCorner **out_corners, CvSize pattern_size ); 173 CvCBQuad **quads, CvSize pattern_size ); 177 CvSize pattern_size, CvMemStorage* storage ); 192 static int icvCheckBoardMonotony( CvPoint2D32f* corners, CvSize pattern_size ); 228 int cvFindChessboardCorners( const void* arr, CvSize pattern_size, 552 cvSize(wsize, wsize), cvSize(-1,-1), cvTermCriteria(CV_TERMCRIT_EPS+CV_TERMCRIT_ITER, 15, 0.1)); 583 icvCheckBoardMonotony( CvPoint2D32f* corners, CvSize pattern_size ) 627 CvSize pattern_size, CvMemStorage* storage ) [all...] |
/external/opencv3/modules/highgui/src/ |
window_gtk.cpp | 231 static CvSize cvImageWidget_calc_size( int im_width, int im_height, int max_width, int max_height ){ 235 return cvSize( max_width, cvRound(max_width/aspect) ); 237 return cvSize( cvRound(max_height*aspect), max_height ); 331 CvSize scaled_image_size = cvImageWidget_calc_size( image_widget->original_image->cols, [all...] |
/external/opencv/cxcore/src/ |
cxarray.cpp | 595 iterator->size = cvSize(size,1); 1180 cvGetRawData( const CvArr* arr, uchar** data, int* step, CvSize* roi_size ) 1213 *roi_size = cvSize( img->roi->width, img->roi->height ); 1217 *roi_size = cvSize( img->width, img->height ); [all...] |
cxdrawing.cpp | 81 cvClipLine( CvSize img_size, CvPoint* pt1, CvPoint* pt2 ) 311 CvSize size = cvGetMatSize( img ); 574 CvSize size = cvGetMatSize( img ); 851 cvEllipse2Poly( CvPoint center, CvSize axes, int angle, 912 icvEllipseEx( CvMat* img, CvPoint center, CvSize axes, [all...] |
cxpersistence.cpp | [all...] |
/external/opencv3/modules/core/src/ |
array.cpp | 494 iterator->size = cvSize(size,1); 1009 cvGetRawData( const CvArr* arr, uchar** data, int* step, CvSize* roi_size ) 1038 *roi_size = cvSize( img->roi->width, img->roi->height ); 1042 *roi_size = cvSize( img->width, img->height ); [all...] |
persistence.cpp | [all...] |
/external/opencv3/modules/imgcodecs/src/ |
utils.cpp | 52 CvSize size, int _swap_rb ) 71 CvSize size, int ncn, int _swap_rb ) 90 CvSize size, int _swap_rb ) 108 uchar* bgr, int bgr_step, CvSize size ) 123 ushort* bgr, int bgr_step, CvSize size ) 139 CvSize size, int _swap_rb ) 159 CvSize size, int _swap_rb ) 178 uchar* rgba, int rgba_step, CvSize size ) 196 ushort* rgba, int rgba_step, CvSize size ) 216 uchar* rgb, int rgb_step, CvSize size [all...] |
/external/opencv/cxcore/include/ |
cxtypes.h | 1024 /******************************** CvSize's & CvBox **************************************/ 1031 CvSize; 1033 CV_INLINE CvSize cvSize( int width, int height ) 1035 CvSize s; [all...] |
/external/opencv3/modules/core/include/opencv2/core/ |
types_c.h | 1005 /******************************** CvSize's & CvBox **************************************/ 1007 typedef struct CvSize 1013 CvSize(int w = 0, int h = 0): width(w), height(h) {} 1015 CvSize(const cv::Size_<_Tp>& sz): width(cv::saturate_cast<int>(sz.width)), height(cv::saturate_cast<int>(sz.height)) {} 1020 CvSize; 1022 /** constructs CvSize structure. */ 1023 CV_INLINE CvSize cvSize( int width, int height ) 1025 CvSize s; [all...] |
/external/opencv3/modules/imgproc/src/ |
contours.cpp | 144 CvSize img_size; /* ROI size */ 200 CvSize size = cvSize( mat->width, mat->height ); [all...] |
/external/opencv3/modules/imgproc/test/ |
test_histograms.cpp | 81 CvSize img_size; [all...] |
/external/opencv3/modules/objdetect/test/ |
test_cascadeandhog.cpp | 430 Ptr<CvHaarClassifierCascade> c_cascade(cvLoadHaarClassifierCascade(filename.c_str(), cvSize(0,0))); [all...] |