belltailjp / selective_search_py

Python-based implementation of the Selective Search for Object Recognition.
MIT License
368 stars 121 forks source link

Any plans on supporting python2? #9

Open seanbell opened 9 years ago

seanbell commented 9 years ago

I haven't looked into the code closely enough to see how easy it would be to port to python2, but I'm curious why you require python3?

BradNeuberg commented 9 years ago

+1 on this. I'm using this in a Python project and the Python 3 dependency creates alot of awkwardness.

BradNeuberg commented 9 years ago

I'd like to take a stab at converting the codebase to Python 2.7. What specific Python3 features do you use so I can see if this is feasible?

BradNeuberg commented 9 years ago

Looking through the code base I actually don't see any Python 3 features actually being used. Does one of the libraries selective search depends on have Python 3 dependencies?

BradNeuberg commented 8 years ago

FYI I've forked selective_search.py and back ported it to Python 2.7; I've also gotten it running on Mac OS X. The fork:

https://github.com/BradNeuberg/selective_search_py

I can submit this upstream if @belltailjp is interested.