Isis 3 Programmer Reference
Isis::MaximumCorrelation Class Reference

Maximum correlation pattern matching. More...

#include <MaximumCorrelation.h>

Inheritance diagram for Isis::MaximumCorrelation:
Inheritance graph
Collaboration diagram for Isis::MaximumCorrelation:
Collaboration graph

Public Types

enum  RegisterStatus {
  SuccessPixel , SuccessSubPixel , PatternChipNotEnoughValidData , FitChipNoData ,
  FitChipToleranceNotMet , SurfaceModelNotEnoughValidData , SurfaceModelSolutionInvalid , SurfaceModelDistanceInvalid ,
  PatternZScoreNotMet , AdaptiveAlgorithmFailed
}
 Enumeration of the Register() method's return status. More...
 
enum  GradientFilterType { None , Sobel }
 Enumeration of the different types of gradient filters that can be applied to the pattern and search chips before matching them. More...
 

Public Member Functions

 MaximumCorrelation (Pvl &pvl)
 
ChipPatternChip ()
 Return pointer to pattern chip.
 
ChipSearchChip ()
 Return pointer to search chip.
 
ChipFitChip ()
 Return pointer to fit chip.
 
ChipRegistrationPatternChip ()
 Return pointer to pattern chip used in registration.
 
ChipRegistrationSearchChip ()
 Return pointer to search chip used in registration.
 
ChipReducedPatternChip ()
 Return pointer to reduced pattern chip.
 
ChipReducedSearchChip ()
 Return pointer to reduced search chip.
 
ChipReducedFitChip ()
 Return pointer to reduced fit chip.
 
void SetSubPixelAccuracy (bool on)
 If the sub-pixel accuracy is enabled, the Register() method will attempt to match the pattern chip to the search chip at sub-pixel accuracy, otherwise it will be registered at whole pixel accuracy.
 
void SetPatternValidPercent (const double percent)
 Set the amount of data in the pattern chip that must be valid.
 
void SetSubsearchValidPercent (const double percent)
 Set the amount of data in the search chip's subchip that must be valid.
 
void SetTolerance (double tolerance)
 Set the tolerance for an acceptable goodness of fit.
 
void SetChipInterpolator (const QString &interpolator)
 Sets the Chip class interpolator type to be used to load pattern and search chips.
 
void SetSurfaceModelWindowSize (int size)
 Set the surface model window size.
 
void SetSurfaceModelDistanceTolerance (double distance)
 Set a distance the surface model solution is allowed to move away from the best whole pixel fit in the fit chip.
 
void SetReductionFactor (int reductionFactor)
 Set the reduction factor used to speed up the pattern matching algorithm.
 
void SetPatternZScoreMinimum (double minimum)
 Set the minimum pattern zscore.
 
void SetGradientFilterType (const QString &gradientFilterType)
 Set the gradient filter type to be applied to the search and pattern chips.
 
QString GradientFilterString () const
 
bool SubPixelAccuracy ()
 Return whether this object will attempt to register to whole or sub-pixel accuracy.
 
int ReductionFactor ()
 Return the reduction factor.
 
double PatternValidPercent () const
 Return pattern chip valid percent. The default value is.
 
double SubsearchValidPercent () const
 Return subsearch chip valid percent.
 
double Tolerance () const
 Return match algorithm tolerance.
 
double WindowSize () const
 Return window size.
 
double DistanceTolerance () const
 Return distance tolerance.
 
void Distance (double &sampDistance, double &lineDistance)
 Return the distance point moved.
 
AutoReg::RegisterStatus Register ()
 Walk the pattern chip through the search chip to find the best registration.
 
bool Success () const
 Return whether the match algorithm succeeded or not.
 
double GoodnessOfFit () const
 Return the goodness of fit of the match algorithm.
 
bool IsIdeal (double fit)
 Returns true if the fit parameter is arbitrarily close to the ideal fit value.
 
double ChipSample () const
 Return the search chip sample that best matched.
 
double ChipLine () const
 Return the search chip line that best matched.
 
double CubeSample () const
 Return the search chip cube sample that best matched.
 
double CubeLine () const
 Return the search chip cube line that best matched.
 
double MinimumZScore () const
 Return minimumPatternZScore.
 
void ZScores (double &score1, double &score2) const
 Return the ZScores of the pattern chip.
 
Pvl RegistrationStatistics ()
 This returns the cumulative registration statistics.
 
virtual double MostLenientTolerance ()
 Minimum tolerance specific to algorithm.
 
PvlGroup RegTemplate ()
 This function returns the keywords that this object was created from.
 
PvlGroup UpdatedTemplate ()
 Returns a PvlGroup containing the PvlKeywords of the parameters this object was most recently run with.
 

Protected Member Functions

virtual double MatchAlgorithm (Chip &pattern, Chip &subsearch)
 Given two identically sized chips return a double that indicates how well they match.
 
virtual bool CompareFits (double fit1, double fit2)
 This virtual method must return if the 1st fit is equal to or better than the second fit.
 
virtual double IdealFit () const
 Returns the ideal (perfect) fit that could be returned by the MatchAlgorithm.
 
virtual QString AlgorithmName () const
 Returns the name of the algorithm.
 
void SetChipSample (double sample)
 Sets the search chip subpixel sample that matches the pattern tack sample.
 
void SetChipLine (double line)
 Sets the search chip subpixel line that matches the pattern tack line.
 
void SetGoodnessOfFit (double fit)
 Sets the goodness of fit for adaptive algorithms.
 
virtual AutoReg::RegisterStatus Registration (Chip &sChip, Chip &pChip, Chip &fChip, int startSamp, int startLine, int endSamp, int endLine, int bestSamp, int bestLine)
 Performs matching between the pattern and search at both whole-pixel and subpixel levels.
 
void Parse (Pvl &pvl)
 Initialize parameters in the AutoReg class using a PVL specification.
 
bool SetSubpixelPosition (Chip &window)
 Set the search chip sample and line to subpixel values if possible.
 
Chip Reduce (Chip &chip, int reductionFactor)
 This method reduces the given chip by the given reduction factor.
 
virtual Pvl AlgorithmStatistics (Pvl &pvl)
 Provide (adaptive) algorithms a chance to report results.
 

Protected Attributes

PvlObject p_template
 AutoRegistration object that created this projection.
 

Private Member Functions

void Match (Chip &sChip, Chip &pChip, Chip &fChip, int startSamp, int endSamp, int startLine, int endLine)
 Empty copy constructor.
 
bool ComputeChipZScore (Chip &chip)
 This method computes the given Chip's Z-Score.
 
void Init ()
 Initialize AutoReg object private variables.
 
void ApplyGradientFilter (Chip &chip)
 Run a gradient filter over the chip.
 
void SobelGradient (Buffer &in, double &v)
 Compute a Sobel gradient based on an input buffer.
 

Private Attributes

Chip p_patternChip
 Chip to be matched.
 
Chip p_searchChip
 Chip to be searched for best registration.
 
Chip p_fitChip
 Results from MatchAlgorithm() method.
 
