我的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 删掉就行了,简单粗暴~