Home | History | Annotate | Download | only in highgui

Lines Matching refs:img

249 CV_INLINE int iplWidth( const IplImage* img );
250 CV_INLINE int iplWidth( const IplImage* img )
252 return !img ? 0 : !img->roi ? img->width : img->roi->width;
255 CV_INLINE int iplHeight( const IplImage* img );
256 CV_INLINE int iplHeight( const IplImage* img )
258 return !img ? 0 : !img->roi ? img->height : img->roi->height;
365 virtual void CopyOf( IplImage* img, int desired_color = -1 );