diff --git a/TASKS.txt b/TASKS.txt index c6e3b8a5..4e8f06fc 100644 --- a/TASKS.txt +++ b/TASKS.txt @@ -88,6 +88,12 @@ Complete the build process * Fix scripts for building Cython extensions (see `this thread `_). +Rework linear filters +````````````````````` +* Should take kernel or function for parameter (currently only takes function) +* Kernel shape should be specifiable (currently defaults to image shape) +* Due to the above, the tests run unnecessarily slowly + Development process ------------------- * Go to `http://github.com/stefanv/scikits.image @@ -98,7 +104,7 @@ Development process * Ping stefan to request a merge into the main development branch. .. note:: - + Do *not* merge the main branch into yours. You may rebase, as long as you are `aware of its dangers `_ (also see `LWN article `_). @@ -112,7 +118,7 @@ Guidelines: * All code should have tests. * All code should be documented, to the same `standard `_ - as NumPy and SciPy. + as NumPy and SciPy. * Follow the `Python PEPs `_ where possible. * All major changes should be `posted for review