Chip p_gradientSearchChip
 Chip to be searched for best registration with gradient applied.
 
Chip p_gradientPatternChip
 Chip to be matched with gradient applied.
 
Chip p_reducedPatternChip
 Pattern Chip with reduction factor.
 
Chip p_reducedSearchChip
 Search Chip with reduction factor.
 
Chip p_reducedFitChip
 Fit Chip with reduction factor.
 
bool p_subpixelAccuracy
 Indicates whether sub-pixel accuracy is enabled. Default is true.
 
int p_totalRegistrations
 Registration Statistics Total keyword.
 
int p_pixelSuccesses
 Registration statistics Success keyword.
 
int p_subpixelSuccesses
 Registration statistics Success keyword.
 
int p_patternChipNotEnoughValidDataCount
 Registration statistics PatternNotEnoughValidData keyword.
 
int p_patternZScoreNotMetCount
 Registration statistics PatternZScoreNotMet keyword.
 
int p_fitChipNoDataCount
 Registration statistics FitChipNoData keyword.
 
int p_fitChipToleranceNotMetCount
 Registration statistics FitChipToleranceNotMet keyword.
 
int p_surfaceModelNotEnoughValidDataCount
 Registration statistics SurfaceModelNotEnoughValidData keyword.
 
int p_surfaceModelSolutionInvalidCount
 Registration statistics SurfaceModelSolutionInvalid keyword.
 
int p_surfaceModelDistanceInvalidCount
 Registration statistics SurfaceModelDistanceInvalid keyword.
 
double p_zScoreMin
 First Z-Score of pattern chip.
 
double p_zScoreMax
 Second Z-Score of pattern chip.
 
double p_minimumPatternZScore
 Minimum pattern Z-Score.
 
double p_patternValidPercent
 Percentage of data in pattern chip that must be valid.
 
double p_subsearchValidPercent
 Percentage of data in subsearch chip that must be valid.
 
double p_chipSample
 Chip sample.
 
double p_chipLine
 Chip line.
 
double p_cubeSample
 Cube sample.
 
double p_cubeLine
 Cube line.
 
double p_goodnessOfFit
 Goodness of fit of the match algorithm.
 
double p_tolerance
 Tolerance for acceptable goodness of fit in match algorithm.
 
int p_windowSize
 Surface model window size.
 
double p_distanceTolerance
 Maximum distance the surface model solution may be from the best whole pixel fit in the fit chip.
 
double p_bestFit
 Goodness of fit for adaptive algorithms.
 
int p_bestSamp
 Sample value of best fit.
 
int p_bestLine
 Line value of best fit.
 
double p_sampMovement
 The number of samples the point moved.
 
double p_lineMovement
 The number of lines the point moved.
 
int p_reduceFactor
 Reduction factor.
 
Isis::AutoReg::RegisterStatus p_registrationStatus
 Registration status to be returned by Register().
 
AutoReg::GradientFilterType p_gradientFilterType
 Type of gradient filter to use before matching.
 

Detailed Description

Maximum correlation pattern matching.

This class is used to construct a maximum correlation pattern matching algorith. That is, given a search chip and a pattern chip, the pattern chip is walked through the search chip. At each position the a sub-search chip is extracted which is the same size as the pattern chip. Then the correlation between the two is computed. The best fit = 1.0 which means the pattern chip and sub-search chip are identical

See also
MinimumDifference AutoReg
Author
????-??-?? Unknown
History

2006-01-11 Jacob Danton Added idealFit value, unitTest

2006-03-08 Jacob Danton Added sampling options

Definition at line 36 of file MaximumCorrelation.h.

Member Enumeration Documentation

◆ GradientFilterType

Enumeration of the different types of gradient filters that can be applied to the pattern and search chips before matching them.

Enumerator
None 

default, no gradient filter

Sobel 

Sobel gradient filter.

Definition at line 196 of file AutoReg.h.

◆ RegisterStatus

Enumeration of the Register() method's return status.

All of the enumerations describe a failure to register except "Success". These status values can be used to provide the user with more specific feedback on why registration did not succeed.

Enumerator
SuccessPixel 

Success registering to whole pixel.

SuccessSubPixel 

Success registering to sub-pixel accuracy.

PatternChipNotEnoughValidData 

Not enough valid data in pattern chip.

FitChipNoData 

Fit chip did not have any valid data.

FitChipToleranceNotMet 

Goodness of fit tolerance not satisfied.

SurfaceModelNotEnoughValidData 

Not enough points to fit a surface model for sub-pixel accuracy.

SurfaceModelSolutionInvalid 

Could not model surface for sub-pixel accuracy.

SurfaceModelDistanceInvalid 

Surface model moves registration more than one pixel.

PatternZScoreNotMet 

Pattern data max or min does not pass the z-score test.

AdaptiveAlgorithmFailed 

Error occured in Adaptive algorithm.

Definition at line 179 of file AutoReg.h.

Constructor & Destructor Documentation

◆ MaximumCorrelation()

Isis::MaximumCorrelation::MaximumCorrelation ( Pvl & pvl)
inline

Definition at line 38 of file MaximumCorrelation.h.

◆ ~MaximumCorrelation()

virtual Isis::MaximumCorrelation::~MaximumCorrelation ( )
inlinevirtual

Definition at line 39 of file MaximumCorrelation.h.

Member Function Documentation

◆ AlgorithmName()

virtual QString Isis::MaximumCorrelation::AlgorithmName ( ) const
inlineprotectedvirtual

Returns the name of the algorithm.

Returns
QString

Implements Isis::AutoReg.

Definition at line 47 of file MaximumCorrelation.h.

◆ AlgorithmStatistics()

virtual Pvl Isis::AutoReg::AlgorithmStatistics ( Pvl & pvl)
inlineprotectedvirtualinherited

Provide (adaptive) algorithms a chance to report results.

Provide Adaptive objects the opportunity to report behavior. It is called at the final step prior to program termination.

Parameters
pvlPvl structure to add report to
Returns
Pvl Results

Reimplemented in Isis::Gruen.

Definition at line 461 of file AutoReg.h.

Referenced by Isis::AutoReg::RegistrationStatistics().

◆ ApplyGradientFilter()

void Isis::AutoReg::ApplyGradientFilter ( Chip & chip)
privateinherited

Run a gradient filter over the chip.

The type of filter is determined by the Gradient keyword in the Algorithm group.

Parameters
chipthe chip to be filtered
Exceptions
iException::Programmer- "Invalid Gradient type."

Definition at line 927 of file AutoReg.cpp.

References Isis::Buffer::DoubleBuffer(), Isis::Chip::Extract(), Isis::Chip::Lines(), Isis::AutoReg::None, Isis::AutoReg::p_gradientFilterType, Isis::IException::Programmer, Isis::Chip::Samples(), Isis::Chip::SetValue(), Isis::AutoReg::Sobel, and Isis::AutoReg::SobelGradient().

Referenced by Isis::AutoReg::Register().

◆ ChipLine()

double Isis::AutoReg::ChipLine ( ) const
inlineinherited

Return the search chip line that best matched.

