Issue
I have installed EmoPy in google collab,
pip install EmoPy
and tried to execute the following code.
showing error in imread command.Please help me out
from EmoPy.src.fermodel import FERModel
from pkg_resources import resource_filename
target_emotions = ['calm', 'anger', 'happiness']
model = FERModel(target_emotions, verbose=True)
print('Predicting on happy image...')
model.predict(resource_filename('EmoPy.examples','image_data/sample_happy_image.png'))
print('Predicting on disgust image...')
model.predict(resource_filename('EmoPy.examples','image_data/sample_disgust_image.png'))
print('Predicting on anger image...')
model.predict(resource_filename('EmoPy.examples','image_data/sample_anger_image2.png'))
AttributeError: module 'scipy.misc' has no attribute 'imread'
Solution
Or alternatively, you can use imread from OpenCV2, cv2.imread
Answered By - Albert H M
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.