Commit Graph
1563 Commits
Author SHA1 Message Date
Stefan van der Walt 149ad7e7a6 Merge pull request #219 from wilsaj/remove-nose-message
BUG: Remove message about not being able to load nose; fixes #218.
2012-07-20 23:32:21 -07:00
tonysyu d615235f07 Merge pull request #227 from thewtex/thresholding_failures_2
BUG: Fix OTSU thresholding tests with matplotlib IO plugin.
2012-07-20 16:37:57 -07:00
Matt McCormick 67eb914ef6 TST: Add buffer for threshold tests.
In case conversion from float to integer is imprecise.
2012-07-20 19:09:05 -04:00
Stefan van der Walt 1b89ae8dbf Merge pull request #228 from thewtex/color_numpy_warnings
BUG: Ignore division by zero where appropriate in colorconv.
2012-07-20 16:06:38 -07:00
Stefan van der Walt 37e0ce0fc8 Merge pull request #223 from jni/jni-concatenate-image-collection
ENH: Concatenate image collection.
2012-07-20 16:02:04 -07:00
Stefan van der Walt 05185288e6 Merge pull request #225 from lct123/ImageSegTut
DOC: Clean up image segmentation tutorial.
2012-07-20 15:54:43 -07:00
Matt McCormick 4b53c92c14 BUG: Fix OTSU thresholding tests with matplotlib IO plugin.
The matplotlib IO returns float arrays from [0, 1], which gives difference
results than a ubyte array.  Explicitly convert to a ubyte array in the tests.
2012-07-20 18:49:44 -04:00
Matt McCormick bb1add8abd BUG: Ignore colorconv RuntimeWarning:invalid value encountered in true_divide.
Sometimes zero divided by zero can occur in this code.  Saturation was already
explicitly set to zero when 'delta' is zero.  According to Wikipedia, hue is
undefined when 'delta' here is zero, so explicitly set to zero.
2012-07-20 18:33:41 -04:00
Leon Tietz 3b7ab0dd9e corrected plot title 2012-07-20 17:19:12 -05:00
Juan Nunez-Iglesias a61ac37ff2 Add concatenate() support for MultiImage
Previously we added the ImageCollection.concatenate function. This
updates MultiImage to have the same functionality, and moves the grunt
work to an outside function to avoid repetition.
2012-07-20 16:46:33 -05:00
Leon Tietz 736b92a5ff Updated Image Segmentation tutorial 2012-07-20 16:31:16 -05:00
Juan Nunez-Iglesias 62ce6f3ab5 Add test for ImageCollection.concatenate 2012-07-20 15:35:03 -05:00
Juan Nunez-Iglesias 11c7fd2f59 Add function 'concatenate' to ImageCollection
Many algorithms work on 3D stacks rather than images. It is convenient
to provide automatic conversion from an ImageCollection to an nD-stack.
2012-07-20 15:16:48 -05:00
Stefan van der Walt c9bef5e06f Merge pull request #222 from thewtex/freeimage_error_2
BUG: Fix tests when FreeImage is not installed.
2012-07-20 13:05:37 -07:00
Matt McCormick 74554793ad STY: Align multi-line string statements. 2012-07-20 16:00:06 -04:00
wilsaj 86f67f85ed raise an import error if trying to run test suite without nose 2012-07-20 14:48:03 -05:00
Matt McCormick db4cc04a90 BUG: Fix tests when FreeImage is not installed.
The plugin loader tries plugins but only catches ImportError and
RuntimeError.  The FreeImage plugin was throwing OSError.  Tests
were failing when FreeImage was not installed.  It now throws a
RuntimeError.
2012-07-20 15:46:58 -04:00
Stefan van der Walt 12fb05f9ab Merge pull request #220 from thewtex/freeimage_error
BUG: Fix testing failures when FreeImage not installed.
2012-07-20 12:31:00 -07:00
Matt McCormick 89f0151a7a BUG: Fix testing failures when FreeImage not installed.
FreeImage throws an OSError, which must be caught when attempting
to load the IO plugins for tests to pass without FreeImage installed.
2012-07-20 15:05:45 -04:00
wilsaj 02a26db453 remove message about not being able to load nose; fixes #218 2012-07-20 12:26:17 -05:00
Stefan van der Walt ce489a055f DOC: Update tasks. 2012-07-20 12:56:06 -04:00
Stefan van der Walt 576c6b59fa DOC: Add SciPy as a runtime dependency. 2012-07-20 12:55:06 -04:00
Tony S Yu f6066539cc DOC: Add list of tasks for SciPy 2012 sprints 2012-07-19 14:17:36 -05:00
Stefan van der Walt a80388c995 PKG: Update Debian packaging instructions. 2012-07-17 17:37:08 -04:00
Stefan van der Walt 6e5c23e7fb Merge pull request #216 from ahojnnes/perimeter
ENH: Perimeter property measurement.
2012-07-16 11:13:33 -07:00
Johannes Schönberger c0c23968bf add perimeter measurement 2012-07-14 14:14:28 +02:00
Stefan van der Walt 94e290ce38 Merge pull request #214 from cgohlke/patch-1
BUG: Fix io.imsave() problems with passing arguments to plugin "freeimage".
2012-07-12 10:44:34 -07:00
cgohlke 8d313f1d57 Fix io.imsave() problems with passing arguments to plugin "freeimage" 2012-07-12 10:34:15 -07:00
Stefan van der Walt 1dcc172f60 TST: Check number of input angles in radon tf. 2012-07-09 11:29:37 -07:00
Stefan van der Walt 4d1809a63c BUG: Allow rgb2grey to be called on grey-level images. 2012-07-08 17:49:17 -07:00
Stefan van der Walt de74ee7879 Merge pull request #205 from amueller/pep8
COSMIT: PEP8 compatibility and other cleanups.
2012-06-29 02:33:43 -07:00
Andreas Mueller 46e959a9d9 COSMIT some manual pep8, removed unused imports, removed unused variables and fixed a bug in a ValueError statement. 2012-06-29 11:27:23 +02:00
Andreas Mueller d7f1a3abec COSMIT minor stype improvements, whitespace in error messages 2012-06-29 11:27:23 +02:00
Andreas Mueller f7c56202d0 COSMIT no spaces around power `**`. Fun: https://gist.github.com/1671995 2012-06-29 11:27:23 +02:00
Andreas Mueller 1251f77d6a COSMIT minor pep8 2012-06-29 11:27:23 +02:00
Andreas Mueller ee0fd867da COSMIT fix ugly line breaks. 2012-06-29 11:27:23 +02:00
Andreas Mueller 9f34c84f1a COSMIT don't let pep8 make your matrices ugly. 2012-06-29 11:27:23 +02:00
Andreas Mueller f7b3d8062c COSMIT pep8 2012-06-29 11:27:23 +02:00
Stefan van der Walt b891a7c9d1 DOC: Update release instructions. 2012-06-24 21:50:38 -07:00
Stefan van der Walt abb5cc10f7 PKG: Use different delimiter in contributors list. 2012-06-24 21:46:29 -07:00
Stefan van der Walt 249fa149ef PKG: Start 0.7 development cycle. 2012-06-24 21:46:12 -07:00
Stefan van der Walt 53426a0077 PKG: Update doc versions. v0.6 2012-06-24 21:37:05 -07:00
Stefan van der Walt 36a39249ee PKG: Update version to 0.6. 2012-06-24 21:36:28 -07:00
Stefan van der Walt 9731b872f2 DOC: Add 0.6 release notes. 2012-06-24 21:35:19 -07:00
Tony S Yu 9bcda27336 Skip test that fails for PIL < 1.1.7 2012-06-24 22:25:44 -04:00
tonysyu f487221c3a Merge pull request #208 from stefanv/io_reset
ENH: Allow resetting the plugin state.
2012-06-24 18:37:14 -07:00
tonysyu c4854e78f3 Merge pull request #119 from stefanv/ssim
ENH: Add structural similarity index and gradient.
2012-06-24 18:27:49 -07:00
Stefan van der Walt b8d43b20c9 Merge pull request #190 from tonysyu/plot2rst
ENH: Replace `gen_rst` Sphinx extension with `plot2rst`.
2012-06-24 18:15:11 -07:00
Stefan van der Walt 4c66c18f0d BUG: Fix structural similarity to use new signature for view_as_windows. Remove bad gradient check. 2012-06-24 18:07:35 -07:00
Stefan van der Walt dd61f4830e BUG Fix invalid import of structural_similarity. 2012-06-24 18:03:46 -07:00