Difference between revisions of "Contributing"

From BoofCV
Jump to navigationJump to search
m
(Added some comments about how to help)
Line 6: Line 6:
The follow tasks are fairly specific and can be done without requiring major changes to the library:
The follow tasks are fairly specific and can be done without requiring major changes to the library:


# Write about BoofCV!
## BoofCV is very new and not well know, so post about it on your blog/twitter/bathroom wall/tattoo
## If you use BoofCV in your project link back to this webpage to improve its page rank on search engines
# Android support
# Android support
## Identify incompatibilities with Android's API
## Identify incompatibilities with Android's API
## Help come up with solutions
## Help come up with solutions
## Create Android examples
## Create Android examples
# Improve Wiki and Documentation
## Due to SPAM attacks Wiki editing is locked down
## Request on account on the message board (left navigation bar) and help clean up this wiki!
# Wavelets
# Wavelets
## Arbitrary length Coiflet coefficients
## Arbitrary length Coiflet coefficients
Line 20: Line 27:
# Add fast non-maximum suppression algorithm
# Add fast non-maximum suppression algorithm
# See in code comments for improving Canny edge's speed
# See in code comments for improving Canny edge's speed


== Non-Coding Tasks ==
== Non-Coding Tasks ==

Revision as of 07:21, 20 December 2011

Ways to Contribute

BoofCV is an open source project and in order for it to grow its users need contribute to the project! Even if you don't know computer vision or how to program there are many ways you can contribute.

Specific List

The follow tasks are fairly specific and can be done without requiring major changes to the library:


  1. Write about BoofCV!
    1. BoofCV is very new and not well know, so post about it on your blog/twitter/bathroom wall/tattoo
    2. If you use BoofCV in your project link back to this webpage to improve its page rank on search engines
  2. Android support
    1. Identify incompatibilities with Android's API
    2. Help come up with solutions
    3. Create Android examples
  3. Improve Wiki and Documentation
    1. Due to SPAM attacks Wiki editing is locked down
    2. Request on account on the message board (left navigation bar) and help clean up this wiki!
  4. Wavelets
    1. Arbitrary length Coiflet coefficients
    2. Arbitrary length Daub coefficients
    3. Verify that Biorthogonal Daub is buggy and fix
    4. Don't add any addition jar file requires for wavelet tasks
  5. Corner detectors
    1. Add option to process image border in SSD feature detectors
  6. Modify BRIEF so that it can describe feature partially outside of image
  7. Add fast non-maximum suppression algorithm
  8. See in code comments for improving Canny edge's speed

Non-Coding Tasks

Non-coding tasks can be done by just about anyone. Typically these involve updating documentation and reporting problems. Design changes should be suggested to the message board.

  1. Citing BoofCV on projects and papers which use it!
  2. Reporting bugs as they are found.
  3. Fixing spelling and grammar errors on the wiki.
  4. Checking links on the wiki.
  5. Adding tutorials to the wiki.
  6. Quality control on JavaDOC.
  7. Suggesting ways to improve the API.

Coding Tasks

There is plenty of room for improvement left in BoofCV. If you which to donate code or tweak the existing code you should sign up on the BoofCV message board (see the main page for a link) and join the discussion. An important part of BoofCV is validating the correctness of the library. Making sure that each piece of code does what it says it does or that it is a correct implementation of the algorithm cited requires time and many eyes.

  1. Fixing bugs which have been reported.
  2. Adding unit tests.
  3. Adding system level tests.
  4. Implementing new algorithms.
  5. Validating the correctness of algorithms and implementations.
  6. Improve demo Applets.