Josh Warner
|
a2d74e5260
|
Merge pull request #1421 from hohlraum/hough_fix
FIX: Fix missing peaks in hough_line_peaks.
|
2015-10-08 18:48:48 -07:00 |
|
Julius Bier Kirekgaard
|
e79a0a2dc1
|
Added pep8 spaces
|
2015-08-30 15:35:50 +01:00 |
|
Julius Bier Kirekgaard
|
8c5ce8504a
|
assert equal scalar, seqeunce output of hough circle
|
2015-08-30 15:13:45 +01:00 |
|
Julius Bier Kirekgaard
|
9a4a3c674e
|
test and docstring update for hough_circle
|
2015-08-30 13:16:33 +01:00 |
|
Julius Bier Kirekgaard
|
29fd2864cd
|
hough_circle radius accepts scalars and lists
|
2015-08-30 12:52:38 +01:00 |
|
Julius Bier Kirekgaard
|
b5fd7bc885
|
Fixed forgotten output for docstring example
|
2015-08-28 21:09:42 +01:00 |
|
Julius Bier Kirekgaard
|
002fc70759
|
Shorter hough_circle example
|
2015-08-28 21:04:52 +01:00 |
|
Julius Bier Kirekgaard
|
3c41e75b22
|
Added whitespace to comply with pep8
|
2015-08-28 20:46:14 +01:00 |
|
Julius Bier Kirekgaard
|
5f5af64551
|
Example for hough_circle
|
2015-08-28 20:08:11 +01:00 |
|
Johannes Schönberger
|
ec64872fd5
|
Some doc string fixes for recently merged code
|
2015-08-20 19:08:54 -04:00 |
|
Johannes Schönberger
|
236aa208fe
|
Merge pull request #1583 from grlee77/fix_interp_modes
FIX: bug in 'reflect' and 'wrap' coordinate mapping
|
2015-08-20 18:53:11 -04:00 |
|
Gregory R. Lee
|
49b4f69ac0
|
MAINT: remove unused import
|
2015-08-18 12:22:10 -04:00 |
|
Gregory R. Lee
|
1303317512
|
BUG: fix one additional location where ndimage mode conversion was needed
|
2015-08-14 09:38:02 -04:00 |
|
Gregory R. Lee
|
c7a82f8ceb
|
MAINT: minor spacing issues and typos fixed
|
2015-08-13 23:39:56 -04:00 |
|
Gregory R. Lee
|
81ea7a6e34
|
MAINT: All modes in _shared.interpolation.pxd were changed to be consistent with numpy.pad naming conventions. Specifically 'nearest' was changed to 'edge' and 'mirror' was changed to 'reflect'. All functions with a mode argument that rely on these functions had their inputs changed accordingly. For now there is a deprecation warning if the user supplies mode 'nearest'. Mode 'mirror' never appeared in an official release of skimage and so has no corresponding deprecation warning.
|
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
|
48622ca179
|
TST: add test for resizing 2D image with a 3D output shape
|
2015-08-13 23:39:54 -04:00 |
|
Gregory R. Lee
|
9e9c65b97c
|
ENH: add mode 'mirror' to interpolation.pxd and dependent functions
|
2015-08-13 23:39:54 -04:00 |
|
Gregory R. Lee
|
3ae1e3138a
|
BUG: bugfix for resize: upgrade image to 3d if necessary
|
2015-08-13 23:39:54 -04:00 |
|
Stefan van der Walt
|
83d5ff9001
|
Consistently use relative imports
|
2015-07-11 15:41:37 -05:00 |
|
Josh Warner
|
7a2b0a70f5
|
Merge pull request #1459 from vighneshbirodkar/seam_carving
FEAT: Seam Carving
|
2015-06-18 12:32:19 -05:00 |
|
Vighnesh Birodkar
|
85946c8eed
|
Changed return type to bint and improved code comments
|
2015-06-16 19:48:14 +05:30 |
|
Vighnesh Birodkar
|
fee667b35c
|
preallocated seam_buffer and added noil
|
2015-06-15 20:49:26 +05:30 |
|
Vighnesh Birodkar
|
e247e3bacc
|
Precomputation optimizations and docstring changes
|
2015-06-15 20:19:52 +05:30 |
|
Dhruv Jawali
|
55fc07edb9
|
removed reduntant continue, added Cython flags and fixed negative indexing
|
2015-06-13 23:25:36 +05:30 |
|
Juan Nunez-Iglesias
|
56d62b39be
|
Split scipy.ndimage & spatial into different lines
This improves the readability of the import code and is in line with
PEP8 recommendations.
|
2015-06-11 11:36:48 +10:00 |
|
Vighnesh Birodkar
|
557354668e
|
removed debug print in test
|
2015-06-11 01:04:46 +05:30 |
|
Vighnesh Birodkar
|
5a869dc70e
|
Added code comments
|
2015-06-11 00:51:52 +05:30 |
|
Vighnesh Birodkar
|
3f9c800514
|
Modfied test to use new API and added code to remove remaining seams if any
|
2015-06-11 00:47:13 +05:30 |
|
Vighnesh Birodkar
|
06220903a1
|
Formatting changes
|
2015-06-11 00:20:09 +05:30 |
|
Vighnesh Birodkar
|
ae35dcceb4
|
docstring updates
|
2015-06-10 22:28:09 +05:30 |
|
Vighnesh Birodkar
|
eac5663251
|
Changed signatures to use energy map
|
2015-06-10 21:39:09 +05:30 |
|
Vighnesh Birodkar
|
49037f69b0
|
added removal function
|
2015-06-10 00:11:03 +05:30 |
|
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 |
|
Vighnesh Birodkar
|
37d8a8447b
|
Modifed code to use seam map
|
2015-06-08 23:11:57 +05:30 |
|
Vighnesh Birodkar
|
66caaa5b9f
|
Corrected testing code
|
2015-06-07 00:40:05 +05:30 |
|
Vighnesh Birodkar
|
2cc4066097
|
2d images converted to 3d before removing seams
|
2015-06-06 22:42:18 +05:30 |
|
Vighnesh Birodkar
|
cf98558196
|
pep8 changes
|
2015-06-06 21:51:36 +05:30 |
|
Vighnesh Birodkar
|
c332fd5363
|
docstring change
|
2015-06-06 21:46:50 +05:30 |
|
Johannes Schönberger
|
7337a3e14b
|
Do not acquire GIL for hough_line
|
2015-05-19 18:57:20 -07:00 |
|
Johannes Schönberger
|
83fe07097f
|
Do not acquire GIL for hough_circle
|
2015-05-19 18:42:53 -07:00 |
|
Johannes Schönberger
|
7a8afbddf3
|
Do not acquire GIL for iradon_sart
|
2015-05-19 18:37:36 -07:00 |
|
Johannes Schönberger
|
07f2e4b93f
|
Test parallel execution of warp_fast
|
2015-05-19 18:25:01 -07:00 |
|
Johannes Schönberger
|
0d4c76948b
|
Do not acquire GIL for warp_fast
|
2015-05-19 18:22:32 -07:00 |
|
Johannes Schönberger
|
574159f724
|
Add decorator to test parallel execution of unit test
|
2015-05-19 17:57:47 -07:00 |
|
Vighnesh Birodkar
|
12fb4cbb86
|
Removed debug print and corrected formatting
|
2015-03-30 13:22:22 +05:30 |
|
Vighnesh Birodkar
|
1f570a145f
|
Formatting changes
|
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 |
|
Andrew Mark
|
ff29d2ccd1
|
Sort peak candidates by intensity before starting supression.
|
2015-03-12 04:39:18 +01:00 |
|