Juan Nunez-Iglesias
f0ecc4d00d
Rename regular_grid.py
2013-07-12 18:28:11 +02:00
Juan Nunez-Iglesias
e80dd18d7e
Add tests for 'regular_grid()'
2013-07-12 18:26:11 +02:00
Ankit Agrawal
083c13d7bd
Adding tests for BRIEF and pairwise_hamming_distance
2013-07-12 00:30:10 +08:00
Horea Christian
70aedc4556
Removed blank lines in between parameters.
2013-07-10 22:18:09 +02:00
Ankit Agrawal
11a2883c50
Broadcasting in pairwise_hamming_distance; numpy optimization in match_keypoints_brief
2013-07-10 22:41:21 +08:00
Ankit Agrawal
b737dc97a6
Making hamming_distance more generalized; improving docs
2013-07-09 23:47:44 +08:00
Jostein Bø Fløystad
4d307f5315
iradon_sart: Fix docstring typo.
2013-07-09 11:44:28 +02:00
Jostein Bø Fløystad
1cc42bd943
iradon_sart: Reformat references.
2013-07-09 11:44:03 +02:00
Horea Christian
633dca7c97
Refined syntax.
2013-07-09 00:28:57 +02:00
Jostein Bø Fløystad
18a06a0add
iradon_sart: Format docs correctly.
2013-07-08 14:50:06 +02:00
Juan Nunez-Iglesias
48d78c09d9
Improve doc for regular_grid.py
2013-07-08 14:41:42 +02:00
Ankit Agrawal
0988650fbe
Adding docs for match_keypoints_brief
2013-07-08 18:58:05 +08:00
François Boulogne
0e7e838cac
use shorter URL
2013-07-07 19:17:16 +02:00
François Boulogne
c2193cbc34
fix doctest
2013-07-07 10:42:32 +02:00
Ankit Agrawal
df607071a0
Adding match_keypoints_brief
2013-07-07 13:28:31 +08:00
François Boulogne
4f0c4f0306
add coffee picture from flickr
2013-07-07 00:38:06 +02:00
Jostein Bø Fløystad
bea50aa608
iradon: use util.pad for sinogram padding.
2013-07-06 20:55:54 +02:00
Jostein Bø Fløystad
b3746b9090
iradon: Cleanup by locating related code in one place.
2013-07-06 20:55:54 +02:00
Jostein Bø Fløystad
643a1bc1f5
iradon: Add test for cubic interpolation.
2013-07-06 20:55:53 +02:00
Jostein Bø Fløystad
b90ba783ef
iradon: Only allow interpolation methods working well.
...
Of the interpolation methods provided by scipy.interpolate.interp1d,
only cubic has been found to work well with the tests in skimage (other
methods are either identical to linear or nearest, or they produce bad
reconstructions).
2013-07-06 20:55:53 +02:00
Jostein Bø Fløystad
2be327815e
radon: Use numpy.interp/scipy.interpolate.
...
Scipy supports all interpolation kinds (nearest, linear) we need, while
numpy supports only linear interpolation. The numpy interpolation is
substantially faster, so this is used even though it complicates the
code slightly.
2013-07-06 20:55:53 +02:00
Jostein Bø Fløystad
5955e4e612
iradon: Reduce code duplication.
2013-07-06 20:55:53 +02:00
Jostein Bø Fløystad
ac460a9777
iradon: Use util.pad for array padding.
...
This depends on util.pad accepting 0s in pad_width, which has a proposed
solution in gh-634.
2013-07-06 20:55:53 +02:00
Jostein Bø Fløystad
237fb989b0
radon: Use util.pad for array padding.
2013-07-06 20:55:53 +02:00
Josh Warner
6edd707a1b
Merge pull request #637 from sciunto/minorfix
...
STYLE : PEP8 + import fix in hough_transform tests
2013-07-06 11:06:48 -07:00
Emmanuelle Gouillart
15ed7bdf59
Merge pull request #584 from josteinbf/iradon-algebraic
...
SART algorithm for tomography reconstruction
2013-07-06 10:24:24 -07:00
François Boulogne
cf3efba3c1
use previous import
2013-07-06 16:12:09 +02:00
Ankit Agrawal
f932db666e
Added more detailed example in docstrings
2013-07-06 20:51:01 +08:00
François Boulogne
de9d2662b1
MIN: fix pep8
2013-07-06 14:45:54 +02:00
François Boulogne
f316abbfbe
DOC: add doctrings
2013-07-06 14:34:55 +02:00
Ankit Agrawal
50ac1e89af
Fixing bug in _remove_border_keypoints
2013-07-06 20:34:32 +08:00
François Boulogne
e74b971335
erode & dilate -> private functions
2013-07-06 14:30:17 +02:00
Ankit Agrawal
71c0c2ce58
Added an example in skimage.feature._brief
2013-07-06 20:11:44 +08:00
François Boulogne
2dfeab83df
PEP8 + import
2013-07-06 13:49:01 +02:00
Johannes Schönberger
06aaf93e63
Use pad function and add option to define cval
2013-07-05 17:59:27 +02:00
Johannes Schönberger
b7f72ff15f
Fix deprecated function name referneces in doc strings
2013-07-05 17:34:38 +02:00
Johannes Schönberger
4f6b39dcd3
Rename block_* functions to local_*
2013-07-05 17:34:38 +02:00
Johannes Schönberger
9d806eb413
Update doc string for new functionality
2013-07-05 17:34:38 +02:00
Johannes Schönberger
c0a019eb12
Update test cases for block functions
2013-07-05 17:34:38 +02:00
Johannes Schönberger
5579aa2298
Fix doc string examples
2013-07-05 17:34:38 +02:00
Johannes Schönberger
f9546d0d14
Fix import namespace
2013-07-05 17:34:38 +02:00
Johannes Schönberger
04b14b42c9
Refactor local block functions and add additional functionality.
2013-07-05 17:34:38 +02:00
Jostein Bø Fløystad
794a4d7dae
arraypad: allow padding with zero entries (i.e. no padding).
2013-07-05 14:29:09 +02:00
Jostein Bø Fløystad
3cdfeccc7a
iradon_sart: flip signs to reflect changes to radon.
...
The changes to radon were introduced in gh-596.
2013-07-05 13:14:39 +02:00
Jostein Bø Fløystad
af47941435
iradon_sart: fix comment spelling.
2013-07-05 13:14:39 +02:00
Jostein Bø Fløystad
f2790d658c
iradon_sart: redefine projection center.
...
This reflects the bugfixes related to issue gh-592 implemented in
gh-596.
2013-07-05 13:14:39 +02:00
Jostein Bø Fløystad
06857d3b92
Radon tests: Check the correct error metric.
2013-07-05 13:14:39 +02:00
Jostein Bø Fløystad
a4870242b6
iradon_sart: Test clip functionality and add a test for it.
2013-07-05 13:14:39 +02:00
Jostein Bø Fløystad
dde4288865
test_radon_transform: Style fixes.
2013-07-05 13:14:39 +02:00
Jostein Bø Fløystad
266b202226
iradon_sart: Style fixes.
2013-07-05 13:14:38 +02:00