У меня есть такой код:
from skimage import feature
import skimage
class HOG:
def __init__(self, orientations=12, pixelsPerCell=(4, 4), cellsPerBlock=(2, 2), normalize=True):
# store the number of orientations, pixels per cell, cells per block, and
# whether normalization should be applied to the image
self.orientations = orientations
self.pixelsPerCell = pixelsPerCell
self.cellsPerBlock = cellsPerBlock
self.normalize = normalize
, и он дает мне ModuleNotFoundError: No module named 'skimage'
.
Я не уверен, правильно ли установлен scikit-image
. conda install -c conda-forge scikit-image
правильный способ установки?