当前位置: 首页 > 工具软件 > 4images > 使用案例 >

ValueError: Only images with 2 spatial dimensions are supported. If using with color/multichannel im

司马彦
2023-12-01

问题描述

我的Python代码为:

des, hog_image = hog(img, orientations=8, pixels_per_cell=(16, 16), 
					cells_per_block=(1, 1), visualize=True, multichannel=True)

此时我的 img 的shape 为 (150, 150)

然后当我在使用 skimage库中的hog时,报了如下错误:

ValueError: Only images with 2 spatial dimensions are supported. If using with color/multichannel images, specify `multichannel=True`.

解决方法

直接把multichannel=True 删掉就行了,简单粗暴~

 类似资料:

相关阅读

相关文章

相关问答