使用sim比较不同维度的图像时出错

问题描述

下面是用于比较我正在使用的两个图像的代码:

# import the necessary packages
import cv2
from skimage.measure import compare_ssim

# construct the argument parse and parse the arguments


# load the two input images
imageA = cv2.imread('iron1.jpg')
imageB = cv2.imread('end.jpg')
(H,W,C) = imageA.shape
imageB = cv2.resize(imageB,imageA.shape)
# convert the images to grayscale
grayA = cv2.cvtColor(imageA,cv2.COLOR_BGR2GRAY)
grayB = cv2.cvtColor(imageB,cv2.COLOR_BGR2GRAY)

(score,diff) = compare_ssim(grayA,grayB,full=True)
diff = (diff * 255).astype("uint8")
print("SSIM: {}".format(score))

,并由于出现以下错误而调整了两个图像的大小:

  File "C:/Users/afaraz/PycharmProjects/tet/opencv_test.py",line 13,in <module>
    imageB=cv2.resize(imageB,imageA.shape)
TypeError: function takes exactly 2 arguments (3 given)

请帮助解决这个问题!

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...