NumPyANN icon indicating copy to clipboard operation
NumPyANN copied to clipboard

Missing bracket in the tutorial file "extract_features"

Open SharlotteManganye opened this issue 4 years ago • 1 comments

Hi

I am running NumpyANN tutorial using Jupyter nb. The extract_features.py file was not executing.

The error is here: fruit_data = skimage.io.imread(fname=os.path.sep.join([os.getcwd(), curr_dir, img_file], as_grey=False) There is a typo, you missed ")" , I used the following and it worked fruit_data = skimage.io.imread(fname=os.path.sep.join([os.getcwd(), curr_dir, img_file]), as_grey=False)

SharlotteManganye avatar Aug 20 '21 14:08 SharlotteManganye

Hi,

Thank you. I checked the script and the line you used is exactly in the extract_features.py script.

ahmedfgad avatar Sep 17 '21 12:09 ahmedfgad