Commit Graph
81 Commits
Author SHA1 Message Date
Ralf Gommers cf37916022 Convert matrix lists to arrays, add RGB CIE color space. 2009-10-20 13:12:18 +02:00
Ralf Gommers 94f5eeac25 Add description of the API to the module docstring.
This is not all implemented yet, mostly a description of what I want it to look
like in the end. This required figuring out the right matrices based on some of
the random ones in Travis' code. Should not be too difficult.
2009-10-20 12:10:33 +02:00
Ralf Gommers 5de5014589 Add docstrings for rgb2xyz and xyz2rgb. 2009-10-19 19:39:00 +02:00
Ralf Gommers 1a4ae96024 Add RGB to XYZ bidi conversion. 2009-10-19 18:57:31 +02:00
Ralf Gommers 844f14bca0 Extract the type and shape checks into a common function. 2009-10-19 15:14:21 +02:00
Ralf Gommers 6097565337 Add note on loss of precision. 2009-10-19 14:48:12 +02:00
Ralf Gommers 1657a4d1b8 Implement hsv2rgb. 2009-10-19 14:34:00 +02:00
Ralf Gommers 6c80fa6a55 Add documentation for rgb2hsv. 2009-10-19 10:48:09 +02:00
Ralf Gommers 032d0cd785 Change import to form used everywhere else. 2009-10-19 10:38:44 +02:00
Stefan van der Walt bf97b0f928 Clean up scikits.image namespace. 2009-10-17 12:39:56 +02:00
Stefan van der Walt 96360f5bd6 Remove self-referencing import. 2009-10-17 12:32:25 +02:00
Stefan van der Walt 9025c5d3b0 Clean up opencv namespace and imports. 2009-10-17 12:28:33 +02:00
Stefan van der Walt 8ec3abb3f5 Fix importing of opencv when libraries are not installed / extensions are not compiled. 2009-10-17 07:37:29 +02:00
Stefan van der Walt 62f67611af Expand OpenCV installation instructions. 2009-10-17 06:39:47 +02:00
sccolbert aa20e903d1 added "cxcore" to __all__ 2009-10-16 21:29:55 +02:00
sccolbert 1e1958b414 added 4 warping functions. Added CvMat support.
Added cvGetRectSubPix, cvGetQuadrangleSubPix, cvWarpAffine, cvWarpPerspective.
As a byproduct added CvMat support.
2009-10-16 21:25:20 +02:00
sccolbert d26404969d added chessboard data images, modified install.txt, and .gitignore 2009-10-16 16:12:45 +02:00
sccolbert 9bc93b3154 Added cvFind and DrawChessboardCorners - from Holger 2009-10-16 15:41:51 +02:00
Holger Rapp fd613c6a0d Merged with trunk 2009-10-15 13:28:21 +02:00
Holger Rapp 0d009dcfbe Added support for cvDrawChessboardCorners 2009-10-15 12:52:30 +02:00
Holger Rapp f44c246b98 Added cvFindChessboardCorners 2009-10-15 12:07:46 +02:00
Stefan van der Walt e6454dae4a Allow unit tests to be run when OpenCV is not available. 2009-10-15 10:36:05 +02:00
Stefan van der Walt 5be1ecc12b OpenCV: clean up long lines and whitespace. 2009-10-15 10:18:18 +02:00
Stefan van der Walt 4b35af3f63 Clean up long lines and whitespace in opencv_backend. 2009-10-15 10:10:48 +02:00
Stefan van der Walt bcedeb1c83 Fix typo in opencv setup. 2009-10-15 10:10:30 +02:00
Holger Rapp ae310bc4b6 Added a more stable detection of opencv library by introducing a new file: _libimport.py 2009-10-15 09:41:39 +02:00
Holger Rapp b0f20da893 Fixed shutil.cp -> shutil.copy; the former doesn't exist on python2.6 2009-10-15 09:29:00 +02:00
Stefan van der Walt d70dfb33d0 Add setup.py in scikits/image. 2009-10-15 09:26:22 +02:00
Stefan van der Walt ceeea18a46 Only build OpenCV extensions when source has been modified. 2009-10-15 08:06:59 +02:00
Stefan van der Walt 805d9ff937 Update setup to build scikits.image.opencv. 2009-10-15 07:41:37 +02:00
Stefan van der Walt d672f1eeaf Merge remote branch 'colbert/master' 2009-10-14 18:10:13 +02:00
sccolbert d28e3e8555 fixed the setup.py, it works now. 2009-10-14 17:38:50 +02:00
sccolbert 003141283f added a setup.py, moved the data files to the head folder. 2009-10-14 13:12:29 +02:00
Stefan van der Walt d9c206b625 Set plot directory prefix. 2009-10-14 07:08:13 +02:00
Ralf Gommers 7175d7c187 Add support for MPL plots in the docs.
Both inline plots and plots from script files work.

Some things to keep in mind:
- for including scripts from docstrings, use prefix  "../plots/",
  for including scripts in a rst file, use "plots/".
  This is due to the docs being generated from the source/api folder.
- inline plots are not (yet) aware of variables being defined earlier
  in the Examples section.
- we now use the numpydoc sphinx extensions, the original MPL ones can not
  be used because they have no support for the make file and conf.py not
  being in the same folder.

There is one minor thing that does not work yet. The source code link for
plots does not work because for some reason the script files are not
copied to the build dir.
2009-10-14 00:30:07 +02:00
Ralf Gommers 03bd107368 Add a few docstrings. 2009-10-13 15:13:30 +02:00
Ralf Gommers 48fa1b0789 Change "Additional Parameters" to "Other Parameters". 2009-10-13 13:49:38 +02:00
sccolbert 73f85b0d3a added cvGoodFeaturesToTrack. Added clone_array_shape function.
I should at one point turn that into a type that does its own memory management.
2009-10-13 00:31:40 +02:00
sccolbert 1076de0949 added a bash script for build to holdover until a setup.py solution 2009-10-12 19:12:00 +02:00
sccolbert 14f588e0fa added cvCornerSubPix and cvResize impementations. Added a bash build script. 2009-10-12 19:10:21 +02:00
Ralf Gommers b7c1dc10a3 Move docs to correct place inside class. 2009-10-12 17:14:59 +02:00
Ralf Gommers 2697ee9506 Add dtype parameter to MultiImagei and ImageCollection. 2009-10-12 17:09:17 +02:00
Ralf GommersandStefan van der Walt 44679c7aae Added dtype keyword to imread plus a test for that. 2009-10-12 15:36:02 +02:00
Ralf GommersandStefan van der Walt b25ae266a5 Rename collection test file and fix it. 2009-10-12 15:35:54 +02:00
Stefan van der Walt bcdb7d97ae Rename collection test file. 2009-10-12 15:19:51 +02:00
sccolbert 2e87575625 updated tests to be shorter and OO. Deleted unnecessary data files. 2009-10-12 11:14:15 +02:00
Stefan van der Walt 8235922cae Add collections to io.__init__. 2009-10-12 09:06:05 +02:00
Stefan van der Walt 96ab199b55 Rename collections module. 2009-10-12 08:56:24 +02:00
Stefan van der Walt 33afe601aa Move test data to global data dir and fix test. 2009-10-12 08:51:18 +02:00
Ralf Gommers b19c0368fe Fixes to MultiImage, added tests for it, plus a test TIF image. 2009-10-12 02:02:53 +02:00