Definition at line 335 of file AutoReg.h.

References Isis::AutoReg::p_chipLine.

◆ ChipSample()

double Isis::AutoReg::ChipSample ( ) const
inlineinherited

Return the search chip sample that best matched.

Definition at line 330 of file AutoReg.h.

References Isis::AutoReg::p_chipSample.

◆ CompareFits()

bool Isis::MaximumCorrelation::CompareFits ( double fit1,
double fit2 )
protectedvirtual

This virtual method must return if the 1st fit is equal to or better than the second fit.

Parameters
fit11st goodness of fit
fit22nd goodness of fit

Reimplemented from Isis::AutoReg.

Definition at line 41 of file MaximumCorrelation.cpp.

◆ ComputeChipZScore()

bool Isis::AutoReg::ComputeChipZScore ( Chip & chip)
privateinherited

This method computes the given Chip's Z-Score.

If this value is less than the minimum pattern Z-Score or greater than the negative of the minimum pattern Z-Score, the method will return false. Otherwise, it returns true.

Parameters
chipChip object whose Z-Score is calculated
Returns
bool Indicates whether Z-Score calculated lies between the minimum and Pattern Z-Score and its negative.

Definition at line 895 of file AutoReg.cpp.

References Isis::Chip::GetValue(), Isis::Chip::Lines(), Isis::AutoReg::p_minimumPatternZScore, Isis::AutoReg::p_zScoreMax, Isis::AutoReg::p_zScoreMin, and Isis::Chip::Samples().

Referenced by Isis::AutoReg::Register().

◆ CubeLine()

double Isis::AutoReg::CubeLine ( ) const
inlineinherited

Return the search chip cube line that best matched.

Definition at line 345 of file AutoReg.h.

References Isis::AutoReg::p_cubeLine.

Referenced by Isis::ControlMeasureEditWidget::registerPoint(), and Isis::ControlPointEdit::registerPoint().

◆ CubeSample()

double Isis::AutoReg::CubeSample ( ) const
inlineinherited

Return the search chip cube sample that best matched.

Definition at line 340 of file AutoReg.h.

References Isis::AutoReg::p_cubeSample.

Referenced by Isis::ControlMeasureEditWidget::registerPoint(), and Isis::ControlPointEdit::registerPoint().

◆ Distance()

void Isis::AutoReg::Distance ( double & sampDistance,
double & lineDistance )
inlineinherited

Return the distance point moved.

Parameters
sampDistanceSample movement
lineDistanceLine movement

Definition at line 310 of file AutoReg.h.

References Isis::AutoReg::p_lineMovement, and Isis::AutoReg::p_sampMovement.

Referenced by Isis::ControlMeasureEditWidget::registerPoint(), and Isis::ControlPointEdit::registerPoint().

◆ DistanceTolerance()

double Isis::AutoReg::DistanceTolerance ( ) const
inlineinherited

◆ FitChip()

Chip * Isis::AutoReg::FitChip ( )
inlineinherited

Return pointer to fit chip.

Definition at line 212 of file AutoReg.h.

References Isis::AutoReg::p_fitChip.

Referenced by Isis::ControlMeasureEditWidget::saveChips(), and Isis::ControlPointEdit::saveChips().

◆ GoodnessOfFit()

double Isis::AutoReg::GoodnessOfFit ( ) const
inlineinherited

◆ GradientFilterString()

QString Isis::AutoReg::GradientFilterString ( ) const
inherited

Definition at line 289 of file AutoReg.cpp.

◆ IdealFit()

virtual double Isis::MaximumCorrelation::IdealFit ( ) const
inlineprotectedvirtual

Returns the ideal (perfect) fit that could be returned by the MatchAlgorithm.

Returns
double

Implements Isis::AutoReg.

Definition at line 44 of file MaximumCorrelation.h.

◆ Init()

◆ IsIdeal()

bool Isis::AutoReg::IsIdeal ( double fit)
inlineinherited

Returns true if the fit parameter is arbitrarily close to the ideal fit value.

Parameters
fitFit value to be compared to the ideal fit
Returns
bool Indicates whether the fit is ideal

Definition at line 1162 of file AutoReg.cpp.

References Isis::AutoReg::IdealFit().

Referenced by Isis::AutoReg::Registration().

◆ Match()

void Isis::AutoReg::Match ( Chip & sChip,
Chip & pChip,
Chip & fChip,
int startSamp,
int endSamp,
int startLine,
int endLine )
privateinherited

Empty copy constructor.

Here we walk from start sample to end sample and start line to end line, and compare the pattern chip against the search chip to find the best line/sample.

Parameters
originalAutoReg object
sChipSearch chip
pChipPattern chip
fChipFit chip
startSampStart sample
endSampEnd sample
startLineStart line
endLineEnd line
Exceptions
iException::Programmer- "StartSample = EndSample and StartLine = EndLine."

Definition at line 1031 of file AutoReg.cpp.

References Isis::AutoReg::CompareFits(), Isis::AutoReg::MatchAlgorithm(), Isis::Null, Isis::AutoReg::p_bestFit, Isis::AutoReg::p_bestLine, Isis::AutoReg::p_bestSamp, Isis::AutoReg::p_subsearchValidPercent, and Isis::IException::Programmer.

Referenced by Isis::AutoReg::Register(), and Isis::AutoReg::Registration().

◆ MatchAlgorithm()

double Isis::MaximumCorrelation::MatchAlgorithm ( Chip & pattern,
Chip & subsearch )
protectedvirtual

Given two identically sized chips return a double that indicates how well they match.

For example, a correlation match algorithm would return a correlation coefficient ranging from -1 to 1.

Parameters
patternPattern chip to match against
subsearchSubchip of the search chip to match with
Returns
double

Implements Isis::AutoReg.

Definition at line 12 of file MaximumCorrelation.cpp.

References Isis::MultivariateStatistics::AddData(), Isis::Null, and Isis::AutoReg::PatternValidPercent().

◆ MinimumZScore()

double Isis::AutoReg::MinimumZScore ( ) const
inlineinherited

◆ MostLenientTolerance()

virtual double Isis::AutoReg::MostLenientTolerance ( )
inlinevirtualinherited

Minimum tolerance specific to algorithm.

Reimplemented in Isis::MinimumDifference.

Definition at line 370 of file AutoReg.h.

◆ Parse()

void Isis::AutoReg::Parse ( Pvl & pvl)
protectedinherited

Initialize parameters in the AutoReg class using a PVL specification.

An example of the PVL required for this is:

Object = AutoRegistration
Group = Algorithm
Tolerance = 0.7
EndGroup
Group = PatternChip
Samples = 21
Lines = 21
EndGroup
Group = SearchChip
Samples = 51
Lines = 51
EndGroup
EndObject
Chip * SearchChip()
Return pointer to search chip.
Definition AutoReg.h:207
Chip * PatternChip()
Return pointer to pattern chip.
Definition AutoReg.h:202
double Tolerance() const
Return match algorithm tolerance.
Definition AutoReg.h:290
Maximum correlation pattern matching.

