2D图像处理:学习中问题汇总

文章目录

  • 1. 图像扩充
  • 2. 绕着某点旋转平移

1. 图像扩充

cv::copyMakeBorder(inputImg, rotatedImg, expanddingWidth, expanddingWidth, 
					expanddingWidth,expanddingWidth, cv::BORDER_CONSTANT);

2. 绕着某点旋转平移

const cv

你可能感兴趣的:(2D视觉,算法,opencv,计算机视觉,图像处理)