Isis 3 Programmer Reference
|
#include <Shade.h>
Public Member Functions | |
Shade (Pvl &pvl, PhotoModel &pmodel) | |
void | SetNormPharef (const double pharef) |
Set parameters needed for albedo normalization. More... | |
void | SetNormIncref (const double incref) |
Set the normalization function parameter. More... | |
void | SetNormEmaref (const double emaref) |
Set the normalization function parameter. More... | |
void | SetNormAlbedo (const double albedo) |
Set the normalization function parameter. More... | |
std::string | AlgorithmName () const |
Return normalization algorithm name. More... | |
void | CalcNrmAlbedo (double pha, double inc, double ema, double dn, double &albedo, double &mult, double &base) |
Calculate the albedo normalization. More... | |
void | CalcNrmAlbedo (double pha, double inc, double ema, double deminc, double demema, double dn, double &albedo, double &mult, double &base) |
Calculate the normalization albedo using photometric angle information. More... | |
virtual void | SetNormWavelength (double wavelength) |
Set the wavelength parameter. More... | |
Protected Member Functions | |
virtual void | NormModelAlgorithm (double pha, double inc, double ema, double dn, double &albedo, double &mult, double &base) |
virtual void | NormModelAlgorithm (double pha, double inc, double ema, double deminc, double demema, double dn, double &albedo, double &mult, double &base) |
void | SetAlgorithmName (std::string name) |
PhotoModel * | GetPhotoModel () |
AtmosModel * | GetAtmosModel () |
Protected Attributes | |
double | p_normWavelength |
Private Attributes | |
double | p_normPharef |
double | p_normIncref |
double | p_normEmaref |
double | p_normAlbedo |
2007-07-31 Steven Lambright - Refactored code
2010-11-10 Janet Barrett - Added reference parameters for phase and emission so user can specify normalization conditions in initialization
2010-11-30 Janet Barrett - Added ability to use the photometric angles from the ellipsoid or the DEM
|
inlineinherited |
Return normalization algorithm name.
Definition at line 59 of file NormModel.h.
|
inherited |
Calculate the albedo normalization.
Calculate the normalization albedo using photometric angle information.
pha | input phase angle |
inc | input incidence angle |
ema | input emission angle |
dn | input albedo value |
Definition at line 58 of file NormModel.cpp.
Referenced by Isis::Photometry::Compute().
|
inherited |
Calculate the normalization albedo using photometric angle information.
pha | input phase angle |
inc | input incidence angle for ellipsoid |
ema | input emission angle for ellipsoid |
deminc | input incidence angle for dem |
demema | input emission angle for dem |
dn | input albedo value |
Definition at line 83 of file NormModel.cpp.
void Isis::Shade::SetNormAlbedo | ( | const double | albedo | ) |
Set the normalization function parameter.
This is the albedo (I/F value at incidence p_normIncref and zero phase) used to simulate a shaded relief image. To construct mosaics, the same value of albedo should be used for all images to achieve a uniform result.
albedo | Normalization function parameter |
void Isis::Shade::SetNormEmaref | ( | const double | emaref | ) |
Set the normalization function parameter.
This is the reference emission angle to which the image photometry will be normalized. This parameter is limited to values that are >=0 and <90.
emaref | Normalization function parameter, default is 0.0 |
Definition at line 100 of file Shade.cpp.
References _FILEINFO_, and Isis::IException::User.
void Isis::Shade::SetNormIncref | ( | const double | incref | ) |
Set the normalization function parameter.
This is the reference incidence angle to which the image photometry will be normalized. This parameter is limited to values that are >=0 and <90.
incref | Normalization function parameter, default is 0.0 |
Definition at line 82 of file Shade.cpp.
References _FILEINFO_, and Isis::IException::User.
void Isis::Shade::SetNormPharef | ( | const double | pharef | ) |
Set parameters needed for albedo normalization.
Set the normalization function parameter.
This is the reference phase angle to which the image photometry will be normalized. This parameter is limited to values that are >=0 and <180.
pharef | Normalization function parameter, default is 0.0 |
Definition at line 64 of file Shade.cpp.
References _FILEINFO_, and Isis::IException::User.
|
virtualinherited |
Set the wavelength parameter.
This value is obtained from the BandBin Center keyword of the image. This must be set by the application.
Definition at line 45 of file NormModel.cpp.
Referenced by Isis::Photometry::SetPhotomWl().