opencv 部分操作代码
摘要:1、赋值 cv::Mat t33 = (cv::Mat_<float>(1, 3) << 0.0f, 0.0f, 1.0f); 2、链接 cv::vconcat(r1, r2, R);//垂直方向来concat,cols要一致 cv::hconcat(r1, r2, R);//水平方向来concat
阅读全文
posted @
2023-07-26 10:53
WenJXUST
阅读(10)
推荐(0) 编辑
opencv 407 resize 类型
摘要:enum InterpolationFlags{ /** nearest neighbor interpolation */ INTER_NEAREST = 0, /** bilinear interpolation */ INTER_LINEAR = 1, /** bicubic interpol
阅读全文
posted @
2023-04-21 10:24
WenJXUST
阅读(23)
推荐(0) 编辑