资源简介
opencv 2计算机视觉编程手册_中文_+图片+源码
内容详尽
代码片段和文件信息
/*------------------------------------------------------------------------------------------*\
This file contains material supporting chapter 1 of the cookbook:
Computer Vision Programming using the OpenCV Library.
by Robert Laganiere Packt Publishing 2011.
This program is free software; permission is hereby granted to use copy modify
and distribute this source code or portions thereof for any purpose without fee
subject to the restriction that the copyright notice may not be removed
or altered from any source or altered source distribution.
The software is released on an as-is basis and without any warranties of any kind.
In particular the software is not guaranteed to be fault-tolerant or free from failure.
The author disclaims all warranties with regard to this software any use
and any consequent failure is purely the responsibility of the user.
Copyright (C) 2010-2011 Robert Laganiere www.laganiere.name
\*------------------------------------------------------------------------------------------*/
#include
#include
int main() {
// read an image
cv::Mat image= cv::imread(“img.jpg“);
// create image window named “My Image“
cv::namedWindow(“My Image“);
// show the image on window
cv::imshow(“My Image“ image);
// wait key for 5000 ms
cv::waitKey(5000);
return 1;
}
相关资源
- opencv-3.4.7.zip
- 深入理解OpenCV 实用计算机视觉项目解
- vgg_generated_120.i等.tar.gz
- opencv4.5.0-cmake错误解决
- OpenCV 3.1 离线文档(包括contrib部分)
- QT实现的Opencv图像处理、点云显示、演
- 《opencv3编程入门》 毛星云完整版--
- 自定义图像识别
- opencv2.4.1-源码
- OpenCV-2.4.1_build&tbb;_vs_(x64)05/08/10三种
- OpenCvSharp 读摄像头及图像拼接功能
- opencv 3.1.0 3rdparty\\ffmpeg\\download
- 《OpenCV图像处理编程》完整版(高清
- 基于模板匹配的车牌识别系统实例9
- opencv相关的书籍
- 鱼眼摄像头标定与畸变校正双OPENCV版
- 用openCV实现图片的放大缩小、图片旋
- opencv-2.4.6源码
- ROS 入门 中文版
- Windows环境使用VS2017编译opencv-4.2.0和
- opencv-3.1.0-linux版本
- OpenCV2.3.1 win版安装包2
- Opencv去噪声程序
- OpenCV 3.2.0
- OpenCV3编程入门 完整清晰PDF
- LearningOpenCV3.rar
- OpenCV3编程入门
- 深入理解OpenCV 完整版
- opencv的 opencv_contrib-4.0.1源码
- 用两个摄像头实现,双目标定,双目
评论
共有 条评论