使用 Mahotas 加载图像 – Python
在本文中,我们将看到可以在 mahotas 中加载图像。 Mahotas是一个用于Python的计算机视觉和图像处理和操作库。库是函数和方法的集合,允许您执行许多操作而无需编写数百行代码。 Mahotas 包含许多与数组一起操作的算法,mahotas 目前拥有 100 多个用于图像处理和计算机视觉的函数,并且还在不断增长。
为此,我们将使用 mahotas.imread 方法
Syntax : mahotas.imread(image_name)
Argument : It takes string as argument which is image name
Return : It returns numpy.ndarray object
示例 1:
Python3
# importing required libraries
import numpy as np
import mahotas
from pylab import imshow, show
# loading image
img = mahotas.imread('dog_image.png')
# showing the original image
imshow(img)
show()
Python3
# importing required libraries
import numpy as np
import mahotas
from pylab import imshow, show
# loading image
img = mahotas.imread('wally.png')
# showing the image
imshow(img)
show()
输出 :
示例 2:
Python3
# importing required libraries
import numpy as np
import mahotas
from pylab import imshow, show
# loading image
img = mahotas.imread('wally.png')
# showing the image
imshow(img)
show()
输出 :