Caffe, how to run classify.py for a set of images
I installed Caffe on Linux successfully. Then I failed to make it work with Matlab. So I installed it with Python following the tutorial of Pete Warden . However, I never used Python before I just run the command "python python/classify.py --print_results examples/images/cat.jpg foo" and it works. My question is how can I test calssify.py for a set images rather than a single image? I tried to read images from test directory as following cd caffe Python Import os For file in os.listdir(“example/images”): python/classify.py --print_results os.path.join(“examples/images/”,file) foo but it