tv
|
dafa3d7dfe
|
The edge filter example contains all implemented filters apart from the Prewitt filter. Added the Prewitt filter to the example and compared it to the Scharr filter showing that Prewitt is even less rotationally invarient than the Sobel filter. Also added description.
|
2015-08-28 21:15:16 +01:00 |
|
Johannes Schönberger
|
ec64872fd5
|
Some doc string fixes for recently merged code
|
2015-08-20 19:08:54 -04:00 |
|
Gregory R. Lee
|
81764d8ed5
|
BUG: update the edge modes in the example to match the current naming convention
|
2015-08-13 23:39:56 -04:00 |
|
Gregory R. Lee
|
f45a72ee1f
|
BUG: fix import in plot_edge_modes.py
|
2015-08-13 23:39:55 -04:00 |
|
Gregory R. Lee
|
cef22e4234
|
MAINT: PEP8 fixes and _interpolation_test.pyx -> interpolation.pyx rename
|
2015-08-13 23:39:55 -04:00 |
|
Gregory R. Lee
|
fb0b258deb
|
DOC: update the edge mode example to include mirror
|
2015-08-13 23:39:54 -04:00 |
|
Gregory R. Lee
|
080c276791
|
DOC: add visual example of edge modes
|
2015-08-13 23:39:54 -04:00 |
|
Gregory R. Lee
|
c5a735420f
|
DOC: add visual example of edge modes
|
2015-08-13 23:39:53 -04:00 |
|
Josh Warner
|
be5f6fdc3f
|
Merge pull request #1562 from warmspringwinds/example_correction
DOCFIX: Add missing visualization of MB-LBP plot
|
2015-06-18 12:47:24 -05:00 |
|
Josh Warner
|
7a2b0a70f5
|
Merge pull request #1459 from vighneshbirodkar/seam_carving
FEAT: Seam Carving
|
2015-06-18 12:32:19 -05:00 |
|
dan
|
2516844cbd
|
added missing visualization of the plot
|
2015-06-17 10:45:50 +02:00 |
|
Josh Warner
|
91f74fd6c6
|
Merge pull request #1536 from warmspringwinds/mb-lbp
FEAT: multi-block local binary patterns (MB-LBP)
|
2015-06-16 12:43:32 -05:00 |
|
dan
|
88e3ac45fc
|
Documentation correction.
|
2015-06-15 22:12:02 +02:00 |
|
dan
|
c3e23b0604
|
Changed x/y to r/c notation. Documentation correction.
|
2015-06-15 22:04:09 +02:00 |
|
Vighnesh Birodkar
|
958f410a5c
|
Changes example explanation text
|
2015-06-15 20:47:24 +05:30 |
|
dan
|
496e8c090e
|
the function name was shortened to multiblock_lbp
|
2015-06-12 20:41:38 +02:00 |
|
dan
|
cbe8f99f30
|
Documenatation correction
|
2015-06-12 07:50:38 +02:00 |
|
dan
|
68f627aca7
|
pep8. Documenatation correction.
|
2015-06-12 07:49:00 +02:00 |
|
Vighnesh Birodkar
|
06220903a1
|
Formatting changes
|
2015-06-11 00:20:09 +05:30 |
|
Vighnesh Birodkar
|
1e49f49846
|
Added rocket image
|
2015-06-11 00:14:39 +05:30 |
|
Vighnesh Birodkar
|
eac5663251
|
Changed signatures to use energy map
|
2015-06-10 21:39:09 +05:30 |
|
dan
|
61442e040e
|
Switched to using integrate Cython function from skimage._shared. All changes were made to make it fit.
|
2015-06-10 11:38:20 +02:00 |
|
Vighnesh Birodkar
|
49037f69b0
|
added removal function
|
2015-06-10 00:11:03 +05:30 |
|
dan
|
c4f8e0126b
|
MBLBP is cdef function now. Corrected the example repeated imports.
|
2015-06-09 17:04:11 +02:00 |
|
dan
|
fb6ef72a31
|
public MBLBP function created for users to safely use it.
|
2015-06-09 14:56:29 +02:00 |
|
dan
|
d39434c30e
|
MBLBP optimized by taking out constants definition out of function. Visualization function of MBLBP now supports colors and opacity. Examples are updated.
|
2015-06-09 14:18:58 +02:00 |
|
Juan Nunez-Iglesias
|
0d134987f9
|
Harmonize all ndimage usage across the library
Only two forms remain in use:
- `from scipy import ndimage as ndi`
- `from scipy.ndimage import function`
|
2015-06-09 15:18:37 +10:00 |
|
Juan Nunez-Iglesias
|
82a5d0c5d9
|
Remove unused variable in example
|
2015-06-09 11:45:10 +10:00 |
|
Vighnesh Birodkar
|
37d8a8447b
|
Modifed code to use seam map
|
2015-06-08 23:11:57 +05:30 |
|
dan
|
83c3bd10c8
|
Cython implementation of MB-LBP. Updated MB-LBP visualization without matplotlib.Examples to gallery were added. Tests are made more easily readable.
|
2015-06-08 09:16:22 +02:00 |
|
Vighnesh Birodkar
|
cf98558196
|
pep8 changes
|
2015-06-06 21:51:36 +05:30 |
|
K.-Michael Aye
|
fdc7e6f99a
|
removing unnecessary loop counter
Why use an un-pythonic counter if it's not required? ;)
|
2015-06-05 11:54:28 -06:00 |
|
Kevin Keraudren
|
4dfa467c34
|
code simplification
|
2015-05-31 15:25:41 +01:00 |
|
Kevin Keraudren
|
941cdda8f5
|
the output of hough_ellipse needs to be rounded before being truncated
|
2015-05-30 20:47:37 +01:00 |
|
emmanuelle
|
a8a39ebf35
|
Used new function to generate binary blobs in existing gallery example
|
2015-05-09 12:08:21 +02:00 |
|
Vighnesh Birodkar
|
2e237887ba
|
corrected title in example
|
2015-03-30 13:22:22 +05:30 |
|
Vighnesh Birodkar
|
29ec5ee3ec
|
Added example and test
|
2015-03-30 13:22:22 +05:30 |
|
Vighnesh Birodkar
|
d30ed25968
|
Added implementation and doc string
|
2015-03-30 13:22:22 +05:30 |
|
Stefan van der Walt
|
d6870c6de7
|
Merge pull request #1066 from msarahan/PhaseCorrelation
Add subpixel shift registration
|
2015-03-02 08:30:45 -08:00 |
|
Stefan van der Walt
|
cf8d69ca81
|
Merge pull request #1077 from buzmakov/master
Increase reconstruction quality of FPB in iradon documentation example.
|
2015-03-02 08:24:47 -08:00 |
|
Michael Sarahan
|
71a89697f0
|
improve test coverage. Use SciPy's fourier_shift for examples.
|
2015-02-21 11:33:37 -08:00 |
|
Josh Warner
|
4644bdd347
|
Merge pull request #874 from emmanuelle/nlm_denoise
FEAT: NL-means denoising
|
2015-02-19 16:53:58 -06:00 |
|
Juan Nunez-Iglesias
|
5bd36730fc
|
Update plot_ncut example to use skimage.future
|
2015-02-03 15:13:02 +11:00 |
|
Juan Nunez-Iglesias
|
483d7d669b
|
Update plot_rag examples to use skimage.future
|
2015-02-03 15:10:54 +11:00 |
|
Michael Sarahan
|
03dc489457
|
Add subpixel-precision image translation registration function to feature module
|
2015-01-29 20:09:50 -08:00 |
|
Vighnesh Birodkar
|
d3775f9a3c
|
Improved test case
|
2015-01-29 20:33:14 +05:30 |
|
Vighnesh Birodkar
|
e79bbed001
|
Improved test case and removed duplicate test
|
2015-01-28 22:01:30 +05:30 |
|
Vighnesh Birodkar
|
c5f8f27e44
|
code cleanup and removed test
|
2015-01-27 21:33:22 +05:30 |
|
Vighnesh Birodkar
|
4c4d7108e1
|
handled the function with callbacks
|
2015-01-27 21:33:22 +05:30 |
|
Vighnesh Birodkar
|
a080aa724a
|
rebase and docstring changes
|
2015-01-27 21:33:21 +05:30 |
|