mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
|
Find the optimum shift to align two images using the FFT cross correlation.
The reference image must be the same size as the target image. Both the reference image and the target image being analyzed can be masked, normalized by mean subtraction and variance division, and windowed. Seperate masks and windows for the reference and target image are used.
The reference mask, reference window, and normalization flag must be set before setting the reference (unless using the defaults). If the reference mask, reference window, or normalization flag are changed then the reference must be set again. After configuring the reference, then operator() can be called repeatedly to determine the shifts for a sequence of imaages. The mask and window can be changed between calls without requiring resetting the reference. No new heap allocations take place on these calls to operator(), and the reference image is not re-normalized on each call.
The shift is reported in pixels such that if the mxlib imageShift function is used to shift the input image by the negative of the shifts, it will align with the reference at the center of the array.
Several peak finding methods are provided:
This class uses the real-to-complex transforms of FFTW by default. This should offer improved speed and memory use. For testing the complex-to-complex transforms can be used by defining XCFFT_C2C
before including this file.
_realImageT | is the Eigen-like array type used for image processing. Must have a real floating point Scalar type (float, double, etc.). See typedefs. |
Definition at line 81 of file imageXCorrFFT.hpp.
#include <improc/imageXCorrFFT.hpp>
Public Types | |
typedef _realImageT | realImageT |
the Eigen-like array type used for image processing | |
typedef _realImageT::Scalar | realT |
the scalar type of the image type | |
typedef std::complex< realT > | complexT |
Complex floating point type. | |
typedef eigenImage< complexT > | complexArrayT |
Complex eigen array type with Scalar==complexT. | |
Public Member Functions | |
Construction and Destruction | |
imageXCorrFFT () | |
Default c'tor. | |
Configuration Member Access | |
int | rows () |
Get the number of rows in the input images. | |
int | cols () |
Get the number of columns in the input images. | |
int | padFactor (realT os) |
Set the padding factor. | |
realT | padFactor () |
Get the padding factor. | |
int | rowsPadded () |
Get the number of rows in the padded cross-correlation. | |
int | colsPadded () |
Get the number of rows in the padded cross-correlation. | |
int | resize (int nrows, int ncols, realT padFactor) |
Set the size of the cross-correlation problem based on input image size. | |
int | resize (int nrows, int ncols) |
Set the size of the cross-correlation problem based on input image size. | |
int | refMaskIm (const realImageT &mask) |
Set the reference mask image. | |
const realImageT & | refMaskIm () |
Get a reference to the reference mask image. | |
bool | haveRefMask () |
Get the value of the haveRefMask flag. | |
int | maskIm (const realImageT &mask) |
Set the mask image. | |
const realImageT & | maskIm () |
Get a reference to the mask image. | |
bool | haveMask () |
Get the value of the haveMask flag. | |
int | refWinIm (const realImageT &win) |
Set the reference window image. | |
const realImageT & | refWinIm () |
Get a reference to the reference window image. | |
bool | haveRefWindow () |
Get the value of the haveRefWindow flag. | |
int | winIm (const realImageT &win) |
Set the window image. | |
const realImageT & | winIm () |
Get a reference to the window image. | |
bool | haveWindow () |
Get the value of the haveWindow flag. | |
void | normalize (bool no) |
Set the normalize flag. | |
bool | normalize () |
Get the current value of the normalize flag. | |
int | refIm (const realImageT &im0, realT padFactor) |
Set the reference image. | |
int | refIm (const realImageT &im0) |
Set the reference image. | |
const realImageT & | refIm () |
Get a reference to the reference image. | |
bool | refValid () |
Get the value of the reference valid flag. | |
void | maxLag (int ml) |
Set the maximum lag. | |
int | maxLag () |
Get the current maximum lag. | |
void | tol (realT nt) |
Set the tolerance of the interpolated-magnified image, in pixels. | |
realT | tol () |
Get the tolerance of the interpolated-magnified image, in pixels. | |
Working Memory Member Access | |
const realImageT & | refACIm () |
Get a reference to the reference auto-correlation image. | |
realT | refX0 () |
Get the x-shift of the reference image to itself. | |
realT | refY0 () |
Get the y-shift of the reference image to itself. | |
const realImageT & | normIm () |
Get a reference to the normalized image. | |
const realImageT & | ccIm () |
Get a reference to the cross correlation image. | |
const realImageT & | magIm () |
Get a reference to the magnified image. | |
Cross Correlation Operator | |
template<class imT > | |
int | operator() (realT &xShift, realT &yShift, const imT &im) |
Conduct the cross correlation to a specified tolerance. | |
template<class im0T , class imT > | |
int | operator() (realT &xShift, realT &yShift, im0T &im0, imT &im) |
Conduct the cross correlation to a specified tolerance. | |
Protected Member Functions | |
Peak Finding | |
void | findPeak (realT &xShift, realT &yShift) |
Protected Attributes | |
Configuration Member Data | |
int | m_rows { 0 } |
The number of rows in the images. | |
int | m_cols { 0 } |
The number of columns in the images. | |
realT | m_padFactor { 1 } |
The padding factor for the CC. | |
realT | m_padFactorR { 1 } |
realT | m_padFactorC { 1 } |
int | m_rowsPadded { 0 } |
The number of rows in the padded CC. | |
int | m_colsPadded { 0 } |
The number of columns in the padded CC. | |
realImageT | m_refMaskIm |
bool | m_haveRefMask { false } |
Flag indicating that a referece mask has been provided. | |
realImageT | m_maskIm |
bool | m_haveMask { false } |
Flag indicating that a mask has been provided. | |
realImageT | m_refWinIm |
Window image to use for the reference. | |
bool | m_haveRefWindow { false } |
Flag indicating that a window has been provided for the reference. | |
realImageT | m_winIm |
Window image for the target image. | |
bool | m_haveWindow { false } |
Flag indicating that a window has been provided. | |
bool | m_normalize { true } |
realImageT | m_refIm |
The normalized reference image. | |
bool | m_refValid { false } |
int | m_maxLag { 5 } |
The maximum lag to consider in the initial cross-correlation. Default is 5. | |
realT | m_tol { 0.1 } |
realT | m_magSize { 0 } |
realT | m_mag { 1 } |
xcorrPeakMethod | m_peakMethod { xcorrPeakMethod::interpPeak } |
The peak finding method to use. | |
Working Memory Member Data | |
realImageT | m_refACIm |
The auto-correlation image of the reference. | |
realT | m_refX0 { 0 } |
realT | m_refY0 { 0 } |
realImageT | m_normIm |
The normalized image. | |
realImageT | m_ccIm |
The cross-correlation image. | |
realImageT | m_magIm |
The magnified image, used if m_peakMethod == xcorrPeakMethod::interpPeak. | |
complexArrayT | m_ftIm0 |
Working memory for the FT of the reference image. | |
complexArrayT | m_ftWork |
Working memory for the FFT. | |
complexArrayT | m_ftWorkIn |
Working memory for the FFT input. | |
complexArrayT | m_ftWorkPadded |
Working memory for the padded inverse FFT input. | |
complexArrayT | m_ftWorkPaddedOut |
Working memory for the FFT and MFT output. | |
complexArrayT | m_mtWorkPadded |
Working memory for the MFT for xcorrPeakMethod::mftOversamp. | |
math::ft::fftT< fftOutT, fftInT, 2 > | m_fft_fwd |
FFT object for the forward transform. | |
math::ft::fftT< fftInT, fftOutT, 2 > | m_fft_bwd |
FFT object for the backward transform. | |
math::ft::mftT< complexT, complexT, 2 > | m_mft_bwd |
typedef eigenImage<complexT> mx::improc::imageXCorrFFT< _realImageT >::complexArrayT |
Complex eigen array type with Scalar==complexT.
Definition at line 99 of file imageXCorrFFT.hpp.
typedef std::complex<realT> mx::improc::imageXCorrFFT< _realImageT >::complexT |
Complex floating point type.
Definition at line 88 of file imageXCorrFFT.hpp.
typedef _realImageT mx::improc::imageXCorrFFT< _realImageT >::realImageT |
the Eigen-like array type used for image processing
Definition at line 84 of file imageXCorrFFT.hpp.
typedef _realImageT::Scalar mx::improc::imageXCorrFFT< _realImageT >::realT |
the scalar type of the image type
Definition at line 86 of file imageXCorrFFT.hpp.
mx::improc::imageXCorrFFT< realImageT >::imageXCorrFFT | ( | ) |
Default c'tor.
Definition at line 533 of file imageXCorrFFT.hpp.
const realImageT & mx::improc::imageXCorrFFT< realImageT >::ccIm | ( | ) |
Get a reference to the cross correlation image.
Definition at line 1009 of file imageXCorrFFT.hpp.
Referenced by SCENARIO(), and SCENARIO().
int mx::improc::imageXCorrFFT< realImageT >::cols | ( | ) |
Get the number of columns in the input images.
This can only be set by a call to resize() or refIm().
Definition at line 545 of file imageXCorrFFT.hpp.
int mx::improc::imageXCorrFFT< realImageT >::colsPadded | ( | ) |
Get the number of rows in the padded cross-correlation.
This can only be set by a call to resize() or refIm().
Definition at line 583 of file imageXCorrFFT.hpp.
|
protected |
[out] | xShift | the x shift of im w.r.t. im0, in pixels |
[out] | yShift | the y shift of im w.r.t. im0, in pixels |
Definition at line 1021 of file imageXCorrFFT.hpp.
References mx::math::ft::augmentR2CFFTOutput(), backward, mx::improc::imageCenterOfLight(), and mx::improc::imageMagnify().
bool mx::improc::imageXCorrFFT< realImageT >::haveMask | ( | ) |
Get the value of the haveMask flag.
Definition at line 738 of file imageXCorrFFT.hpp.
bool mx::improc::imageXCorrFFT< realImageT >::haveRefMask | ( | ) |
Get the value of the haveRefMask flag.
Definition at line 717 of file imageXCorrFFT.hpp.
bool mx::improc::imageXCorrFFT< realImageT >::haveRefWindow | ( | ) |
Get the value of the haveRefWindow flag.
Definition at line 761 of file imageXCorrFFT.hpp.
bool mx::improc::imageXCorrFFT< realImageT >::haveWindow | ( | ) |
Get the value of the haveWindow flag.
Definition at line 782 of file imageXCorrFFT.hpp.
const realImageT & mx::improc::imageXCorrFFT< realImageT >::magIm | ( | ) |
Get a reference to the magnified image.
Definition at line 1015 of file imageXCorrFFT.hpp.
const realImageT & mx::improc::imageXCorrFFT< realImageT >::maskIm | ( | ) |
Get a reference to the mask image.
Definition at line 732 of file imageXCorrFFT.hpp.
int mx::improc::imageXCorrFFT< realImageT >::maskIm | ( | const realImageT & | mask | ) |
Set the mask image.
This does not invalidate the reference
[in] | mask | the new mask image |
Definition at line 723 of file imageXCorrFFT.hpp.
int mx::improc::imageXCorrFFT< realImageT >::maxLag | ( | ) |
Get the current maximum lag.
Definition at line 928 of file imageXCorrFFT.hpp.
void mx::improc::imageXCorrFFT< realImageT >::maxLag | ( | int | ml | ) |
Set the maximum lag.
[in] | ml | the new maximum lag |
Definition at line 921 of file imageXCorrFFT.hpp.
Referenced by SCENARIO(), and SCENARIO().
bool mx::improc::imageXCorrFFT< realImageT >::normalize | ( | ) |
Get the current value of the normalize flag.
Definition at line 798 of file imageXCorrFFT.hpp.
void mx::improc::imageXCorrFFT< realImageT >::normalize | ( | bool | no | ) |
Set the normalize flag.
Changing this invalidates the reference.
[in] | no | the new normalize flag value |
Definition at line 788 of file imageXCorrFFT.hpp.
const realImageT & mx::improc::imageXCorrFFT< realImageT >::normIm | ( | ) |
Get a reference to the normalized image.
Definition at line 1003 of file imageXCorrFFT.hpp.
int mx::improc::imageXCorrFFT< realImageT >::operator() | ( | realT & | xShift, |
realT & | yShift, | ||
const imT & | im | ||
) |
Conduct the cross correlation to a specified tolerance.
[out] | xShift | the x shift of im w.r.t. im0, in pixels |
[out] | yShift | the y shift of im w.r.t. im0, in pixels |
[in] | im | the image to cross-correlate with the reference |
Definition at line 1160 of file imageXCorrFFT.hpp.
References mx::math::ft::padC2CFFTOutput(), and mx::math::ft::padR2CFFTOutput().
int mx::improc::imageXCorrFFT< realImageT >::operator() | ( | realT & | xShift, |
realT & | yShift, | ||
im0T & | im0, | ||
imT & | im | ||
) |
Conduct the cross correlation to a specified tolerance.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
[out] | xShift | the x shift of im w.r.t. im0, in pixels |
[out] | yShift | the y shift of im w.r.t. im0, in pixels |
[in] | im0 | a new reference image |
[in] | im | the image to cross-correlate with the reference |
Definition at line 1249 of file imageXCorrFFT.hpp.
imageXCorrFFT< realImageT >::realT mx::improc::imageXCorrFFT< realImageT >::padFactor | ( | ) |
Get the padding factor.
Definition at line 571 of file imageXCorrFFT.hpp.
int mx::improc::imageXCorrFFT< realImageT >::padFactor | ( | realT | os | ) |
Set the padding factor.
This can also be set by a call to resize() or refIm(). The padding factor must be greater than or equal to 1.
If m_rows and m_cols are both greater than 0 this calls resize(int, int, realT).
[in] | os | the new padding factor |
Definition at line 551 of file imageXCorrFFT.hpp.
const realImageT & mx::improc::imageXCorrFFT< realImageT >::refACIm | ( | ) |
Get a reference to the reference auto-correlation image.
Definition at line 985 of file imageXCorrFFT.hpp.
const realImageT & mx::improc::imageXCorrFFT< realImageT >::refIm | ( | ) |
Get a reference to the reference image.
Definition at line 909 of file imageXCorrFFT.hpp.
int mx::improc::imageXCorrFFT< realImageT >::refIm | ( | const realImageT & | im0 | ) |
Set the reference image.
Calls refIm(const realImageT &, realT) with the current value of m_padFactor.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
[in] | im0 | The new reference image |
Definition at line 903 of file imageXCorrFFT.hpp.
int mx::improc::imageXCorrFFT< realImageT >::refIm | ( | const realImageT & | im0, |
realT | padFactor | ||
) |
Set the reference image.
Performs the following steps
[in] | im0 | The new reference image |
[in] | padFactor | [optional] the padding factor to use |
Definition at line 804 of file imageXCorrFFT.hpp.
References mx::improc::imageShiftWP().
Referenced by SCENARIO(), and SCENARIO().
const realImageT & mx::improc::imageXCorrFFT< realImageT >::refMaskIm | ( | ) |
Get a reference to the reference mask image.
Definition at line 711 of file imageXCorrFFT.hpp.
int mx::improc::imageXCorrFFT< realImageT >::refMaskIm | ( | const realImageT & | mask | ) |
Set the reference mask image.
This invalidates the reference
[in] | mask | the new reference mask image |
Definition at line 700 of file imageXCorrFFT.hpp.
bool mx::improc::imageXCorrFFT< realImageT >::refValid | ( | ) |
Get the value of the reference valid flag.
Definition at line 915 of file imageXCorrFFT.hpp.
const realImageT & mx::improc::imageXCorrFFT< realImageT >::refWinIm | ( | ) |
Get a reference to the reference window image.
Definition at line 755 of file imageXCorrFFT.hpp.
int mx::improc::imageXCorrFFT< realImageT >::refWinIm | ( | const realImageT & | win | ) |
Set the reference window image.
This invalidates the reference.
[in] | win | the new reference window image |
Definition at line 744 of file imageXCorrFFT.hpp.
imageXCorrFFT< realImageT >::realT mx::improc::imageXCorrFFT< realImageT >::refX0 | ( | ) |
Get the x-shift of the reference image to itself.
Definition at line 991 of file imageXCorrFFT.hpp.
imageXCorrFFT< realImageT >::realT mx::improc::imageXCorrFFT< realImageT >::refY0 | ( | ) |
Get the y-shift of the reference image to itself.
Definition at line 997 of file imageXCorrFFT.hpp.
int mx::improc::imageXCorrFFT< realImageT >::resize | ( | int | nrows, |
int | ncols | ||
) |
Set the size of the cross-correlation problem based on input image size.
Calls resize(int, int, realT) with the current value of m_padFactor.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
[in] | nrows | the number of rows in the images to register |
[in] | ncols | the number of columns in the images to register |
Definition at line 694 of file imageXCorrFFT.hpp.
int mx::improc::imageXCorrFFT< realImageT >::resize | ( | int | nrows, |
int | ncols, | ||
realT | padFactor | ||
) |
Set the size of the cross-correlation problem based on input image size.
This resizes all working memory and conducts fftw planning. If there are no changes to size or padding, this returns immediately making no changes.
If there are changes to size or padding the reference is invalidated.
If nrows or ncols is 0, this resizes all working memory to 0.
[in] | nrows | the number of rows in the images to register |
[in] | ncols | the number of columns in the images to register |
[in] | padFactor | the padding factor. Must be >= 1. |
Definition at line 589 of file imageXCorrFFT.hpp.
int mx::improc::imageXCorrFFT< realImageT >::rows | ( | ) |
Get the number of rows in the input images.
This can only be set by a call to resize() or refIm().
Definition at line 539 of file imageXCorrFFT.hpp.
int mx::improc::imageXCorrFFT< realImageT >::rowsPadded | ( | ) |
Get the number of rows in the padded cross-correlation.
This can only be set by a call to resize() or refIm().
Definition at line 577 of file imageXCorrFFT.hpp.
imageXCorrFFT< realImageT >::realT mx::improc::imageXCorrFFT< realImageT >::tol | ( | ) |
Get the tolerance of the interpolated-magnified image, in pixels.
Definition at line 934 of file imageXCorrFFT.hpp.
void mx::improc::imageXCorrFFT< realImageT >::tol | ( | realT | nt | ) |
Set the tolerance of the interpolated-magnified image, in pixels.
[in] | nt | The new value of the interpolation tolerance. |
Definition at line 940 of file imageXCorrFFT.hpp.
Referenced by SCENARIO().
const realImageT & mx::improc::imageXCorrFFT< realImageT >::winIm | ( | ) |
Get a reference to the window image.
Definition at line 776 of file imageXCorrFFT.hpp.
int mx::improc::imageXCorrFFT< realImageT >::winIm | ( | const realImageT & | win | ) |
Set the window image.
This does not invalidate the reference.
[in] | win | the new window image |
Definition at line 767 of file imageXCorrFFT.hpp.
|
protected |
The cross-correlation image.
Definition at line 177 of file imageXCorrFFT.hpp.
|
protected |
The number of columns in the images.
Definition at line 107 of file imageXCorrFFT.hpp.
|
protected |
The number of columns in the padded CC.
Definition at line 119 of file imageXCorrFFT.hpp.
math::ft::fftT<fftInT, fftOutT, 2> mx::improc::imageXCorrFFT< _realImageT >::m_fft_bwd |
FFT object for the backward transform.
Definition at line 198 of file imageXCorrFFT.hpp.
math::ft::fftT<fftOutT, fftInT, 2> mx::improc::imageXCorrFFT< _realImageT >::m_fft_fwd |
FFT object for the forward transform.
Definition at line 196 of file imageXCorrFFT.hpp.
|
protected |
Working memory for the FT of the reference image.
Definition at line 181 of file imageXCorrFFT.hpp.
complexArrayT mx::improc::imageXCorrFFT< _realImageT >::m_ftWork |
Working memory for the FFT.
Definition at line 184 of file imageXCorrFFT.hpp.
complexArrayT mx::improc::imageXCorrFFT< _realImageT >::m_ftWorkIn |
Working memory for the FFT input.
Definition at line 187 of file imageXCorrFFT.hpp.
complexArrayT mx::improc::imageXCorrFFT< _realImageT >::m_ftWorkPadded |
Working memory for the padded inverse FFT input.
Definition at line 190 of file imageXCorrFFT.hpp.
complexArrayT mx::improc::imageXCorrFFT< _realImageT >::m_ftWorkPaddedOut |
Working memory for the FFT and MFT output.
Definition at line 192 of file imageXCorrFFT.hpp.
|
protected |
Flag indicating that a mask has been provided.
Definition at line 129 of file imageXCorrFFT.hpp.
|
protected |
Flag indicating that a referece mask has been provided.
Definition at line 124 of file imageXCorrFFT.hpp.
|
protected |
Flag indicating that a window has been provided for the reference.
Definition at line 133 of file imageXCorrFFT.hpp.
|
protected |
Flag indicating that a window has been provided.
Definition at line 137 of file imageXCorrFFT.hpp.
|
protected |
The magnification, in principle is 1/m_tol but will vary slightly based on integer array sizes
Definition at line 155 of file imageXCorrFFT.hpp.
|
protected |
The magnified image, used if m_peakMethod == xcorrPeakMethod::interpPeak.
Definition at line 179 of file imageXCorrFFT.hpp.
|
protected |
Magnified size of the ccIm when using interp. Set as function of m_tol and m_maxLag.
Definition at line 152 of file imageXCorrFFT.hpp.
|
protected |
Mask image to use, may be needed for proper normalization even if refIm has 0 mask applied.
Definition at line 126 of file imageXCorrFFT.hpp.
|
protected |
The maximum lag to consider in the initial cross-correlation. Default is 5.
Definition at line 147 of file imageXCorrFFT.hpp.
math::ft::mftT<complexT, complexT, 2> mx::improc::imageXCorrFFT< _realImageT >::m_mft_bwd |
MFT object used to oversample the peak for xcorrPeakMethod::mftOversamp
Definition at line 200 of file imageXCorrFFT.hpp.
complexArrayT mx::improc::imageXCorrFFT< _realImageT >::m_mtWorkPadded |
Working memory for the MFT for xcorrPeakMethod::mftOversamp.
Definition at line 194 of file imageXCorrFFT.hpp.
|
protected |
Flag specifying whether images should be normalized prior to performing the cross-correlation
Definition at line 139 of file imageXCorrFFT.hpp.
|
protected |
The normalized image.
Definition at line 175 of file imageXCorrFFT.hpp.
|
protected |
The padding factor for the CC.
Definition at line 109 of file imageXCorrFFT.hpp.
|
protected |
The actual padding factor for cols of the CC set based on the resultant array sizes.
Definition at line 114 of file imageXCorrFFT.hpp.
|
protected |
The actual padding factor for rows of the CC set based on the resultant array sizes.
Definition at line 111 of file imageXCorrFFT.hpp.
|
protected |
The peak finding method to use.
Definition at line 159 of file imageXCorrFFT.hpp.
|
protected |
The auto-correlation image of the reference.
Definition at line 167 of file imageXCorrFFT.hpp.
|
protected |
The normalized reference image.
Definition at line 142 of file imageXCorrFFT.hpp.
|
protected |
Mask image to use for the reference, may be needed for proper normalization even if refIm has 0 mask applied.
Definition at line 121 of file imageXCorrFFT.hpp.
|
protected |
Flag indicating whether the reference is valid. It can be invalidated if a mask, window, or normalize is set after the reference is set.
Definition at line 144 of file imageXCorrFFT.hpp.
|
protected |
Window image to use for the reference.
Definition at line 131 of file imageXCorrFFT.hpp.
|
protected |
The x-shift of the reference image to itself using the selected algorithm, used as coordinate origin
Definition at line 169 of file imageXCorrFFT.hpp.
|
protected |
The x-shift of the reference image to itself using the selected algorithm, used as coordinate origin
Definition at line 172 of file imageXCorrFFT.hpp.
|
protected |
The number of rows in the images.
Definition at line 105 of file imageXCorrFFT.hpp.
|
protected |
The number of rows in the padded CC.
Definition at line 117 of file imageXCorrFFT.hpp.
|
protected |
For xcorrPeakMethod::interpPeak, the tolerance of the interpolated-magnified image, in pixels.
Definition at line 149 of file imageXCorrFFT.hpp.
|
protected |
Window image for the target image.
Definition at line 135 of file imageXCorrFFT.hpp.