python opencv2_Python + OpenCV2 系列:2 - 图片操作

这些相当于我的学习笔记,所以并没有很强的结构性和很全的介绍,请见谅。

1. 读取/写入图像

下面是一个简短的载入图像、打印尺寸、转换格式及保存图像为.png的例子:

#-*- coding: utf-8 -*-

importcv2

import numpy as np#读入图像

im = cv2.imread('../data/empire.jpg')#打印图像尺寸

h, w = im.shape[:2]printh, w#保存原jpg格式的图像为png格式图像

cv2.imwrite('../images/ch10/ch10_P210_Reading-and-Writing-Images.png',im)

# 注:imread默认读取的是RGB格式,所以即使原图像是灰度图,读出来仍然是三个通道,所以,在imread之后可以添加参数

# 注:这里是相对路径: \与/是没有区别的,‘’ 和 “” 是没有区别的。 ../表示返回到上一级目录下,./表示与该源码文件同一级目录下。

"\"这种斜杠使用需要用转义字符,即"\\"表示单“\”。而“/” 不需要转义字符,即单个斜杠就可以了。所以在使用时,形式如下:

im = cv2.imread('../data/empire.jpg')

im= cv2.imread('..\\data\\empire.jpg')

# 注:函数imread()将图像返回为一个标准的NumPy数组。

1.1 相关注释

cv2.imread

Python:cv2.imread(filename[, flags])

Parameters:

filename – Name of file to be loaded.

flags –

Flags specifying the color type of a loaded image:

CV_LOAD_IMAGE_ANYDEPTH - If set, return 16-bit/32-bit image when the input has the corresponding depth, otherwise convert it to 8-bit.

CV_LOAD_IMAGE_COLOR - If set, always convert image to the color one

CV_LOAD_IMAGE_GRAYSCALE - If set, always convert image to the grayscale one

>0 Return a 3-channel color image.Note

In the current implementation the alpha channel, if any, is stripped from the output image. Use negative value if you need the alpha channel.

=0 Return a grayscale image. 如果是灰度图就用这个就好了。例如:cv2.imread'../data/empire.jpg',0)

<0 Return the loaded image as is (with alpha channel).

cv2.imwrite

Python:cv2.imwrite(filename, img[, params])

Parameters:

filename – Name of the file.

image – Image to be saved.

params –

Format-specific save parameters encoded as pairs paramId_1, paramValue_1, paramId_2, paramValue_2, ... . The following parameters are currently supported:

For JPEG, it can be a quality ( CV_IMWRITE_JPEG_QUALITY ) from 0 to 100 (the higher is the better). Default value is 95.

For PNG, it can be the compression level ( CV_IMWRITE_PNG_COMPRESSION ) from 0 to 9. A higher value means a smaller size and longer compression time. Default value is 3.

For PPM, PGM, or PBM, it can be a binary format flag ( CV_IMWRITE_PXM_BINARY ), 0 or 1. Default value is 1.

2.图像RGB/HSV 通道分离

#Convert BGR to r,g,b

b,g,r =cv2.split(im)#Convert BGR to HSV

image_hue_saturation_value =cv2.cvtColor(im, cv2.COLOR_BGR2HSV)

h,s,v=cv2.split(image_hue_saturation_value)#Convert BGR to gray

image_gray = cv2.cvtColor(im, cv2.COLOR_BGR2GRAY)

# 注:RGB channels is indexed in B G R which is different from matlab。

# 注:Any channels could be split using cv2.split, pay attention to the sequence of channels

2.1 相关注释

Python:cv2.split(m[, mv]) → mv

Parameters:

src – input multi-channel array.

mv – output array or vector of arrays; in the first variant of the function the number of arrays must match src.channels(); the arrays themselves are reallocated, if needed.

Python:cv2.cvtColor(src, code[, dst[, dstCn]]) → dst

Parameters:

src – input image: 8-bit unsigned, 16-bit unsigned ( CV_16UC... ), or single-precision floating-point.

dst – output image of the same size and depth as src.

code – color space conversion code (see the description below).

