Commit Graph
3096 Commits
Author SHA1 Message Date
Almar e9ce0f60b9 Create dummy WindowsError that is an actual Exception instead of None. The previous solution prevented installation on py3.3 and OSX 10.6.1. 2013-03-27 21:12:42 +01:00
Johannes Schönberger 027e21afef Merge pull request #480 from sciunto/hl_review
Hough transoform: review
2013-03-25 00:29:09 -07:00
François Boulogne 35d6973215 fix deprecated variable 2013-03-24 16:34:27 +01:00
François Boulogne 96d0e677dd cosmectics (flake8) 2013-03-24 15:52:14 +01:00
François Boulogne 0e4d107754 fix signature 2013-03-24 15:39:07 +01:00
François Boulogne 42e872f926 fix names 2013-03-24 15:22:42 +01:00
François Boulogne a68434b330 big clean-up! 2013-03-24 15:11:55 +01:00
François Boulogne caee53c83c doc, minor improv. 2013-03-22 23:31:06 +01:00
François Boulogne 29b91ca01d minor doc improv. 2013-03-22 23:16:13 +01:00
François Boulogne 33060e3343 Fix docstring 2013-03-22 23:12:18 +01:00
François Boulogne f18be31822 Fix and improve example 2013-03-22 23:12:05 +01:00
François Boulogne 22158fc9da improve unittests 2013-03-22 23:11:29 +01:00
François Boulogne 12d2cd6855 be consistant with python implementation 2013-03-22 22:07:39 +01:00
Tony S Yu baa67eafca Merge pull request #477 from JDWarner/convert_dtype_to_astype
Use `image.astype(dtype)` instead of `dtype(image)`
2013-03-21 20:11:15 -07:00
Josh Warner (Mac) 4b43e9f33e workaround: convert dtype(image) to image.astype(dtype) 2013-03-21 00:17:56 -05:00
Johannes Schönberger c64350a3a0 Merge pull request #475 from sciunto/docstring
Various docstring corrections + fix an example
2013-03-20 10:43:46 -07:00
François Boulogne 4e0db80c24 remove docstring 2013-03-20 18:30:52 +01:00
François Boulogne 30af0a66a2 replace hough() by hough_line() in doc 2013-03-20 18:30:19 +01:00
François Boulogne 1ddf37b6b6 add note for distance/angle convention. Thanks to Emre Safak. 2013-03-20 08:51:04 +01:00
François Boulogne ee915cd9ea Merge branch 'docstring' of github.com:sciunto/scikit-image 2013-03-20 08:37:54 +01:00
François Boulogne cebc9839e4 Fix mistake in example 2013-03-19 21:18:30 +01:00
François Boulogne 6b1c809a78 DOC: add docstring for deprecation 2013-03-19 21:16:34 +01:00
François Boulogne 30e8437ec4 Merge branch 'master' of git://github.com/scikit-image/scikit-image 2013-03-19 16:16:49 +01:00
Stefan van der Walt a751c7c2af Merge pull request #473 from ahojnnes/feature-refs
DOC: Fix reference syntax for corner detectors.
2013-03-19 04:47:24 -07:00
Johannes Schönberger 18b3d1f7e3 Fix reference syntax for corner detectors 2013-03-19 09:33:10 +01:00
Johannes Schönberger 9968dfd8fe Merge pull request #467 from malcolmreynolds/fix-num-peaks-typo
FIX: number of peaks returned from feature.corner_peaks
2013-03-18 08:55:17 -07:00
Malcolm Reynolds 042b75d05f FIX: changed xrange to range so Python 3 works. 2013-03-18 15:31:45 +00:00
Malcolm Reynolds 920e41398d FIX: move corner detection outside loop in test_num_peaks. 2013-03-18 15:23:35 +00:00
Malcolm Reynolds 0fde67bb56 TEST: added test for num_peaks kwarg in peak_local_max. 2013-03-18 15:13:18 +00:00
Tony S Yu 7b0fd4a5d8 Merge pull request #470 from ahojnnes/regionprops-example
Replace ndimage with skimage.transform.* functions in examples
2013-03-17 20:52:18 -07:00
Johannes Schönberger f80cd8114b Replace ndimage.zoom function in radon transform example with builtin skimage function 2013-03-17 10:57:08 +01:00
Johannes Schönberger 045f64a00d Explicitly import local_binary_pattern function 2013-03-17 10:54:35 +01:00
Johannes Schönberger c475581aa2 Replace rotate function of local binary pattern example with builtin skimage function 2013-03-17 10:54:05 +01:00
Johannes Schönberger 7f755e83db Remove unused import 2013-03-17 10:50:32 +01:00
Johannes Schönberger 96f08e68d0 Use nearest neighbour interpolation to avoid different labels 2013-03-17 10:48:59 +01:00
Johannes Schönberger 874c5647bc Replace scipy.ndimage routine with skimage.ndimage.rotate 2013-03-17 10:47:18 +01:00
Tony S Yu dabb2b682d Merge pull request #468 from ahojnnes/rotate-doc
Fix parameter list format error of rotate
2013-03-16 11:48:18 -07:00
Johannes Schönberger c5bdf00e82 Fix parameter list format error of rotate 2013-03-16 18:03:04 +01:00
François Boulogne a3d73bdd61 DOC: minor fix ellipse_perim. 2013-03-16 13:25:01 +01:00
Malcolm Reynolds 44095eef81 FIX: number of peaks returned from feature.corner_peaks
corner_peaks accepted a num_peaks argument, but the call
to peak_local_max inside the function used np.inf instead
of the value of this keyword argument, leading to an unbounded
number of peaks being returned.
2013-03-15 18:50:43 +00:00
Stefan van der Walt a41d74caa4 Merge pull request #441 from spotter/color_deconv
ENH: Adding color deconvolution for immunohistochemical images.
2013-03-14 06:04:22 -07:00
Xavier Moles Lopez f956f3257d FIX: Added myself in CONTRIBUTORS.txt 2013-03-14 13:59:15 +01:00
Xavier Moles Lopez d0a15a7cf9 FIX: Example in combine_stains docstring. 2013-03-13 15:14:39 +01:00
Stefan van der Walt bad3915d2a Merge pull request #463 from ahojnnes/pdf-docs
DOC: Fix LaTeX documentation.
2013-03-13 07:02:38 -07:00
Xavier Moles Lopez b75776cc2e ENH: Updated stain separation function docstrings and added matrices to __all__ 2013-03-13 14:35:16 +01:00
Johannes Schönberger 5e67572ac7 Do not set paper size to allow manual setting through make 2013-03-13 12:16:58 +01:00
Johannes Schönberger 1d9fb145f6 Avoid duplicate python module index 2013-03-13 12:09:39 +01:00
Johannes Schönberger 169d945534 Fix make.bat 2013-03-13 12:08:08 +01:00
Johannes Schönberger d68515f0d8 Copy some useful latex settings from NumPy 2013-03-13 12:03:44 +01:00
Johannes Schönberger 3f31b48fe1 Use plot_directive from matplotlib.sphinxext if available 2013-03-13 11:10:03 +01:00