There are many other options that can be set via the pvl and are described in other documentation (see below).

See also
patternMatch.doc under the coreg application
Parameters
pvlThe pvl object containing the specification
Exceptions
iException::User"Improper format for AutoReg PVL."
History

2010-06-15 Jeannie Walldren - Added ability to read ChipInterpolator keyword from the Algorithm group.

2010-07-20 Jeannie Walldren - Added ability to read search sub chip valid percent

Definition at line 194 of file AutoReg.cpp.

References Isis::PvlObject::findObject(), Isis::AutoReg::PatternChip(), Isis::AutoReg::SearchChip(), Isis::AutoReg::SetChipInterpolator(), Isis::AutoReg::SetGradientFilterType(), Isis::AutoReg::SetPatternValidPercent(), Isis::AutoReg::SetPatternZScoreMinimum(), Isis::AutoReg::SetReductionFactor(), Isis::Chip::SetSize(), Isis::AutoReg::SetSubPixelAccuracy(), Isis::AutoReg::SetSubsearchValidPercent(), Isis::AutoReg::SetSurfaceModelDistanceTolerance(), Isis::AutoReg::SetSurfaceModelWindowSize(), Isis::AutoReg::SetTolerance(), Isis::Chip::SetValidRange(), Isis::PvlObject::Traverse, Isis::IException::User, Isis::ValidMaximum, and Isis::ValidMinimum.

Referenced by Isis::AutoReg::AutoReg().

◆ PatternChip()

Chip * Isis::AutoReg::PatternChip ( )
inlineinherited

◆ PatternValidPercent()

double Isis::AutoReg::PatternValidPercent ( ) const
inlineinherited

◆ Reduce()

Chip Isis::AutoReg::Reduce ( Chip & chip,
int reductionFactor )
protectedinherited

This method reduces the given chip by the given reduction factor.

Used to speed up the match algorithm.

Parameters
chipChip to be reduced
reductionFactorFactor by which to reduce chip.
Returns
Chip Reduced chip object

Definition at line 539 of file AutoReg.cpp.

References Isis::Chip::GetValue(), Isis::Chip::Lines(), Isis::Null, Isis::Statistics::Reset(), Isis::Chip::Samples(), and Isis::Chip::SetValue().

Referenced by Isis::AutoReg::Register().

◆ ReducedFitChip()

Chip * Isis::AutoReg::ReducedFitChip ( )
inlineinherited

Return pointer to reduced fit chip.

Definition at line 247 of file AutoReg.h.

References Isis::AutoReg::p_reducedFitChip.

◆ ReducedPatternChip()

Chip * Isis::AutoReg::ReducedPatternChip ( )
inlineinherited

Return pointer to reduced pattern chip.

Definition at line 237 of file AutoReg.h.

References Isis::AutoReg::p_reducedPatternChip.

◆ ReducedSearchChip()

Chip * Isis::AutoReg::ReducedSearchChip ( )
inlineinherited

Return pointer to reduced search chip.

Definition at line 242 of file AutoReg.h.

References Isis::AutoReg::p_reducedSearchChip.

◆ ReductionFactor()

int Isis::AutoReg::ReductionFactor ( )
inlineinherited

Return the reduction factor.

Definition at line 275 of file AutoReg.h.

References Isis::AutoReg::p_reduceFactor.

Referenced by Isis::AutoReg::UpdatedTemplate().

◆ Register()

AutoReg::RegisterStatus Isis::AutoReg::Register ( )
inherited

Walk the pattern chip through the search chip to find the best registration.

Returns
AutoReg::RegisterStatus Returns the status of the registration.
Exceptions
iException::User- "Search chips samples must be at least N pixels wider than the pattern chip samples for successful surface modeling"
iException::User- "Search chips lines must be at least N pixels taller than the pattern chip lines for successful surface modeling"
iException::User- "Reduction factor is too large"

Prep for walking the search chip by computing the starting and ending sample and line positions of the search chip to extract a sub-search chip to compare with the pattern chip.

Because the sub-search chip needs to have the same pixel dimensions as the pattern chip, and will be composed from its center pixel outwards, buffer the start and end boundaries so an area the size of the pattern chip can always be extracted around the current position.

For example, consider trying to extract a 5x5 sub-search chip from some search chip. If one starts at sample 1 and line 1, then because the "current position" is treated as the center of the sub-search chip, the algorithm could not form a 5x5 chip because there is nothing up and to the left of the current position. Consequently, for this example, there needs to be a two-pixel buffer from the edge of the search chip as the algorithm walks through it to make sure a 5x5 sub-search chip can always be extracted with the current position as its center.

Definition at line 587 of file AutoReg.cpp.

References Isis::AutoReg::ApplyGradientFilter(), Isis::AutoReg::ComputeChipZScore(), Isis::AutoReg::FitChipNoData, Isis::AutoReg::Init(), Isis::Chip::Lines(), Isis::AutoReg::Match(), Isis::AutoReg::None, Isis::Null, Isis::AutoReg::p_bestFit, Isis::AutoReg::p_bestLine, Isis::AutoReg::p_bestSamp, Isis::AutoReg::p_chipLine, Isis::AutoReg::p_chipSample, Isis::AutoReg::p_cubeLine, Isis::AutoReg::p_cubeSample, Isis::AutoReg::p_fitChip, Isis::AutoReg::p_fitChipNoDataCount, Isis::AutoReg::p_goodnessOfFit, Isis::AutoReg::p_gradientFilterType, Isis::AutoReg::p_gradientPatternChip, Isis::AutoReg::p_gradientSearchChip, Isis::AutoReg::p_patternChip, Isis::AutoReg::p_patternChipNotEnoughValidDataCount, Isis::AutoReg::p_patternValidPercent, Isis::AutoReg::p_patternZScoreNotMetCount, Isis::AutoReg::p_pixelSuccesses, Isis::AutoReg::p_reducedFitChip, Isis::AutoReg::p_reducedPatternChip, Isis::AutoReg::p_reducedSearchChip, Isis::AutoReg::p_reduceFactor, Isis::AutoReg::p_registrationStatus, Isis::AutoReg::p_searchChip, Isis::AutoReg::p_subpixelSuccesses, Isis::AutoReg::p_totalRegistrations, Isis::AutoReg::p_windowSize, Isis::AutoReg::PatternChipNotEnoughValidData, Isis::AutoReg::PatternZScoreNotMet, Isis::AutoReg::Reduce(), Isis::AutoReg::Registration(), Isis::Chip::Samples(), Isis::Chip::SetChipPosition(), Isis::Chip::SetSize(), Isis::Chip::SetValue(), Isis::AutoReg::Success(), Isis::AutoReg::SuccessSubPixel, and Isis::IException::User.

Referenced by Isis::ControlMeasureEditWidget::registerPoint(), and Isis::ControlPointEdit::registerPoint().

◆ Registration()

AutoReg::RegisterStatus Isis::AutoReg::Registration ( Chip & sChip,
Chip & pChip,
Chip & fChip,
int startSamp,
int startLine,
int endSamp,
int endLine,
int bestSamp,
int bestLine )
protectedvirtualinherited

