- 通道问题
Traceback (most recent call last):File "C:/Users/64883/Desktop/Evaluation_metrics/all.py", line 150, in <module>img_gb = cv2.cvtColor(img_b, cv2.COLOR_RGB2GRAY)
cv2.error: OpenCV(4.6.0) d:\a\opencv-python\opencv-python\opencv\modules\imgproc\src\color.simd_helpers.hpp:92: error: (-2:Unspecified error) in function '__cdecl cv::impl::`anonymous-namespace'::CvtHelper<struct cv::impl::`anonymous namespace'::Set<3,4,-1>,struct cv::impl::A0xf2302844::Set<1,-1,-1>,struct cv::impl::A0xf2302844::Set<0,2,5>,2>::CvtHelper(const class cv::_InputArray &,const class cv::_OutputArray &,int)'
Invalid number of channels in input image:'VScn::contains(scn)'
where'scn' is 1
这个错误是由于输入图像的通道数不匹配导致的OpenCV错误。根据错误信息,输入图像的通道数被认为是1,但实际上它可能具有不正确的通道数。
- 尺寸问题
Traceback (most recent call last):File "C:/Users/64883/Desktop/Evaluation_metrics/all.py", line 155, in <module>ssim_num = compare_ssim(img_ga, img_gb, data_range=255)File "D:\Anaconda3\envs\paddlepaddle\lib\site-packages\skimage\_shared\utils.py", line 348, in fixed_funcreturn func(*args, **kwargs)File "D:\Anaconda3\envs\paddlepaddle\lib\site-packages\skimage\metrics\_structural_similarity.py", line 101, in structural_similaritycheck_shape_equality(im1, im2)File "D:\Anaconda3\envs\paddlepaddle\lib\site-packages\skimage\_shared\utils.py", line 569, in check_shape_equalityraise ValueError('Input images must have the same dimensions.')
ValueError: Input images must have the same dimensions.
这个错误是由于输入图像的尺寸不匹配导致的值错误。根据错误信息,输入图像"img_ga"和"img_gb"的尺寸不相同,因此无法进行结构相似性比较。