sergeyk / selective_search_ijcv_with_python

Simple Python script to compute Selective Search proposals in Matlab.
Other
183 stars 113 forks source link

Do I need to install matlab to run this code? #13

Open sunshineatnoon opened 9 years ago

sunshineatnoon commented 9 years ago

Through this is a python wrapper, it seems that MATLAB is needed for compiling some files, do I have any other ways to run selective search codes without installing MATLAB? Thanks~

noirmist commented 8 years ago

I think so. there is some code for calling matlab.

mc = "matlab -nojvm -r \"try; {}; catch; exit; end; exit\"".format(command) pid = subprocess.Popen( shlex.split(mc), stdout=open('/dev/null', 'w'), cwd=script_dirname)