1 Star 0 Fork 0

Robin/Learn-OpenCV-cpp-in-4-Hours

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Chapter3.cpp 585 Bytes
一键复制 编辑 原始数据 按行查看 历史
Murtaza Hassan 提交于 2020-12-12 15:30 . Add files via upload
#include <opencv2/imgcodecs.hpp>
#include <opencv2/highgui.hpp>
#include <opencv2/imgproc.hpp>
#include <iostream>
using namespace cv;
using namespace std;
/////////////// Resize and Crop //////////////////////
void main() {
string path = "Resources/test.png";
Mat img = imread(path);
Mat imgResize, imgCrop;
//cout << img.size() << endl;
resize(img, imgResize, Size(),0.5,0.5);
Rect roi(200, 100, 300, 300);
imgCrop = img(roi);
imshow("Image", img);
imshow("Image Resize", imgResize);
imshow("Image Crop", imgCrop);
waitKey(0);
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Robin-yuetb_private-master/Learn-OpenCV-cpp-in-4-Hours.git
git@gitee.com:Robin-yuetb_private-master/Learn-OpenCV-cpp-in-4-Hours.git
Robin-yuetb_private-master
Learn-OpenCV-cpp-in-4-Hours
Learn-OpenCV-cpp-in-4-Hours
main

搜索帮助