Closed tomginsberg closed 4 years ago
Hi, great package works well.
When I call a video transform I get the error AttributeError: module 'skimage' has no attribute 'transform'
AttributeError: module 'skimage' has no attribute 'transform'
I see the same issue here
The simple fix is to replace
import skimage skimage.transform.(whatever)
with
import skimage.transform skimage.transform.(whatever)
As mentioned in the linked issue, scikit-image uses "lazy importing", so you have to explicitly import submodules.
This should be fixed now, thank you very much !
Best,
Yana
Hi, great package works well.
When I call a video transform I get the error
AttributeError: module 'skimage' has no attribute 'transform'
I see the same issue here
The simple fix is to replace
with
As mentioned in the linked issue, scikit-image uses "lazy importing", so you have to explicitly import submodules.