dstCn – number of channels in the destination image; if the parameter is 0, the number of the channels is derived automatically from src and code .

3.图像矩阵的操作(点乘,复制,截取,1到N维矩阵)

# mask seed 3D matrix

seed_mask_single_channel_list = np.array([[[1,0,0],[0,0,0],[0,0,0]],[[0,1,0],[0,0,0],[0,0,0]],[[0,0,1],[0,0,0],[0,0,0]],

[[0,0,0],[1,0,0],[0,0,0]],[[0,0,0],[0,1,0],[0,0,0]],[[0,0,0],[0,0,1],[0,0,0]],

[[0,0,0],[0,0,0],[1,0,0]],[[0,0,0],[0,0,0],[0,1,0]],[[0,0,0],[0,0,0],[0,0,1]]])

#cut image

image_new_sample = image_source[:200,:200] #取前200个行和列的元素,python是从0开始的,所以0:200表示的是0-199这200个元素,取不到200.而初始位置0可以省略#separate channel

mask_singel_channel = np.tile(seed_mask_single_channel_list[1],(70,70))[:200,:200] #第一个3*3的mask作为一个单元进行复制成为70行,70列,截取前200行,200列

single_channel_image= mask_singel_channel * image_new_sample #表示点乘

# 注:矩阵的操作用Numpy这个类库进行。

3.1 相关注释

numpy.array(object, dtype=None, copy=True, order=None, subok=False, ndmin=0)

Parameters:

object : array_like

An array, any object exposing the array interface, an object whose __array__ method returns an array, or any (nested) sequence.

dtype : data-type, optional

The desired data-type for the array. If not given, then the type will be determined as the minimum type required to hold the objects in the sequence. This argument can only be used to ‘upcast’ the array. For downcasting, use the .astype(t) method.

copy : bool, optional

If true (default), then the object is copied. Otherwise, a copy will only be made if __array__ returns a copy, if obj is a nested sequence, or if a copy is needed to satisfy any of the other requirements (dtype, order, etc.).

order : {‘C’, ‘F’, ‘A’}, optional

Specify the order of the array. If order is ‘C’ (default), then the array will be in C-contiguous order (last-index varies the fastest). If order is ‘F’, then the returned array will be in Fortran-contiguous order (first-index varies the fastest). If order is ‘A’, then the returned array may be in any order (either C-, Fortran-contiguous, or even discontiguous).

subok : bool, optional

If True, then sub-classes will be passed-through, otherwise the returned array will be forced to be a base-class array (default).

ndmin : int, optional

Specifies the minimum number of dimensions that the resulting array should have. Ones will be pre-pended to the shape as needed to meet this requirement.

Returns:

out : ndarray

An array object satisfying the specified requirements.

e.g. 最外层始终都是[],所以如果是1维就一个[],2维就2个,N维就N个

>>> np.array([1, 2, 3])

array([1, 2, 3])>>> np.array([[1, 2], [3, 4]])

array([[1, 2],

[3, 4]])>>> np.array([1, 2, 3], ndmin=2)

array([[1, 2, 3]])

numpy.tile(A, reps)

Parameters:

A : array_like

The input array.

reps : array_like

The number of repetitions of A along each axis.

Returns:

c : ndarray

The tiled output array

e.g.

>>> b = np.array([[1, 2], [3, 4]])>>> np.tile(b, 2)

array([[1, 2, 1, 2],

[3, 4, 3, 4]])>>> np.tile(b, (2, 1))

array([[1, 2],

[3, 4],

[1, 2],

[3, 4]])

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/551713.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

java core 生成路径_core文件生成和路径设置

在程序崩溃时&#xff0c;内核会生成一个core文件,即程序最后崩溃时的内存映像&#xff0c;和程序调试信息。 之后可以通过gdb,打开core文件察看程序崩溃时的堆栈信息&#xff0c;可以找出程序出错的代码所在文件和函数。1.core文件的生成开关和大小限制 1)使用ulimit -a命令&…

shrio 登陆后 还是失效_在 iPhone 上取消订阅后,应用或内容会立即失效吗?

