Commit Graph
245 Commits
Author SHA1 Message Date
Stefan van der Walt dead8612c7 Correctly compare mask to None 2014-06-15 15:04:40 +02:00
Juan Nunez-Iglesias 34cf1f9243 Update parameter list in docstring for consistency 2014-06-12 01:20:53 +10:00
Juan Nunez-Iglesias 8cba840a05 Clarify mask argument in medial_axis docstring 2014-06-11 20:29:06 +10:00
Johannes L. Schönberger 6546b9dba4 Merge pull request #1007 from stefanv/label_refactor
Move `morphology.label` to `measure.label` and prepare for 0-label transition
2014-05-25 21:56:42 -04:00
Stefan van der Walt c0be2ec505 Correctly apply catch_warnings() 2014-05-26 01:21:58 +02:00
Stefan van der Walt 135965fbe4 Avoid circular imports 2014-05-25 20:05:17 +02:00
Stefan van der Walt 5b07567973 Merge pull request #1005 from JDWarner/int_idx_patch
Fix NumPy non-integer indexing deprecation warnings
2014-05-13 17:48:11 +02:00
Johannes Schönberger 7b86728498 Add full test coverage for corner_subpix and fix bug 2014-05-10 10:12:41 -04:00
Johannes Schönberger e4a60e4bf2 Test invalid input for selem 2014-05-10 09:44:59 -04:00
Johannes Schönberger 69a0255a28 Test invalid input for seed 2014-05-10 09:07:01 -04:00
Stefan van der Walt 4da4ec5b89 Mention which parameters to label are optional. Simplify label deprecation. 2014-05-09 03:00:39 +02:00
Josh Warner (Mac) 77b036eb89 Merge branch 'master' of git://github.com/scikit-image/scikit-image into int_idx_patch 2014-05-08 19:57:06 -05:00
Stefan van der Walt 1de102a885 Fix broken and circular imports 2014-05-09 02:53:57 +02:00
Stefan van der Walt 5ba3ea421c Fix imports and suppress deprecation warnings 2014-05-08 19:14:38 +02:00
Stefan van der Walt 46829c6a33 Move implementation of label to measure submodule 2014-05-08 18:04:03 +02:00
Stefan van der Walt 7152d5c314 Move label to measure module (with deprecation). Warn that background parameter will default to 0 in v0.12. 2014-05-08 17:49:47 +02:00
Josh Warner (Mac) 1ca0eef825 FIX: Non-integer indexing deprecation warnings 2014-05-08 00:39:54 -05:00
Josh Warner (Mac) b8334e85c8 failUnless -> assertTrue 2014-05-07 23:16:42 -05:00
Johannes Schönberger cedcff8f2b Remove deprecated skimage.morphology.greyscale_* 2014-04-11 10:05:51 -04:00
Jeremy Metz ef779d1588 Fixed PEP8 spaces 2014-02-02 12:40:37 +00:00
Jeremy Metz 0136fd5915 Removed trailing whitespaces 2014-02-01 20:30:39 +00:00
Jeremy Metz 920c3efb83 Added new convex_hull_image qhull test 2014-02-01 16:17:53 +00:00
Jeremy Metz add4b51db7 QH6228 Bug fix - remove offset from coords 2014-01-31 13:46:28 +00:00
Johannes Schönberger a2cde5ebb0 Test invalid inplace operation 2013-11-22 00:17:59 +01:00
Johannes Schönberger fb1c1d39f0 Fix misspelled sections 2013-11-09 23:01:58 +01:00
Johannes Schönberger dd572a696f Fix medial_axis and skeletonize doctests 2013-11-03 23:50:53 +01:00
Johannes Schönberger facc8f5c71 Fix watershed doctest 2013-11-03 09:31:54 +01:00
Johannes Schönberger c7fbd3282b Fix doctest of remove_small_objects 2013-11-03 09:28:46 +01:00
Johannes Schönberger 1b66ab479a Speed up memory views in watershed function 2013-10-18 21:00:40 +02:00
Johannes Schönberger 3e28168914 Speed up memory views in skeletonize function 2013-10-18 20:56:18 +02:00
Johannes Schönberger 2bf47ada90 Change data type of convolution to more general uint 2013-10-15 18:11:03 +02:00
Johannes Schönberger 505467008d Fix dtype error on 32bit systems as convolve is only implemented for 32bit integers 2013-10-15 15:49:10 +02:00
Johannes Schönberger 5e2b04c486 Remove deprecated is_local_maximum function 2013-10-14 19:52:32 +02:00
Johannes Schönberger 29d8e0d1d9 Merge pull request #778 from stefanv/binary_morph_out
Simplify output handling for binary morphology.
2013-10-14 08:22:46 -07:00
Stefan van der Walt d182286e53 Always use uint8 for binary view. 2013-10-14 16:41:08 +02:00
François Boulogne eb4c5c9ee4 PEP8 2013-10-14 16:14:30 +02:00
Stefan van der Walt f83c7a95e3 Tweak markup of docstring. 2013-10-14 13:58:04 +02:00
Stefan van der Walt 2a944ef689 Update docs to match output. 2013-10-14 13:11:51 +02:00
Stefan van der Walt d5e2ab0b13 Allocate less memory, if possible. 2013-10-14 13:02:38 +02:00
Stefan van der Walt 89d703ca46 Pre-allocate memory for convolution and re-use for output, if no user-override specified. 2013-10-14 12:58:27 +02:00
Stefan van der Walt 6111831994 Revert to >0 for determining binary values. Document that input should be binary. 2013-10-12 21:55:13 +02:00
Stefan van der Walt 4f74a007d9 Test that output argument is correct. 2013-10-12 19:57:35 +02:00
Stefan van der Walt ceb2e4c5d4 Test that output argument is utilized. 2013-10-12 19:51:00 +02:00
Stefan van der Walt 9329d0ad56 Restore @ahojnnes's overflow test. Correctly assign out argument. 2013-10-12 19:44:14 +02:00
Stefan van der Walt 9ff4316cbb Fix overflow in NumPy 1.7 as suggested by Julian Taylor. 2013-10-12 19:23:54 +02:00
Stefan van der Walt b022dd6dfb Simplify output handling for binary morphology. 2013-10-12 19:10:23 +02:00
Johannes Schönberger f8d34e8bf9 Deprecate out parameter 2013-10-11 19:05:18 +02:00
Johannes Schönberger b187144a5f Add support older numpy versions 2013-10-11 19:04:42 +02:00
Johannes Schönberger 2a84e45389 Remove unused import 2013-10-11 19:04:42 +02:00
Johannes Schönberger ecf10a7a48 Reduce number of specializations 2013-10-11 19:04:42 +02:00