forked from scikit-image/scikit-image
-
Notifications
You must be signed in to change notification settings - Fork 3
Euroscipy 2012 sprint
stefanv edited this page Aug 23, 2012
·
3 revisions
Please write your name if you wish to participate to the scikits-image sprint on Monday August 27th and Tuesday August 28th, at Euroscipy 2012 in Brussels.
- Emmanuelle Gouillart (Monday 27th only)
- Stéfan van der Walt (Monday, 1/2 Tuesday)
SPRINT: scikits-image
What?
scikits-image is a collection of algorithms for image processing. See
http://scikits-image.org/ for more detail.
When?
Both on Mon Aug 27 and Tue Aug 28
Whom to contact?
Stéfan van der Walt ([email protected])
Tasks
There are a few outstanding issues that can be fixed easily:
https://github.com/scikits-image/scikits-image/issues?labels=quickfix
Ideas for the sprint:
- Add text, anti-aliasing to the draw module
- Add Bezier curves to the draw module (see the PDF linked from
http://free.pages.at/easyfilter/bresenham.html) - Integrate Tony's visualization tools, and use them to write a
plugin, or fine-tune the existing Hough parameter space explorer - Add binary features (BRIEF, BRISK, FREAK, LAZY)
http://computer-vision-talks.com/2011/08/feature-descriptor-comparison-report/ - Camera calibration
Start from https://gist.github.com/3348000 and
http://bazaar.launchpad.net/~astraw/pinpoint/dev/files/
- Better video loading - Update the user guide
We need a “Getting started” section, guiding a user through a
typical workflow:- Load an image
- Try using a feature detector or transform.
- Realize that it didn't perform ideally. Now try smoothing or
denoising (or something else). - Successfully find feature.
- Save feature as some sort of data file.
- Add imread_collection to all imread plugins.
Outstanding challenges:
- Blurring kernel estimation (http://bit.ly/Nril3u)
- “Sudoku challenge”
(http://stackoverflow.com/questions/10196198/how-to-remove-convexity-defects-in- sudoku-square/11366549#11366549)
Specific examples to be implemented:
- Corner detection
(http://stackoverflow.com/questions/8686926/python-image-processing-help-needed- for-corner-detection-in-preferably-pil-or/9173430#9173430)