在 iPhone 中&#xff0c;一些应用和服务需要进行订阅&#xff0c;即您需要支付相应的费用以获得应用或服务中内容的访问权限。如果您想要取消订阅某个项目&#xff0c;可以按以下步骤操作&#xff1a;前往 iPhone “设置”-“Apple ID”-“iTunes Store 与 App Store”&#x…

java可以返回微妙吗_Java开发中10个最为微妙的最佳编程实践

这是10个最佳实践的列表&#xff0c;比你平时在Josh Bloch的《effective java》中看到的规则更加精妙。和Josh Bloch列出的非常容易学习的、和日常情况息息相关的实践相比&#xff0c;这个列表中提到了一些关于设计API/SPI的实践&#xff0c;虽然不常见&#xff0c;但是存在很大…

python3.7输出语句_Day3-Python-Python字符串if语句学习-2018/7/18

1.什么是字符串a.使用单引号或者双引号括起来的字符集就是字符串。b.引号中单独的符号、数字、字母等叫字符c.转义字符&#xff1a;可以用来表示一些有特殊功能或是特殊意义的字符(通过在固定的字符前加反斜杠\)\->\\->\\n->换行\t->制表符\"->"在计算…

wifi 信道_WiFi网速太慢,四招就可以让无线网络变得顺畅

和WIFI网速相关联的因素主要有四个&#xff0c;对应解决方法也就有四个。频段冲突是WIFI网速变慢很常见的问题。现实中常用的WIFI频段有2.4GHZ和5GHZ两个大频段&#xff0c;也好比两条高速公路。中国2.4GHZ频段里有11个信道&#xff0c;5GHZ有15个信道。多少个信道就好比有多少…

判读一个对象不为空_“人不为己,天诛地灭”的真实含义

“人不为己&#xff0c;天诛地灭”出自《佛说十善业道经》&#xff0c;其意思不是“一个人如果不为自己谋利益&#xff0c;就会遭到天地诛灭”&#xff0c;而是“一个人如果不修行自己的德行&#xff0c;那么就会为天地所不容”。“为”是修习、修炼、修行的意思&#xff0c;修…

java https双向验证_java https双向认证证书

// 双向认证证书KeyStore keyStore KeyStore.getInstance(“PKCS12”);KeyStore trustStore KeyStore.getInstance(“jks”);// keyStore是服务端验证客户端的证书&#xff0c;trustStore是客户端的信任证书InputStream ksIn new FileInputStream(“E:/Java/jre8/lib/securi…

c++opencv显示中文_OpenCV如何入门秘籍

OpenCV简介谈起入门&#xff0c;我们首先要搞明白OpenCV是什么&#xff1f;OpenCV的全称是Open Source Computer Vision Library&#xff0c;是一种计算机视觉库&#xff0c;主要用于处理摄像头采集的图像。既然说到了是一种库&#xff0c;就要聊聊这个库使用什么语言编写的。O…

安卓开发文档_鸿蒙2.0,HarmonyOS开发体验!

“没有人能够熄灭漫天星光”。在9月10日的华为2020开发者大会上&#xff0c;余承东掷地有声地说道。从去年开放的鸿蒙1.0&#xff0c;到今年的2.0。仅仅一年时间&#xff0c;华为就把基础设施全部搭建好。从之前的感知不强&#xff0c;到现在的触手可得&#xff0c;让果核这个半…

吉比特java开发_JVM 吉比特后台 Java 开发实习生 20 分钟一轮游 _好机友

吉比特后台 Java 开发实习生 20 分钟一轮游作者&#xff1a;胖若两人链接&#xff1a;https://www.nowcoder.com/discuss/155198?type2&order3&pos9&page1来源&#xff1a;牛客网关于在牛客前几天投的&#xff0c;就在今天早上&#xff0c;面了 20 分钟就结束了&a…

python字符串类型_Python3的字符串类型(疯狂Python)

先看一下本篇文章要讲的内容目录&#xff1a; 4.2 字符串入门String4.2.1 repr和字符串4.2.2 input和raw_input4.2.3 长字符串4.2.4 bytes4.2.5 字符串格式化4.2.6 Python自带两个帮助函数4.2.7 删除多余空白4.2.8 字符串的查找&#xff0c;替换4.2.9 字符串的分割&#xff0c;…

