IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 人工智能 -> opencv 显示图片 -> 正文阅读

[人工智能]opencv 显示图片

目录

opencv显示图片

imread,读取图片

?namedWindow,创建窗口

imshow,显示图片?

waitKey,等待窗口关闭

destroyAllWindows,销毁窗口


opencv显示图片

#include <opencv2/opencv.hpp>

using namespace cv;

int main(int argc, char** argv) {
	Mat src = imread("E://images//test.jpg");
	if (src.empty()) {
		printf("未能找到图片\n");
		return -1;
	}
	namedWindow("显示图片", WINDOW_AUTOSIZE);
	imshow("显示图片", src);
	waitKey(0);
	destroyAllWindows();
	return 0;
}

imread,读取图片

Mat imread( const String& filename, int flags = IMREAD_COLOR );

参数一 filename类型const String& ,是图片的位置,不能直接复制图片的位置E:\images\test.jpg,应该将'\'转换为‘/’或“//”;

参数二 flags 类型int,图片加载类型

常用有

  • 默认为IMREAD_COLOR,加载彩色图片
  • IMREAD_UNCHANGED 原样加载,新版已废弃
  • IMREAD_GRAYSCALE转换为灰色图片
  • IMREAD_ANYDEPTH 加载原深度
  • IMREAD_ANYCOLOR 加载原颜色
-1IMREAD_UNCHANGED??????????If set, return the loaded image as is (with alpha channel, otherwise it gets cropped). Ignore EXIF orientation.
0IMREAD_GRAYSCALE??????????If set, always convert image to the single channel grayscale image (codec internal conversion).
1IMREAD_COLOR??????????????If set, always convert image to the 3 channel BGR color image.
2IMREAD_ANYDEPTH???????????If set, return 16-bit/32-bit image when the input has the corresponding depth, otherwise convert it to 8-bit.
4IMREAD_ANYCOLOR???????????If set, the image is read in any possible color format.
8IMREAD_LOAD_GDAL??????????If set, use the gdal driver for loading the image.
16IMREAD_REDUCED_GRAYSCALE_2If set, always convert image to the single channel grayscale image and the image size reduced 1/2.
17IMREAD_REDUCED_COLOR_2????If set, always convert image to the 3 channel BGR color image and the image size reduced 1/2.
32IMREAD_REDUCED_GRAYSCALE_4If set, always convert image to the single channel grayscale image and the image size reduced 1/4.
33IMREAD_REDUCED_COLOR_4????If set, always convert image to the 3 channel BGR color image and the image size reduced 1/4.
64IMREAD_REDUCED_GRAYSCALE_8If set, always convert image to the single channel grayscale image and the image size reduced 1/8.
65IMREAD_REDUCED_COLOR_8????If set, always convert image to the 3 channel BGR color image and the image size reduced 1/8.
128IMREAD_IGNORE_ORIENTATION?If set, do not rotate the image according to EXIF's orientation flag.

?namedWindow,创建窗口

void namedWindow(const String& winname, int flags = WINDOW_AUTOSIZE);

?参数一winname类型const String& ,窗口名称

参数二flags类型flags,窗口类型

WINDOW_NORMAL?????the user can resize the window (no constraint) / also use to switch a fullscreen window to a normal size.
WINDOW_AUTOSIZE???the user cannot resize the window, the size is constrainted by the image displayed.
WINDOW_OPENGL?????window with opengl support.
WINDOW_FULLSCREEN?change the window to fullscreen.
WINDOW_FREERATIO??the image expends as much as it can (no ratio constraint).
WINDOW_KEEPRATIO??the ratio of the image is respected.
WINDOW_GUI_EXPANDEDstatus bar and tool bar
WINDOW_GUI_NORMAL?old fashious way

imshow,显示图片?

void imshow(const String& winname, InputArray mat);

?参数一winname类型const String& ,窗口名称

参数二mat类型InputArray,显示图片

waitKey,等待窗口关闭

int waitKey(int delay = 0);

参数delay,等待用户按键时间,单位毫秒,在delay时间内用户按键或等待时间超过delay,窗口自动退出,0表示一直等待用户按键

destroyAllWindows,销毁窗口

void destroyAllWindows();

  人工智能 最新文章
2022吴恩达机器学习课程——第二课(神经网
第十五章 规则学习
FixMatch: Simplifying Semi-Supervised Le
数据挖掘Java——Kmeans算法的实现
大脑皮层的分割方法
【翻译】GPT-3是如何工作的
论文笔记:TEACHTEXT: CrossModal Generaliz
python从零学(六)
详解Python 3.x 导入(import)
【答读者问27】backtrader不支持最新版本的
上一篇文章      下一篇文章      查看所有文章
加:2022-07-04 22:54:12  更:2022-07-04 22:55:23 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/26 0:30:32-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码