这句话应该不会有错的。
可能引起错误的原因:
src未读入。你直接cvshowimage("src",src)看看能不能显示
src图片太大。
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中文网站
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)