登录 注册
当前位置:主页 > 资源下载 > 50 > C++程序实现图像缩放

C++程序实现图像缩放

  • 更新:2024-09-05 17:01:44
  • 大小:1.49MB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:C++ - 后端
  • 格式:RAR

资源介绍

图像尺寸改变 #include "stdafx.h"//这句头文件一定要放在最上面,否则很容易报错 #include "opencv2/imgproc/imgproc.hpp" #include "opencv2/highgui/highgui.hpp" #include #include using namespace cv; using namespace std; #define DST_IMG_WIDTH 20 //需要调整图片后的尺寸宽度 #define SRC_IMG_HEIGH 20 //需要调整图片后的尺寸高度