刚接触opencv,请问Cvrect和Rect什么区别啊?cvresize和resize?怎么用?谢谢!最好能详细点(要不看不懂)
1个回答
展开全部
Cvrect和Rect以及cvresize和resize都是表示同一个东西,前者都是指cvrect,后者都是指cvresize,如果在程序开始写上 using namespace cv;则cvrect可以简写为rect,cvresize可以简写为resize,如果没有写上的using namespace cv;那就用cv.......
具体用法:
cvrect:
CvRect 矩形框的偏移和大小
typedef struct CvRect
{
int x; /* 方形的最左角的x-坐标 */
int y; /* 方形的最上或者最下角的y-坐标 */
int width; /* 宽 */
int height; /* 高 */
}
CvRect;
cvresize:void cvResize( const CvArr* src, CvArr* dst, int interpolation=CV_INTER_LINEAR );
可以查看opencv中文网站
具体用法:
cvrect:
CvRect 矩形框的偏移和大小
typedef struct CvRect
{
int x; /* 方形的最左角的x-坐标 */
int y; /* 方形的最上或者最下角的y-坐标 */
int width; /* 宽 */
int height; /* 高 */
}
CvRect;
cvresize:void cvResize( const CvArr* src, CvArr* dst, int interpolation=CV_INTER_LINEAR );
可以查看opencv中文网站
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询