Skip to content

Commit

Permalink
update changelog, fix doc strings
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Müller committed Oct 3, 2017
1 parent f435205 commit dca88c5
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 52 deletions.
29 changes: 15 additions & 14 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,26 +1,27 @@
0.2.0
- Updated docs and examples (#1)
0.1.9
- Moved docs to readthedocs.io
0.1.9
- No code changes
0.1.8
- Added support for NumPy 1.10.
- Added support for NumPy 1.10
0.1.7
- Improved padding for backprojection.
- Improved padding for backprojection
0.1.6
- Removed a memory leak.
- Increase compatibility to jobmanager.
- Improved documentation.
- Removed a memory leak
- Increase compatibility to jobmanager
- Improved documentation
0.1.5
- Fixed an example.
- Fixed bug in 3D reconstruction.
- Fixed an example
- Fixed bug in 3D reconstruction
0.1.4
- Added 3D reconstruction methods.
- Added 3D reconstruction methods
0.1.3
- Switched to jobamanger package for tracking of progress.
- Adde fan-beam helper methods.
- Switched to jobamanger package for tracking of progress
- Adde fan-beam helper methods
0.1.2
- Renamed callback functions.
- Renamed callback functions
0.1.1
- Mainly code cleanup.
- Mainly code cleanup
0.1.0
- Initial GitHub commit.
- Initial GitHub commit
29 changes: 10 additions & 19 deletions radontea/_Back.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,11 @@ def backproject(sinogram, angles, filtering="ramp",
'hann'}, optional
Specifies the Fourier filter. Either of
``ramp``
mathematically correct reconstruction
``shepp-logan``
``cosine``
``hamming``
``hann``
- "ramp" :mathematically correct reconstruction
- "shepp-logan"
- "cosine"
- "hamming"
- "hann"
weight_angles : bool
If ``True``, weights each backpropagated projection with a factor
Expand Down Expand Up @@ -241,15 +236,11 @@ def fourier_map(sinogram, angles, intp_method="cubic",
Method of interpolation. For more information see
`scipy.interpolate.griddata`. One of
``nearest``
instead of interpolating, use the points closest to
the input data.
``linear``
bilinear interpolation between data points.
``cubic``
interpolate using a two-dimensional poolynimial surface.
- "nearest": instead of interpolating, use the points closest
to the input data
- "linear": bilinear interpolation between data points
- "cubic": interpolate using a two-dimensional poolynimial
surface
jmc, jmm : instance of :func:`multiprocessing.Value` or `None`
The progress of this function can be monitored with the
Expand Down
29 changes: 10 additions & 19 deletions radontea/_Back_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,16 +113,11 @@ def backproject(sinogram, angles, filtering="ramp",
'hann'}, optional
Specifies the Fourier filter. Either of
``ramp``
mathematically correct reconstruction
``shepp-logan``
``cosine``
``hamming``
``hann``
- "ramp" :mathematically correct reconstruction
- "shepp-logan"
- "cosine"
- "hamming"
- "hann"
padding : bool, optional
Pad the input data to the second next power of 2 before
Expand Down Expand Up @@ -208,15 +203,11 @@ def fourier_map(sinogram, angles, intp_method="cubic",
Method of interpolation. For more information see
`scipy.interpolate.griddata`. One of
``nearest``
instead of interpolating, use the points closest to
the input data.
``linear``
bilinear interpolation between data points.
``cubic``
interpolate using a two-dimensional poolynimial surface.
- "nearest": instead of interpolating, use the points closest
to the input data
- "linear": bilinear interpolation between data points
- "cubic": interpolate using a two-dimensional poolynimial
surface
jmc, jmm : instance of :func:`multiprocessing.Value` or `None`
The progress of this function can be monitored with the
Expand Down

0 comments on commit dca88c5

Please sign in to comment.