Commit Graph

89 Commits

Author SHA1 Message Date
Tony S Yu 425a4ea707 Use feature.peak_local_max instead of custom peak detection. 2012-05-08 21:32:06 -04:00
Tony S Yu e8461e22dd Move template matching to feature subpackage 2012-05-08 21:32:05 -04:00
Tony S Yu 01d66fc501 Reorganize example so that all plotting code is at the end 2012-05-08 21:28:50 -04:00
Tony S Yu e6098e140b Replace assert statement with plot to show matches 2012-05-08 21:28:50 -04:00
Tony S Yu 12b39dae5c Fix assert failure in example 2012-05-08 21:28:50 -04:00
Tony S Yu 6272c312c4 Simplify _template.pyx using integral_image from transform subpackage.
Remove `integral_images` and `integral_image_sqr` from _template.pyx in favor of calls to `skimage.transform.integral_image`.

This change required `match_template` arguments ("image" and "template") to be changed from float to double.

After this change, the template test runs about 25% slower.
2012-05-08 21:28:50 -04:00
Tony S Yu f8e0478542 Remove dependency on math module 2012-05-08 21:28:49 -04:00
Tony S Yu 23311a0993 Convert template matching Pull Request to skimage
This commit takes the template matching implementation from holtzhau/template (Pull Request #13) and converts the code to use the new package name (scikits.image --> skimage).
2012-05-08 21:28:49 -04:00
tonysyu 085af1d9e5 Merge pull request #184 from stefanv/fast_coordinate_map
Implement fast image warping.
2012-05-08 18:03:07 -07:00
Stefan van der Walt a5d8593408 STY: Cleanups after Tony's review. 2012-05-04 12:16:05 -07:00
Tony S Yu 942dd52316 Add "page.png" and use for threshold example. 2012-05-03 12:11:33 -04:00
Stefan van der Walt 7df3707c33 ENH: Implement fast coordinate transformations. 2012-05-02 21:31:23 -07:00
Tony S Yu e84abb1b67 DOC: Add example of adaptive thresholding. 2012-04-30 21:34:19 -04:00
Tony S Yu a0c3e49742 Merge pull request #166 from 'vincent-albufera/exemple_modif'
DOC: Improve harris corners and peak detection examples and docstrings.
2012-04-25 00:52:53 -04:00
Johannes Schönberger af345f1a32 improved color assignment of circle in shapes example script 2012-04-23 18:45:11 +02:00
Johannes Schönberger 5b854d9b3c changed interface of draw.polygon function for a more consistent usage 2012-04-23 18:38:20 +02:00
Johannes Schönberger 48328cda8a combined all draw functions in one example script 2012-04-23 17:07:36 +02:00
Johannes Schönberger 4834d7eb4d added example script for draw.polygon function 2012-04-23 15:37:07 +02:00
Vincent Albufera 5491d85705 Addition of examples in the harris and peak local max function 2012-04-20 10:54:03 +02:00
Vincent Albufera 2aca8cd791 Addition of examples in the harris and peak local max function 2012-03-26 15:39:59 +02:00
Vincent Albufera 8c9777b967 Addition of examples in the harris and peak local max function 2012-03-21 14:27:12 +01:00
Vincent Albufera 5bf77b54c2 No interpolation when displaying small patches in example 2012-03-09 13:59:00 +01:00
Tony S Yu 520c961a0c DOC: minor example clean up. 2012-02-20 09:45:17 -05:00
Tony S Yu cb93ebbf61 DOC: Limit figures to 8 inch widths. 2012-02-20 09:40:56 -05:00
Stefan van der Walt 0c304d5acd Merge pull request #138 from poilvert/array_views
ENH: Add window views and montage.
2012-02-19 00:27:09 -08:00
Nicolas Pinto ac54f6969e DOC: remove dependency on PIL, see PR #138 2012-02-14 20:01:10 -05:00
Nicolas Pinto e77d7a7e44 DOC: don't divide by 255 when it's not required ;-) 2012-02-14 19:56:42 -05:00
Nicolas Pinto 5e9ad08b80 DOC: update view_as_blocks and gabors_from_lena example using comments from @stevanv (PR #138) 2012-02-14 19:45:38 -05:00
Nicolas Pinto c715adf1c0 DOC: add example of use of view_as_blocks with kmeans for simple dictionary learning 2012-02-14 00:16:00 -05:00
Nicolas Poilvert 96c2b3fc9d DOC: add example for util.shape.view_as_{blocks,windows} 2012-02-14 00:07:37 -05:00
emmanuelle acaa05c9ed User guide: first draft of "getting help" 2012-02-13 23:16:09 +01:00
Stefan van der Walt b88a9ac7ea DOC: Fix formatting typos in HoG example. 2012-02-10 15:04:58 -08:00
Stefan van der Walt d1c5d92552 DOC: Import hog from skimage instead of scikits-image. Rescale the output histogram to be more visible. 2012-02-10 14:51:29 -08:00
Brian Holt 0a8d9675b1 pep8 2012-02-10 14:38:44 -08:00
Brian Holt 8a4bd8510d added HOG example 2012-02-10 14:38:43 -08:00
Stefan van der Walt 538747746a Merge pull request #107 from tonysyu/rescale-intensity
ENH: Add rescale_intensity function with test and example.
2012-02-05 15:47:18 -08:00
Stefan van der Walt ec65e1f541 DOC: Fix some typos in plot_equalize example. 2012-02-03 16:10:08 -08:00
Stefan van der Walt 782fbabff3 ENH: Add contrast stretching to histogram equalization example. 2012-02-02 21:18:31 -08:00
Tony S Yu 96ba7eb4bd Move harris corner detection from filter to feature subpackage. 2012-02-02 22:45:23 -05:00
Tony S Yu fd0e88b986 Minor modifications to Harris corner detector
* Add some references.
* Make keyword argument explicit in example.
* Remove test class in favor of functions since no setup was required.
* Clean up docstrings.
2012-02-02 22:33:56 -05:00
emmanuelle 46d330591f ENH Tony's comments on random walker 2012-01-23 19:47:16 +01:00
emmanuelle 528187c2b0 ENH: addressed Tony's comments (renaming of functions, doc) 2012-01-21 11:43:53 +01:00
emmanuelle d1e608bfe9 Random walker algo for segmentation + example 2012-01-15 17:22:59 +01:00
tonysyu 23d0bc5bc0 Merge pull request #106 from NelleV/harris_corner_detection
Harris corner detection
2012-01-09 17:38:00 -08:00
Tony S Yu f5037203f2 Add rescale_intensity function with test and example. 2011-12-27 11:01:53 -08:00
Stefan van der Walt 92fe9d0d07 DOC: Display thresholding example with gray colormap. 2011-12-26 02:12:34 -08:00
Stefan van der Walt 4e054fce7c DOC: Move around plot statements so that all axes are labeled. 2011-12-26 02:01:08 -08:00
Stefan van der Walt 19fa34f269 DOC: Rename equalize example to match function name. 2011-12-26 01:55:00 -08:00
Nelle Varoquaux 7ff98597e2 Small fixes on the Harris corner detector - documentation, method renaming etc 2011-12-22 22:08:27 +01:00
Tony S Yu d4ca519ca5 Rename equalize_hist to equalize and minor cleanup 2011-12-22 10:48:28 -08:00