盘点苹果微信聊天记录恢复的3大常用方法!

微信聊天记录一旦被误删除或者意外丢失&#xff0c;那确实是一件麻烦的事情。如果只是丢失了文件、图片、视频等&#xff0c;那么重新让好友转发就行。 那如果是想恢复全部聊天记录呢&#xff1f;苹果微信聊天记录恢复有哪些方法&#xff1f;如果你还不知道正确的恢复方法&…

php 修改文件属性命令,php:修改目录下文档权限(777,644 )

php&#xff1a;修改目录下文档权限(777&#xff0c;644 )文章分类:PHP编程PHP chmod() 函数 (upload image permit)PHP Filesystem 函数定义和用法chmod() 函数改变文件模式。如果成功则返回 TRUE&#xff0c;否则返回 FALSE。语法chmod(file,mode)参数描述file必需。规定要检…

python采用面向对象编程模式吗_如何理解 Python 中的面向对象编程?

现如今面向对象编程的使用非常广泛&#xff0c;本文我们就来探讨一下Python中的面向对象编程。作者 | Radek Fabisiak 译者 | 弯月&#xff0c;责编 | 郭芮 以下为译文&#xff1a; Python支持多种类型的编程范式&#xff0c;例如过程式编程、函数式编程、面向对象编程&#xf…

上传文件的php代码,PHP实现大文件上传源代码

PHP实现大文件上传源代码PHP 基础教程 PHP 是一种创建动态交互性站点的强有力的服务器端脚本语言。 PHP 是免费的&#xff0c;并且使用广泛。 以下是小编为大家搜索整理的PHP实现大文件上传源代码&#xff0c;希望能给大家带来帮助!更多精彩内容请及时关注我们应届毕业生考试!经…

android 打开系统相册_这5款常用Android手机自动化测试工具你要收藏

1、Monkey是Android SDK自带的测试工具&#xff0c;在测试过程中会向系统发送伪随机的用户事件流&#xff0c;如按键输入、触摸屏输入、手势输入等)&#xff0c;实现对正在开发的应用程序进行压力测试&#xff0c;也有日志输出。实际上该工具只能做程序做一些压力测试&#xff…

php 替换某个字符,php中如何替换字符串中的某个字符-PHP问题

正在PHP中&#xff0c;能够应用strtr()函数完成字符串交换。起首咱们简略理解下strtr()函数的界说及语法。语法&#xff1a;string strtr( string $str, string $from, string $to)第一个参数示意待转换的字符串。第二个参数示意字符串中与将要被转换的目的字符 to 绝对应的源字…

python提示对话框自动关闭_Python实现定时自动关闭的tkinter窗口方法

Python实现定时自动关闭的tkinter窗口方法 更新时间&#xff1a;2019年02月16日 09:13:27 作者&#xff1a;Python_小屋 今天小编就为大家分享一篇Python实现定时自动关闭的tkinter窗口方法&#xff0c;具有很好的参考价值&#xff0c;希望对大家有所帮助。一起跟随小编过来看看…

x5内核有什么优点_接上U盘就是NAS私有云,蒲公英X5入手测评

接上U盘就是NAS私有云&#xff0c;蒲公英X5入手测评&#xff01;现在很多人喜欢在家里配置一台NAS&#xff0c;这样远程访问家里的数据不仅方便&#xff0c;而且可以即时备份PC以及手机等设备的数据。一旦手机丢失或电脑数据损坏&#xff0c;还可以通过NAS来恢复数据。但是对于…

小程序如何调用php程序,微信小程序调用PHP后台接口 解析纯html文本

搜索热词1、微信js动态传参&#xff1a;PHP/Home/Xiaoxxf/activity_detail?a_idoptions.id,//含富文本htmldata: {is_detail:1},method: GET,// OPTIONS,GET,HEAD,POST,PUT,DELETE,TRACE,CONNECTheader: {Content-Type: application/json},success: function (res) {that.setD…