caffe
caffe copied to clipboard
build/tools/get_image_size: No such file or directory
Hi @weiliu89,
Thanks a lot for making this repo available. I am having an issue with the preparation of SSD at the step of creating list as I follow README here.
(caffe_env) aktaseren@aktaseren-UX310UQK:~/caffe$ ./data/VOC0712/create_list.sh Create list for VOC2007 trainval... Create list for VOC2012 trainval... Create list for VOC2007 test... ./data/VOC0712/create_list.sh: line 41: /home/aktaseren/caffe/data/VOC0712/../../build/tools/get_image_size: No such file or directory
It says there is no get_image_size directory. I actually looked at the required datasets that you stressed and I downloaded but none of them have get_image_size directory.
Am I missing any step here?
Hi @aktaseren ,
It seems that you have not build caffe from source. Please follow below commands:
- Modify Makefile.config according to your Caffe installation. cp Makefile.config.example Makefile.config
- make -j8
- Make sure to include $CAFFE_ROOT/python to your PYTHONPATH.
- make py
- make test -j8
- make runtest -j8
Thanks