Open suji104 opened 7 years ago
Are you sure it is an error? It is a warning to me.
This is an error in my code. However, if there is no problem in that code section, I do not know the cause of the error.
@suji104 it is just a warning, you should add plt.show()
at the end of code
I want to do object detection on a Images. So I modified ssd_detect.ipynb to ssd_detect.py. However, there is an error in the following section.
image = caffe.io.load_image('/home/pixoneer/caffe/examples/sz-256-00000050.png') plt.imshow(image) transformed_image = transformer.preprocess('data', image) net.blobs['data'].data[...] = transformed_image
The error is as follows. /usr/local/lib/python2.7/dist-packages/skimage/transform/_warps.py:84: UserWarning: The default mode, 'constant', will be changed to 'reflect' in skimage 0.15. warn("The default mode, 'constant', will be changed to 'reflect' in "
My code modification is that I changed the file path in ssd_detect.ipynb. and delete %matplotlib inline I would appreciate it if you could answer me how to solve it. Thank you.