python的imreadnewaxis

Posted 梁十安。

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python的imreadnewaxis相关的知识,希望对你有一定的参考价值。

一:imread

用来读取图片,返回一个numpy.ndarray类型的多维数组,具有两个参数:

参数1 filename, 读取的图片文件名,可以使用相对路径或者绝对路径,但必须带完整的文件扩展名(图片格式后缀)

参数2 flags, 一个读取标记,用于选择读取图片的方式,默认值为IMREAD_COLOR,flag值的设定与用什么颜色格式读取图片有关
import cv2
path = E:Flow classificationemail_train1.jpg
image = cv2.imread(path)
print(image)
print(type(image))

 二:newaxis

用来增加数组维度,如下:

import numpy as np

a=np.array([1,2,3,4,5,6,7,8,9])
print(a.shape)
print(a)

b = a[:,np.newaxis]
print(b.shape)
print(b)

c = b[:,:,np.newaxis]
print(c.shape)
print(c)

d = c[:,:,:,np.newaxis]
print(d.shape)
print(d)

 输出结果如下:

(9,)
[1 2 3 4 5 6 7 8 9]
(
9, 1) [[1] [2] [3] [4] [5] [6] [7] [8] [9]]
(
9, 1, 1) [[[1]] [[2]] [[3]] [[4]] [[5]] [[6]] [[7]] [[8]] [[9]]] (9, 1, 1, 1) [[[[1]]] [[[2]]] [[[3]]] [[[4]]] [[[5]]] [[[6]]] [[[7]]] [[[8]]] [[[9]]]]

 

***************不积跬步无以至千里***************

以上是关于python的imreadnewaxis的主要内容,如果未能解决你的问题,请参考以下文章

python 有用的Python代码片段

Python 向 Postman 请求代码片段

python [代码片段]一些有趣的代码#sort

使用 Python 代码片段编写 LaTeX 文档

python 机器学习有用的代码片段

python 来自puddletag的代码片段