Performs matching between the pattern and search at both whole-pixel and subpixel levels.

For adaptive algorithms, only subpixel matching occurs. Such algorithms override this method to use their alternative matching procedures.

For those algorithms that need it, the best sample and line in the search chip is provided. This is either the initial tack sample and line in the search chip or it is the centered sample and line after the reduction algorithm is applied (KJB, 2009-08-26).

Author
janderson (6/2/2009)
Parameters
sChipSearch chip
pChipPattern chip
fChipFit chip
startSampDefines the starting sample of the window the algorithm should remain inside this boundary.
startLineDefines the starting line of the window the algorithm should remain inside this boundary.
endSampDefines the ending sample of the window the algorithm should remain inside this boundary.
endLineDefines the ending line of the window the algorithm should remain inside this boundary.
bestSampBest sample
bestLineBest line
Returns
AutoReg::RegisterStatus Status of match

Reimplemented in Isis::Gruen.

Definition at line 811 of file AutoReg.cpp.

References Isis::AutoReg::CompareFits(), Isis::AutoReg::FitChipNoData, Isis::AutoReg::FitChipToleranceNotMet, Isis::AutoReg::IsIdeal(), Isis::AutoReg::Match(), Isis::Null, Isis::AutoReg::p_bestFit, Isis::AutoReg::p_bestLine, Isis::AutoReg::p_bestSamp, Isis::AutoReg::p_chipLine, Isis::AutoReg::p_chipSample, Isis::AutoReg::p_distanceTolerance, Isis::AutoReg::p_fitChipNoDataCount, Isis::AutoReg::p_fitChipToleranceNotMetCount, Isis::AutoReg::p_lineMovement, Isis::AutoReg::p_registrationStatus, Isis::AutoReg::p_sampMovement, Isis::AutoReg::p_subpixelAccuracy, Isis::AutoReg::p_surfaceModelDistanceInvalidCount, Isis::AutoReg::p_surfaceModelNotEnoughValidDataCount, Isis::AutoReg::p_windowSize, Isis::AutoReg::SetSubpixelPosition(), Isis::AutoReg::SuccessPixel, Isis::AutoReg::SuccessSubPixel, Isis::AutoReg::SurfaceModelDistanceInvalid, Isis::AutoReg::SurfaceModelNotEnoughValidData, Isis::AutoReg::SurfaceModelSolutionInvalid, and Isis::AutoReg::Tolerance().

Referenced by Isis::AutoReg::Register().

◆ RegistrationPatternChip()

Chip * Isis::AutoReg::RegistrationPatternChip ( )
inlineinherited

◆ RegistrationSearchChip()

Chip * Isis::AutoReg::RegistrationSearchChip ( )
inlineinherited

◆ RegistrationStatistics()

Pvl Isis::AutoReg::RegistrationStatistics ( )
inherited

◆ RegTemplate()

PvlGroup Isis::AutoReg::RegTemplate ( )
inherited

This function returns the keywords that this object was created from.

Returns
PvlGroup The keywords this object used in initialization

Definition at line 1216 of file AutoReg.cpp.

References Isis::PvlObject::findGroup(), Isis::PvlObject::hasGroup(), Isis::AutoReg::p_template, Isis::AutoReg::SetPatternValidPercent(), Isis::AutoReg::SetSubsearchValidPercent(), and Isis::PvlObject::Traverse.

◆ SearchChip()

Chip * Isis::AutoReg::SearchChip ( )
inlineinherited

◆ SetChipInterpolator()

void Isis::AutoReg::SetChipInterpolator ( const QString & interpolator)
inherited

Sets the Chip class interpolator type to be used to load pattern and search chips.

Acceptable values for the interpolator parameter include:

  • NearestNeighborType
  • BiLinearType
  • CubicConvolutionType

If this method is not called, the chip interpolator type defaults to CubicConvolutionType in the Chip class.

Parameters
interpolatorName of interpolator type to be used. This is taken from the Pvl's ChipInterpolator keyword value.
Exceptions
iException::User- "Invalid Interpolator type."
Author
Jeannie Walldren
History
2010-06-15 Jeannie Walldren - Original version.

Definition at line 440 of file AutoReg.cpp.

References Isis::AutoReg::p_patternChip, Isis::AutoReg::p_reducedPatternChip, Isis::AutoReg::p_reducedSearchChip, Isis::AutoReg::p_searchChip, Isis::Chip::SetReadInterpolator(), and Isis::IException::User.

Referenced by Isis::AutoReg::Parse().

◆ SetChipLine()

void Isis::AutoReg::SetChipLine ( double line)
inlineprotectedinherited

Sets the search chip subpixel line that matches the pattern tack line.

Parameters
lineValue to set for search chip subpixel line

Definition at line 404 of file AutoReg.h.

References Isis::AutoReg::p_chipLine.

Referenced by Isis::Gruen::Registration().

◆ SetChipSample()

void Isis::AutoReg::SetChipSample ( double sample)
inlineprotectedinherited

Sets the search chip subpixel sample that matches the pattern tack sample.

Parameters
sampleValue to set for search chip subpixel sample

Definition at line 393 of file AutoReg.h.

References Isis::AutoReg::p_chipSample.

Referenced by Isis::Gruen::Registration().

◆ SetGoodnessOfFit()

void Isis::AutoReg::SetGoodnessOfFit ( double fit)
inlineprotectedinherited

Sets the goodness of fit for adaptive algorithms.

Parameters
fitFit value to set

Definition at line 413 of file AutoReg.h.

References Isis::AutoReg::p_bestFit.

Referenced by Isis::Gruen::Registration().

◆ SetGradientFilterType()

void Isis::AutoReg::SetGradientFilterType ( const QString & gradientFilterType)
inherited

Set the gradient filter type to be applied to the search and pattern chips.

Parameters
gradientFilterTypethe gradient filter type to use
Exceptions
iException::User- "Invalid Gradient type."

Definition at line 273 of file AutoReg.cpp.

References Isis::AutoReg::None, Isis::AutoReg::p_gradientFilterType, Isis::AutoReg::Sobel, and Isis::IException::User.

Referenced by Isis::AutoReg::Parse().

◆ SetPatternValidPercent()

void Isis::AutoReg::SetPatternValidPercent ( const double percent)
inherited

Set the amount of data in the pattern chip that must be valid.

For example, a 21x21 pattern chip has 441 pixels. If percent is 75 then at least 330 pixels pairs must be valid in order for a comparision between the pattern and search sub-region to occur. That is, both the pattern pixel and search pixel must be valid to be counted. Pixels are considered valid based on the min/max range specified on each of the Chips (see Chip::SetValidRange method).

If the pattern chip reduction option is used this percentage will apply to all reduced patterns. Additionally, the pattern sampling effects the pixel count. For example if pattern sampling is 50% then only 220 pixels in the 21x21 pattern are considered so 165 must be valid.

If this method is not called, the PatternChip ValidPercent defaults to 50 in the AutoReg object constructor.

