DOC: Update tasks.

This commit is contained in:
Stefan van der Walt
2011-03-15 01:46:14 +02:00
parent 71631bfca4
commit 8f8726f0a6
6 changed files with 70 additions and 0 deletions
+2
View File
@@ -14,6 +14,8 @@ following challenges you'd like to solve.
Tasks
-----
:doc:`gsoc2011`
Adapt existing code for use
```````````````````````````
These snippets and packages have already been written. Some need to be
+12
View File
@@ -9,6 +9,8 @@ Module: :mod:`color`
scikits.image.color.convert_colorspace
scikits.image.color.hsv2rgb
scikits.image.color.rgb2gray
scikits.image.color.rgb2grey
scikits.image.color.rgb2hsv
scikits.image.color.rgb2rgbcie
scikits.image.color.rgb2xyz
@@ -25,6 +27,16 @@ hsv2rgb
.. autofunction:: scikits.image.color.hsv2rgb
rgb2gray
--------
.. autofunction:: scikits.image.color.rgb2gray
rgb2grey
--------
.. autofunction:: scikits.image.color.rgb2grey
rgb2hsv
-------
+6
View File
@@ -25,6 +25,7 @@ Inheritance diagram for ``scikits.image.filter``:
.. autosummary::
scikits.image.filter.inverse
scikits.image.filter.median_filter
scikits.image.filter.wiener
inverse
@@ -32,6 +33,11 @@ inverse
.. autofunction:: scikits.image.filter.inverse
median_filter
-------------
.. autofunction:: scikits.image.filter.median_filter
wiener
------
+6
View File
@@ -37,6 +37,7 @@ Inheritance diagram for ``scikits.image.io``:
.. autosummary::
scikits.image.io.imread
scikits.image.io.imread_collection
scikits.image.io.imsave
scikits.image.io.imshow
scikits.image.io.load_sift
@@ -53,6 +54,11 @@ imread
.. autofunction:: scikits.image.io.imread
imread_collection
-----------------
.. autofunction:: scikits.image.io.imread_collection
imsave
------
+30
View File
@@ -37,12 +37,16 @@ Inheritance diagram for ``scikits.image.opencv``:
scikits.image.opencv.cvFilter2D
scikits.image.opencv.cvFindChessboardCorners
scikits.image.opencv.cvFindCornerSubPix
scikits.image.opencv.cvFindExtrinsicCameraParams2
scikits.image.opencv.cvFindFundamentalMat
scikits.image.opencv.cvFloodFill
scikits.image.opencv.cvGetQuadrangleSubPix
scikits.image.opencv.cvGetRectSubPix
scikits.image.opencv.cvGoodFeaturesToTrack
scikits.image.opencv.cvIntegral
scikits.image.opencv.cvLaplace
scikits.image.opencv.cvLogPolar
scikits.image.opencv.cvMatchTemplate
scikits.image.opencv.cvMorphologyEx
scikits.image.opencv.cvPreCornerDetect
scikits.image.opencv.cvPyrDown
@@ -54,6 +58,7 @@ Inheritance diagram for ``scikits.image.opencv``:
scikits.image.opencv.cvUndistort2
scikits.image.opencv.cvWarpAffine
scikits.image.opencv.cvWarpPerspective
scikits.image.opencv.cvWatershed
cvAdaptiveThreshold
-------------------
@@ -120,6 +125,21 @@ cvFindCornerSubPix
.. autofunction:: scikits.image.opencv.cvFindCornerSubPix
cvFindExtrinsicCameraParams2
----------------------------
.. autofunction:: scikits.image.opencv.cvFindExtrinsicCameraParams2
cvFindFundamentalMat
--------------------
.. autofunction:: scikits.image.opencv.cvFindFundamentalMat
cvFloodFill
-----------
.. autofunction:: scikits.image.opencv.cvFloodFill
cvGetQuadrangleSubPix
---------------------
@@ -150,6 +170,11 @@ cvLogPolar
.. autofunction:: scikits.image.opencv.cvLogPolar
cvMatchTemplate
---------------
.. autofunction:: scikits.image.opencv.cvMatchTemplate
cvMorphologyEx
--------------
@@ -205,3 +230,8 @@ cvWarpPerspective
.. autofunction:: scikits.image.opencv.cvWarpPerspective
cvWatershed
-----------
.. autofunction:: scikits.image.opencv.cvWatershed
+14
View File
@@ -0,0 +1,14 @@
Project ideas for Google Summer of Code 2011
============================================
- Vastly increase the number of algorithms covered by the SciKit, by
implementing several prominent algorithms (probabilistic hough, radon
transform, etc.) from papers. Also incorporate code from the Broad
Institute's CellProfiler team.
- Implement a new backend infrastructure so that the same results may be
obtained using either NumPy, OpenCL, Theano, etc.
- Implement optimised core routines, such as fast 2D convolution. This should
be as fast as CvFilter2D (which is faster than ndimage, for example).