Skip to content

Commit

Permalink
Exposed routines in skued.image to base namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurentRDC committed Aug 23, 2017
1 parent 8c73483 commit 7b8707c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
20 changes: 10 additions & 10 deletions docs/source/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,22 +30,22 @@ Dual-tree Complex Wavelet Transform
Image Analysis
==============

Combine the routines in the :mod:`skued.image` module with
`npstreams`_ to process diffraction data in parallel. Please refer
Combine the routines below with
`npstreams`_ to process diffraction data in parallel. Refer
to the :ref:`tutorial on image manipulation <image_analysis_tutorial>`
for some examples.

.. autosummary::
:toctree: functions/

image.azimuthal_average
image.powder_center
image.align
image.ialign
image.diff_register
image.shift_image
image.nfold
image.mnxc2
azimuthal_average
powder_center
align
ialign
diff_register
shift_image
nfold
mnxc2

Crystal structure
=================
Expand Down
4 changes: 2 additions & 2 deletions skued/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
translation_rotation_matrix)
from .array_utils import mirror, repeated_array, cart2polar, polar2cart
from .baseline import baseline_dt, baseline_dwt, dtcwt, idtcwt
from npstreams import chunked, last, linspace, multilinspace
from npstreams import pmap, preduce
from .image import (azimuthal_average, powder_center, align, ialign, shift_image, diff_register,
nfold, mnxc2)
from .plot_utils import spectrum_colors, rgb_sweep
from .quantities import electron_wavelength, interaction_parameter, lorentz
from .structure import Crystal, Atom, Lattice
Expand Down
2 changes: 1 addition & 1 deletion skued/simulation/potential.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
==================================
"""
from functools import partial
from .. import chunked, minimum_image_distance, repeated_array
from .. import minimum_image_distance, repeated_array
from scipy.special import k0 as bessel
import numpy as np
from numpy import pi
Expand Down

0 comments on commit 7b8707c

Please sign in to comment.