See also
SetValidRange()
Parameters
percentPercentage of valid data between 0 and 100, default is 50% if never invoked
Exceptions
iException::User- "Invalid value for PatternChip ValidPercent."

Definition at line 339 of file AutoReg.cpp.

References Isis::AutoReg::p_patternValidPercent, and Isis::IException::User.

Referenced by Isis::AutoReg::AutoReg(), Isis::AutoReg::Parse(), and Isis::AutoReg::RegTemplate().

◆ SetPatternZScoreMinimum()

void Isis::AutoReg::SetPatternZScoreMinimum ( double minimum)
inherited

Set the minimum pattern zscore.

This option is used to ignore pattern chips which are bland (low standard deviation). If the minimum or maximum pixel value in the pattern chip does not meet the minimum zscore value (see a statisitcs book for definition of zscore) then invalid registration will occur.

If this method is not called, the z-score minimum defaults to 1.0 in the AutoReg object constructor.

Parameters
minimumThe minimum zscore value for the pattern chip. Default is 1.0
Exceptions
iException::User- "Invalid value for PatternChip MinimumZScore."

Definition at line 394 of file AutoReg.cpp.

References Isis::AutoReg::p_minimumPatternZScore, and Isis::IException::User.

Referenced by Isis::AutoReg::AutoReg(), and Isis::AutoReg::Parse().

◆ SetReductionFactor()

void Isis::AutoReg::SetReductionFactor ( int factor)
inherited

Set the reduction factor used to speed up the pattern matching algorithm.

If this method is not called, the reduction factor defaults to 1 in the AutoReg object constructor.

Parameters
factorReduction factor. Must be greater than or equal to 1.
Exceptions
iException::User- "Invalid value for Algorithm ReductionFactor."

Definition at line 521 of file AutoReg.cpp.

References Isis::AutoReg::p_reduceFactor, and Isis::IException::User.

Referenced by Isis::AutoReg::AutoReg(), and Isis::AutoReg::Parse().

◆ SetSubPixelAccuracy()

void Isis::AutoReg::SetSubPixelAccuracy ( bool on)
inherited

If the sub-pixel accuracy is enabled, the Register() method will attempt to match the pattern chip to the search chip at sub-pixel accuracy, otherwise it will be registered at whole pixel accuracy.

If this method is not called, the sub pixel accuracy defaults to on = true in the AutoReg object constructor.

Parameters
onSet the state of registration accuracy. The default is sub-pixel accuracy is on

Definition at line 312 of file AutoReg.cpp.

References Isis::AutoReg::p_subpixelAccuracy.

Referenced by Isis::AutoReg::AutoReg(), and Isis::AutoReg::Parse().

◆ SetSubpixelPosition()

bool Isis::AutoReg::SetSubpixelPosition ( Chip & window)
protectedinherited

Set the search chip sample and line to subpixel values if possible.

This method uses a centroiding method to gravitate the whole pixel best fit to a subpixel extremum in the continuous image space. The weights of the centers of gravity in the centroiding algorithm are modeled by goodness of fit values within a discrete search window.

Parameters
windowThe search window extracted from the fit chip
Returns
bool Returns true if the subpixel solution is valid

Definition at line 1087 of file AutoReg.cpp.

References Isis::AutoReg::p_bestLine, Isis::AutoReg::p_bestSamp, Isis::AutoReg::p_chipLine, Isis::AutoReg::p_chipSample, Isis::AutoReg::p_surfaceModelSolutionInvalidCount, and Isis::Centroid::setDNRange().

Referenced by Isis::AutoReg::Registration().

◆ SetSubsearchValidPercent()

void Isis::AutoReg::SetSubsearchValidPercent ( const double percent)
inherited

Set the amount of data in the search chip's subchip that must be valid.

If this method is not called, the SearchChip SubchipValidPercent defaults to 50 in the AutoReg object constructor.

Parameters
percentPercentage of valid data between 0 and 100, default is 50% if never invoked
See also
SetPatternValidPercent()
Exceptions
iException::User- "Invalid value for SearchChip SubchipValidPercent."
Author
2010-07-20 Jeannie Walldren
History
2010-07-20 Jeannie Walldren - Original Version.

Definition at line 367 of file AutoReg.cpp.

References Isis::AutoReg::p_subsearchValidPercent, and Isis::IException::User.

Referenced by Isis::AutoReg::AutoReg(), Isis::AutoReg::Parse(), and Isis::AutoReg::RegTemplate().

◆ SetSurfaceModelDistanceTolerance()

void Isis::AutoReg::SetSurfaceModelDistanceTolerance ( double distance)
inherited

Set a distance the surface model solution is allowed to move away from the best whole pixel fit in the fit chip.

If this method is not called, the distance tolerance defaults to 1.5 in the AutoReg object constructor.

Parameters
distanceThe distance allowed to move in pixels. Must be greater than 0.
Exceptions
iException::User- "Invalid value for SurfaceModel DistanceTolerance."

Definition at line 501 of file AutoReg.cpp.

References Isis::AutoReg::p_distanceTolerance, and Isis::IException::User.

Referenced by Isis::AutoReg::AutoReg(), and Isis::AutoReg::Parse().

◆ SetSurfaceModelWindowSize()

void Isis::AutoReg::SetSurfaceModelWindowSize ( int size)
inherited

Set the surface model window size.

The pixels in this window will be used to fit a surface model in order to compute sub-pixel accuracy. In some cases the default (3x3) and produces erroneous sub-pixel accuracy values.

If this method is not called, the window size defaults to 5 in the AutoReg object constructor.

Parameters
sizeThe size of the window must be three or greater and odd.
Exceptions
iException::User- "Invalid value for SurfaceModel WindowSize."

Definition at line 480 of file AutoReg.cpp.

References Isis::AutoReg::p_windowSize, and Isis::IException::User.

Referenced by Isis::AutoReg::AutoReg(), and Isis::AutoReg::Parse().

◆ SetTolerance()

void Isis::AutoReg::SetTolerance ( double tolerance)
inherited

Set the tolerance for an acceptable goodness of fit.

If this method is not called, the tolerance value defaults to Isis::Null in the AutoReg object constructor.

Parameters
toleranceThis tolerance is used to test against the goodness of fit returned by the MatchAlgorith method after a surface model has been fit. See TestGoodnessOfFit

Definition at line 416 of file AutoReg.cpp.

References Isis::AutoReg::p_tolerance.

Referenced by Isis::AutoReg::AutoReg(), and Isis::AutoReg::Parse().

◆ SobelGradient()

void Isis::AutoReg::SobelGradient ( Buffer & in,
double & v )
privateinherited

Compute a Sobel gradient based on an input buffer.

TODO: Remove this method as it already exists in the gradient application.

Parameters
inthe input buffer
vthe value of the gradient computed from the buffer

Definition at line 1000 of file AutoReg.cpp.

References Isis::IsSpecial(), and Isis::Null.

Referenced by Isis::AutoReg::ApplyGradientFilter().

◆ SubPixelAccuracy()

bool Isis::AutoReg::SubPixelAccuracy ( )
inlineinherited

