gkioxari / RstarCNN

R*CNN
Other
132 stars 53 forks source link

How to create mat file of VOC selective search regions #9

Closed vra closed 8 years ago

vra commented 8 years ago

Hi Georgia, I reviewed your code and find that the selective search region proposals are load from cached matlab files directly (155 line, in RStarCNN_ROOT/lib/dataset/pascal_voc.py). And as far as I know, the code of selective search (like in here: https://github.com/sergeyk/selective_search_ijcv_with_python) doesn't give a matlab file output. So could you give me the code that generated matlab files of ss region because I want to use RStarCNN in another dataset, thanks!

gkioxari commented 8 years ago

The selective search regions for all datasets were computed with the source code of Selective Search. For example look here.

Then the regions are stored (in mat files) and loaded from datasets/pascal_voc.py.

vra commented 8 years ago

Thanks for explaining, that's useful, and I think this will solve my problem.