GitHub - sergeyk/selective_search_ijcv_with_python: Simple Python script to compute Selective Search proposals in Matlab. (original) (raw)
Navigation Menu
- GitHub Copilot Write better code with AI
- GitHub Models New Manage and compare prompts
- GitHub Advanced Security Find and fix vulnerabilities
- Actions Automate any workflow
- Codespaces Instant dev environments
- Issues Plan and track work
- Code Review Manage code changes
- Discussions Collaborate outside of code
- Code Search Find more, search less
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
This is mostly the code from Segmentation as Selective Search for Object Recognition, downloaded November 2013. I simply needed a way to call this stuff from Python: selective_search.py
and selective_search.m
are the only new files.
import selective_search_ijcv_with_python as selective_search
windows = selective_search.get_windows(image_filenames)
To make sure this works, simply python selective_search.py
.
Sergey Karayev 25 Nov 2013