Return whether this object will attempt to register to whole or sub-pixel accuracy.

Returns
on Is sub-pixel accuracy enabled?

Definition at line 270 of file AutoReg.h.

References Isis::AutoReg::p_subpixelAccuracy.

Referenced by Isis::AutoReg::UpdatedTemplate().

◆ SubsearchValidPercent()

double Isis::AutoReg::SubsearchValidPercent ( ) const
inlineinherited

Return subsearch chip valid percent.

Definition at line 285 of file AutoReg.h.

References Isis::AutoReg::p_subsearchValidPercent.

Referenced by Isis::AutoReg::UpdatedTemplate().

◆ Success()

bool Isis::AutoReg::Success ( ) const
inlineinherited

◆ Tolerance()

double Isis::AutoReg::Tolerance ( ) const
inlineinherited

◆ UpdatedTemplate()

PvlGroup Isis::AutoReg::UpdatedTemplate ( )
inherited

Returns a PvlGroup containing the PvlKeywords of the parameters this object was most recently run with.

Because of publically accessible mutators, AutoReg's runtime parameters can change, and this version of the template is designed to reflect the paramters it was actually run with, as opposed to simply initialized with. If no mutators were ever called externally, then this PvlGroup should be the same as the one received from RegTemplate().

Returns
PvlGroup The keywords this object was most recently run with

Definition at line 1289 of file AutoReg.cpp.

References Isis::AutoReg::AlgorithmName(), Isis::AutoReg::DistanceTolerance(), Isis::AutoReg::MinimumZScore(), Isis::AutoReg::PatternChip(), Isis::AutoReg::PatternValidPercent(), Isis::AutoReg::ReductionFactor(), Isis::AutoReg::SearchChip(), Isis::AutoReg::SubPixelAccuracy(), Isis::AutoReg::SubsearchValidPercent(), Isis::AutoReg::Tolerance(), Isis::toString(), and Isis::AutoReg::WindowSize().

◆ WindowSize()

double Isis::AutoReg::WindowSize ( ) const
inlineinherited

Return window size.

Definition at line 295 of file AutoReg.h.

References Isis::AutoReg::p_windowSize.

Referenced by Isis::AutoReg::UpdatedTemplate().

◆ ZScores()

void Isis::AutoReg::ZScores ( double & score1,
double & score2 ) const
inlineinherited

Return the ZScores of the pattern chip.

Parameters
score1First Z Score
score2Second Z Score

Definition at line 360 of file AutoReg.h.

References Isis::AutoReg::p_zScoreMax, and Isis::AutoReg::p_zScoreMin.

Referenced by Isis::ControlMeasureEditWidget::registerPoint(), Isis::ControlPointEdit::registerPoint(), Isis::ControlMeasureEditWidget::saveMeasure(), and Isis::ControlPointEdit::saveMeasure().

Member Data Documentation

◆ p_bestFit

double Isis::AutoReg::p_bestFit
privateinherited

Goodness of fit for adaptive algorithms.

Definition at line 523 of file AutoReg.h.

Referenced by Isis::AutoReg::Init(), Isis::AutoReg::Match(), Isis::AutoReg::Register(), Isis::AutoReg::Registration(), and Isis::AutoReg::SetGoodnessOfFit().

◆ p_bestLine

int Isis::AutoReg::p_bestLine
privateinherited

◆ p_bestSamp

int Isis::AutoReg::p_bestSamp
privateinherited

◆ p_chipLine

double Isis::AutoReg::p_chipLine
privateinherited

◆ p_chipSample

double Isis::AutoReg::p_chipSample
privateinherited

◆ p_cubeLine

double Isis::AutoReg::p_cubeLine
privateinherited

Cube line.

Definition at line 516 of file AutoReg.h.

Referenced by Isis::AutoReg::CubeLine(), and Isis::AutoReg::Register().

◆ p_cubeSample

double Isis::AutoReg::p_cubeSample
privateinherited

Cube sample.

Definition at line 515 of file AutoReg.h.

Referenced by Isis::AutoReg::CubeSample(), and Isis::AutoReg::Register().

◆ p_distanceTolerance

double Isis::AutoReg::p_distanceTolerance
privateinherited

Maximum distance the surface model solution may be from the best whole pixel fit in the fit chip.

Definition at line 521 of file AutoReg.h.

Referenced by Isis::AutoReg::DistanceTolerance(), Isis::AutoReg::Registration(), and Isis::AutoReg::SetSurfaceModelDistanceTolerance().

◆ p_fitChip

Chip Isis::AutoReg::p_fitChip
privateinherited

◆ p_fitChipNoDataCount

int Isis::AutoReg::p_fitChipNoDataCount
privateinherited

Registration statistics FitChipNoData keyword.

Definition at line 500 of file AutoReg.h.

Referenced by Isis::AutoReg::AutoReg(), Isis::AutoReg::Register(), Isis::AutoReg::Registration(), and Isis::AutoReg::RegistrationStatistics().

◆ p_fitChipToleranceNotMetCount

int Isis::AutoReg::p_fitChipToleranceNotMetCount
privateinherited

Registration statistics FitChipToleranceNotMet keyword.

Definition at line 501 of file AutoReg.h.

Referenced by Isis::AutoReg::AutoReg(), Isis::AutoReg::Registration(), and Isis::AutoReg::RegistrationStatistics().

◆ p_goodnessOfFit

double Isis::AutoReg::p_goodnessOfFit
privateinherited

Goodness of fit of the match algorithm.

Definition at line 517 of file AutoReg.h.

Referenced by Isis::AutoReg::GoodnessOfFit(), Isis::AutoReg::Init(), and Isis::AutoReg::Register().

◆ p_gradientFilterType

AutoReg::GradientFilterType Isis::AutoReg::p_gradientFilterType
privateinherited

◆ p_gradientPatternChip

Chip Isis::AutoReg::p_gradientPatternChip
privateinherited

Chip to be matched with gradient applied.

Definition at line 487 of file AutoReg.h.

Referenced by Isis::AutoReg::Register(), and Isis::AutoReg::RegistrationPatternChip().

◆ p_gradientSearchChip

Chip Isis::AutoReg::p_gradientSearchChip
privateinherited

Chip to be searched for best registration with gradient applied.

Definition at line 486 of file AutoReg.h.

Referenced by Isis::AutoReg::Register(), and Isis::AutoReg::RegistrationSearchChip().

◆ p_lineMovement

double Isis::AutoReg::p_lineMovement
privateinherited

The number of lines the point moved.

Definition at line 527 of file AutoReg.h.

Referenced by Isis::AutoReg::AutoReg(), Isis::AutoReg::Distance(), and Isis::AutoReg::Registration().

◆ p_minimumPatternZScore

double Isis::AutoReg::p_minimumPatternZScore
privateinherited

Minimum pattern Z-Score.

Definition at line 509 of file AutoReg.h.

Referenced by Isis::AutoReg::ComputeChipZScore(), Isis::AutoReg::MinimumZScore(), and Isis::AutoReg::SetPatternZScoreMinimum().

◆ p_patternChip

Chip Isis::AutoReg::p_patternChip
privateinherited

◆ p_patternChipNotEnoughValidDataCount

int Isis::AutoReg::p_patternChipNotEnoughValidDataCount
privateinherited

Registration statistics PatternNotEnoughValidData keyword.

Definition at line 498 of file AutoReg.h.

Referenced by Isis::AutoReg::AutoReg(), Isis::AutoReg::Register(), and Isis::AutoReg::RegistrationStatistics().

◆ p_patternValidPercent

double Isis::AutoReg::p_patternValidPercent
privateinherited

Percentage of data in pattern chip that must be valid.

Definition at line 510 of file AutoReg.h.

Referenced by Isis::AutoReg::PatternValidPercent(), Isis::AutoReg::Register(), and Isis::AutoReg::SetPatternValidPercent().

◆ p_patternZScoreNotMetCount

int Isis::AutoReg::p_patternZScoreNotMetCount
privateinherited

Registration statistics PatternZScoreNotMet keyword.

Definition at line 499 of file AutoReg.h.

Referenced by Isis::AutoReg::AutoReg(), Isis::AutoReg::Register(), and Isis::AutoReg::RegistrationStatistics().

◆ p_pixelSuccesses

int Isis::AutoReg::p_pixelSuccesses
privateinherited

Registration statistics Success keyword.

Definition at line 496 of file AutoReg.h.

Referenced by Isis::AutoReg::AutoReg(), Isis::AutoReg::Register(), and Isis::AutoReg::RegistrationStatistics().

◆ p_reducedFitChip

Chip Isis::AutoReg::p_reducedFitChip
privateinherited

Fit Chip with reduction factor.

Definition at line 490 of file AutoReg.h.

Referenced by Isis::AutoReg::AutoReg(), Isis::AutoReg::ReducedFitChip(), and Isis::AutoReg::Register().

◆ p_reducedPatternChip

Chip Isis::AutoReg::p_reducedPatternChip
privateinherited

◆ p_reducedSearchChip

Chip Isis::AutoReg::p_reducedSearchChip
privateinherited

◆ p_reduceFactor

int Isis::AutoReg::p_reduceFactor
privateinherited

Reduction factor.

Definition at line 528 of file AutoReg.h.

Referenced by Isis::AutoReg::ReductionFactor(), Isis::AutoReg::Register(), and Isis::AutoReg::SetReductionFactor().

◆ p_registrationStatus

Isis::AutoReg::RegisterStatus Isis::AutoReg::p_registrationStatus
privateinherited

Registration status to be returned by Register().

Definition at line 529 of file AutoReg.h.

Referenced by Isis::AutoReg::Register(), Isis::AutoReg::Registration(), and Isis::AutoReg::Success().

◆ p_sampMovement

double Isis::AutoReg::p_sampMovement
privateinherited

The number of samples the point moved.

Definition at line 526 of file AutoReg.h.

Referenced by Isis::AutoReg::AutoReg(), Isis::AutoReg::Distance(), and Isis::AutoReg::Registration().

◆ p_searchChip

Chip Isis::AutoReg::p_searchChip
privateinherited

◆ p_subpixelAccuracy

bool Isis::AutoReg::p_subpixelAccuracy
privateinherited

Indicates whether sub-pixel accuracy is enabled. Default is true.

Definition at line 492 of file AutoReg.h.

Referenced by Isis::AutoReg::Registration(), Isis::AutoReg::SetSubPixelAccuracy(), and Isis::AutoReg::SubPixelAccuracy().

◆ p_subpixelSuccesses

int Isis::AutoReg::p_subpixelSuccesses
privateinherited

Registration statistics Success keyword.

Definition at line 497 of file AutoReg.h.

Referenced by Isis::AutoReg::AutoReg(), Isis::AutoReg::Register(), and Isis::AutoReg::RegistrationStatistics().

◆ p_subsearchValidPercent

double Isis::AutoReg::p_subsearchValidPercent
privateinherited

Percentage of data in subsearch chip that must be valid.

Definition at line 511 of file AutoReg.h.

Referenced by Isis::AutoReg::Match(), Isis::AutoReg::SetSubsearchValidPercent(), and Isis::AutoReg::SubsearchValidPercent().

◆ p_surfaceModelDistanceInvalidCount

int Isis::AutoReg::p_surfaceModelDistanceInvalidCount
privateinherited

Registration statistics SurfaceModelDistanceInvalid keyword.

Definition at line 504 of file AutoReg.h.

Referenced by Isis::AutoReg::AutoReg(), Isis::AutoReg::Registration(), and Isis::AutoReg::RegistrationStatistics().

◆ p_surfaceModelNotEnoughValidDataCount

int Isis::AutoReg::p_surfaceModelNotEnoughValidDataCount
privateinherited

Registration statistics SurfaceModelNotEnoughValidData keyword.

Definition at line 502 of file AutoReg.h.

Referenced by Isis::AutoReg::AutoReg(), Isis::AutoReg::Registration(), and Isis::AutoReg::RegistrationStatistics().

◆ p_surfaceModelSolutionInvalidCount

int Isis::AutoReg::p_surfaceModelSolutionInvalidCount
privateinherited

Registration statistics SurfaceModelSolutionInvalid keyword.

Definition at line 503 of file AutoReg.h.

Referenced by Isis::AutoReg::AutoReg(), Isis::AutoReg::RegistrationStatistics(), and Isis::AutoReg::SetSubpixelPosition().

◆ p_template

PvlObject Isis::AutoReg::p_template
protectedinherited

AutoRegistration object that created this projection.

Definition at line 449 of file AutoReg.h.

Referenced by Isis::AutoReg::AutoReg(), and Isis::AutoReg::RegTemplate().

◆ p_tolerance

double Isis::AutoReg::p_tolerance
privateinherited

Tolerance for acceptable goodness of fit in match algorithm.

Definition at line 518 of file AutoReg.h.

Referenced by Isis::AutoReg::SetTolerance(), and Isis::AutoReg::Tolerance().

◆ p_totalRegistrations

int Isis::AutoReg::p_totalRegistrations
privateinherited

Registration Statistics Total keyword.

Definition at line 495 of file AutoReg.h.

Referenced by Isis::AutoReg::AutoReg(), Isis::AutoReg::Register(), and Isis::AutoReg::RegistrationStatistics().

◆ p_windowSize

int Isis::AutoReg::p_windowSize
privateinherited

◆ p_zScoreMax

double Isis::AutoReg::p_zScoreMax
privateinherited

Second Z-Score of pattern chip.

Definition at line 507 of file AutoReg.h.

Referenced by Isis::AutoReg::ComputeChipZScore(), Isis::AutoReg::Init(), and Isis::AutoReg::ZScores().

◆ p_zScoreMin

double Isis::AutoReg::p_zScoreMin
privateinherited

First Z-Score of pattern chip.

Definition at line 506 of file AutoReg.h.

Referenced by Isis::AutoReg::ComputeChipZScore(), Isis::AutoReg::Init(), and Isis::AutoReg::ZScores().


The documentation for this class was generated from the following files: