lensfun  0.3.1.0
Public Member Functions | Static Public Member Functions | Public Attributes | List of all members

Lens data. Unknown fields are set to NULL or 0. More...

#include <lensfun.h>

Public Member Functions

 lfLens ()
 Create a new lens object, initializing all fields to default values.
 
 lfLens (const lfLens &other)
 
 ~lfLens ()
 Destroy this and all associated objects.
 
lfLensoperator= (const lfLens &other)
 
void SetMaker (const char *val, const char *lang=NULL)
 Add a string to camera maker. More...
 
void SetModel (const char *val, const char *lang=NULL)
 Add a string to camera model. More...
 
void AddMount (const char *val)
 Add a new mount type to this lens. More...
 
void AddCalibDistortion (const lfLensCalibDistortion *dc)
 Add a new distortion calibration structure to the pool. More...
 
bool RemoveCalibDistortion (int idx)
 Remove a calibration entry from the distortion calibration data. More...
 
void AddCalibTCA (const lfLensCalibTCA *tcac)
 Add a new transversal chromatic aberration calibration structure to the pool. More...
 
bool RemoveCalibTCA (int idx)
 Remove a calibration entry from the TCA calibration data. More...
 
void AddCalibVignetting (const lfLensCalibVignetting *vc)
 Add a new vignetting calibration structure to the pool. More...
 
bool RemoveCalibVignetting (int idx)
 Remove a calibration entry from the vignetting calibration data. More...
 
void AddCalibCrop (const lfLensCalibCrop *cc)
 Add a new lens crop structure to the pool. More...
 
bool RemoveCalibCrop (int idx)
 Remove a lens crop entry from the lens crop structure. More...
 
DEPRECATED void AddCalibFov (const lfLensCalibFov *cf)
 Add a new lens fov structure to the pool. More...
 
DEPRECATED bool RemoveCalibFov (int idx)
 Remove a field of view entry from the lens fov structure. More...
 
void AddCalibRealFocal (const lfLensCalibRealFocal *cf)
 Add a new lens real focal length structure to the pool. More...
 
bool RemoveCalibRealFocal (int idx)
 Remove a real focal length entry from the lens real focal length structure. More...
 
void GuessParameters ()
 This method fills some fields if they are missing but can be derived from other fields. More...
 
bool Check ()
 Check if a lens object is valid. More...
 
bool InterpolateDistortion (float focal, lfLensCalibDistortion &res) const
 Interpolate lens geometry distortion data for given focal length. More...
 
bool InterpolateTCA (float focal, lfLensCalibTCA &res) const
 Interpolate lens TCA calibration data for given focal length. More...
 
bool InterpolateVignetting (float focal, float aperture, float distance, lfLensCalibVignetting &res) const
 Interpolate lens vignetting model parameters for given focal length, aperture, and focus distance. More...
 
bool InterpolateCrop (float focal, lfLensCalibCrop &res) const
 Interpolate lens crop data for given focal length. More...
 
DEPRECATED bool InterpolateFov (float focal, lfLensCalibFov &res) const
 Interpolate lens fov data for given focal length. More...
 
bool InterpolateRealFocal (float focal, lfLensCalibRealFocal &res) const
 Interpolate lens real focal length data for given focal length. More...
 

Static Public Member Functions

static const char * GetDistortionModelDesc (lfDistortionModel model, const char **details, const lfParameter ***params)
 Get the human-readable distortion model name and the descriptions of the parameters required by this model. More...
 
static const char * GetTCAModelDesc (lfTCAModel model, const char **details, const lfParameter ***params)
 Get the human-readable transversal chromatic aberrations model name and the descriptions of the parameters required by this model. More...
 
static const char * GetVignettingModelDesc (lfVignettingModel model, const char **details, const lfParameter ***params)
 Get the human-readable vignetting model name and the descriptions of the parameters required by this model. More...
 
static const char * GetCropDesc (lfCropMode mode, const char **details, const lfParameter ***params)
 Get the human-readable crop name and the descriptions of the parameters required by this model. More...
 
static const char * GetLensTypeDesc (lfLensType type, const char **details)
 Get the human-readable lens type name and a short description of this lens type. More...
 

Public Attributes

lfMLstr Maker
 
lfMLstr Model
 
float MinFocal
 
float MaxFocal
 
float MinAperture
 
float MaxAperture
 
char ** Mounts
 
float CenterX
 
float CenterY
 
float CropFactor
 
float AspectRatio
 
lfLensType Type
 
lfLensCalibDistortion ** CalibDistortion
 
lfLensCalibTCA ** CalibTCA
 
lfLensCalibVignetting ** CalibVignetting
 
lfLensCalibCrop ** CalibCrop
 
lfLensCalibFov ** CalibFov
 
lfLensCalibRealFocal ** CalibRealFocal
 
int Score
 

Detailed Description

Lens data. Unknown fields are set to NULL or 0.

To create a new lens object, use the lfLens::Create() or lf_lens_new() functions. After that fill the fields for which you have data, and invoke the lfLens::Check or lf_lens_check() function, which will check if existing data is enough and will fill some fields using information extracted from lens name.

Examples:
example.c, lenstool.cpp, and tfun.cpp.

Constructor & Destructor Documentation

◆ lfLens()

lfLens::lfLens ( const lfLens other)

Copy constructor.

Member Function Documentation

◆ AddCalibCrop()

void lfLens::AddCalibCrop ( const lfLensCalibCrop cc)

Add a new lens crop structure to the pool.

The objects is copied, thus you can reuse it as soon as this function returns.

Parameters
ccThe lens crop structure.

◆ AddCalibDistortion()

void lfLens::AddCalibDistortion ( const lfLensCalibDistortion dc)

Add a new distortion calibration structure to the pool.

The objects is copied, thus you can reuse it as soon as this function returns.

Parameters
dcThe distortion calibration structure.

◆ AddCalibFov()

DEPRECATED void lfLens::AddCalibFov ( const lfLensCalibFov cf)

Add a new lens fov structure to the pool.

The Field of View (FOV) database entry is deprecated since lensfun version 0.3 and will be removed in future releases.

The objects is copied, thus you can reuse it as soon as this function returns.

Parameters
cfThe lens fov structure.

◆ AddCalibRealFocal()

void lfLens::AddCalibRealFocal ( const lfLensCalibRealFocal cf)

Add a new lens real focal length structure to the pool.

The objects is copied, thus you can reuse it as soon as this function returns.

Parameters
cfThe lens real focal length structure.

◆ AddCalibTCA()

void lfLens::AddCalibTCA ( const lfLensCalibTCA tcac)

Add a new transversal chromatic aberration calibration structure to the pool.

The objects is copied, thus you can reuse it as soon as this function returns.

Parameters
tcacThe transversal chromatic aberration calibration structure.

◆ AddCalibVignetting()

void lfLens::AddCalibVignetting ( const lfLensCalibVignetting vc)

Add a new vignetting calibration structure to the pool.

The objects is copied, thus you can reuse it as soon as this function returns.

Parameters
vcThe vignetting calibration structure.

◆ AddMount()

void lfLens::AddMount ( const char *  val)

Add a new mount type to this lens.

This is not a multi-language string, this it's just plain replaced.

Parameters
valThe new value to add to the Mounts array.

◆ Check()

bool lfLens::Check ( )

Check if a lens object is valid.

Returns
true if the required fields are ok.

◆ GetCropDesc()

static const char* lfLens::GetCropDesc ( lfCropMode  mode,
const char **  details,
const lfParameter ***  params 
)
static

Get the human-readable crop name and the descriptions of the parameters required by this model.

Parameters
modeThe crop mode.
detailsIf not NULL, this string will be set to a more detailed (technical) description of the model. This string may contain newlines.
paramsIf not NULL, this variable will be set to a pointer to an array of lfParameter structures, every structure describes a model parameter. The list is NULL-terminated.
Returns
A short name of the distortion model or NULL if model is unknown.

◆ GetDistortionModelDesc()

static const char* lfLens::GetDistortionModelDesc ( lfDistortionModel  model,
const char **  details,
const lfParameter ***  params 
)
static

Get the human-readable distortion model name and the descriptions of the parameters required by this model.

Parameters
modelThe model.
detailsIf not NULL, this string will be set to a more detailed (technical) description of the model. This string may contain newlines.
paramsIf not NULL, this variable will be set to a pointer to an array of lfParameter structures, every structure describes a model parameter. The list is NULL-terminated.
Returns
A short name of the distortion model or NULL if model is unknown.

◆ GetLensTypeDesc()

static const char* lfLens::GetLensTypeDesc ( lfLensType  type,
const char **  details 
)
static

Get the human-readable lens type name and a short description of this lens type.

Parameters
typeLens type.
detailsIf not NULL, this string will be set to a more detailed (technical) description of the lens type. This string may contain newlines.
Returns
A short name of the lens type or NULL if model is unknown.

◆ GetTCAModelDesc()

static const char* lfLens::GetTCAModelDesc ( lfTCAModel  model,
const char **  details,
const lfParameter ***  params 
)
static

Get the human-readable transversal chromatic aberrations model name and the descriptions of the parameters required by this model.

Parameters
modelThe model.
detailsIf not NULL, this string will be set to a more detailed (technical) description of the model. This string may contain newlines.
paramsIf not NULL, this variable will be set to a pointer to an array of lfParameter structures, every structure describes a model parameter. The list is NULL-terminated.
Returns
A short name of the TCA model or NULL if model is unknown.

◆ GetVignettingModelDesc()

static const char* lfLens::GetVignettingModelDesc ( lfVignettingModel  model,
const char **  details,
const lfParameter ***  params 
)
static

Get the human-readable vignetting model name and the descriptions of the parameters required by this model.

Parameters
modelThe model.
detailsIf not NULL, this string will be set to a more detailed (technical) description of the model. This string may contain newlines.
paramsIf not NULL, this variable will be set to a pointer to an array of lfParameter structures, every structure describes a model parameter. The list is NULL-terminated.
Returns
A short name of the vignetting model or NULL if model is unknown.

◆ GuessParameters()

void lfLens::GuessParameters ( )

This method fills some fields if they are missing but can be derived from other fields.

This includes such non-obvious parameters like the range of focal lengths or the range of apertures, which can be derived from lens named (which is intelligently parsed) or from the list of calibrations.

◆ InterpolateCrop()

bool lfLens::InterpolateCrop ( float  focal,
lfLensCalibCrop res 
) const

Interpolate lens crop data for given focal length.

Parameters
focalThe focal length in mm at which we need image parameters.
resThe resulting interpolated information data.

◆ InterpolateDistortion()

bool lfLens::InterpolateDistortion ( float  focal,
lfLensCalibDistortion res 
) const

Interpolate lens geometry distortion data for given focal length.

Parameters
focalThe focal length in mm at which we need geometry distortion parameters.
resThe resulting interpolated model.

◆ InterpolateFov()

DEPRECATED bool lfLens::InterpolateFov ( float  focal,
lfLensCalibFov res 
) const

Interpolate lens fov data for given focal length.

The Field of View (FOV) database entry is deprecated since lensfun version 0.3 and will be removed in future releases.

Parameters
focalThe focal length in mm at which we need image parameters.
resThe resulting interpolated information data.

◆ InterpolateRealFocal()

bool lfLens::InterpolateRealFocal ( float  focal,
lfLensCalibRealFocal res 
) const

Interpolate lens real focal length data for given focal length.

The Field of View (FOV) database entry is deprecated since lensfun version 0.3 and will be removed in future releases.

Parameters
focalThe nominal focal length in mm at which we need image parameters.
resThe resulting interpolated information data.

◆ InterpolateTCA()

bool lfLens::InterpolateTCA ( float  focal,
lfLensCalibTCA res 
) const

Interpolate lens TCA calibration data for given focal length.

Parameters
focalThe focal length in mm at which we need TCA parameters.
resThe resulting interpolated model.

◆ InterpolateVignetting()

bool lfLens::InterpolateVignetting ( float  focal,
float  aperture,
float  distance,
lfLensCalibVignetting res 
) const

Interpolate lens vignetting model parameters for given focal length, aperture, and focus distance.

Parameters
focalThe focal length in mm for which we need vignetting parameters.
apertureThe aperture (f-number) for which we need vignetting parameters.
distanceThe focus distance in meters (distance > 0) for which we need vignetting parameters.
resThe resulting interpolated model.

◆ operator=()

lfLens& lfLens::operator= ( const lfLens other)

Assignment operator

◆ RemoveCalibCrop()

bool lfLens::RemoveCalibCrop ( int  idx)

Remove a lens crop entry from the lens crop structure.

Parameters
idxThe lens crop data index (zero-based).

◆ RemoveCalibDistortion()

bool lfLens::RemoveCalibDistortion ( int  idx)

Remove a calibration entry from the distortion calibration data.

Parameters
idxThe calibration data index (zero-based).

◆ RemoveCalibFov()

DEPRECATED bool lfLens::RemoveCalibFov ( int  idx)

Remove a field of view entry from the lens fov structure.

The Field of View (FOV) database entry is deprecated since lensfun version 0.3 and will be removed in future releases.

Parameters
idxThe lens information data index (zero-based).

◆ RemoveCalibRealFocal()

bool lfLens::RemoveCalibRealFocal ( int  idx)

Remove a real focal length entry from the lens real focal length structure.

Parameters
idxThe lens information data index (zero-based).

◆ RemoveCalibTCA()

bool lfLens::RemoveCalibTCA ( int  idx)

Remove a calibration entry from the TCA calibration data.

Parameters
idxThe calibration data index (zero-based).

◆ RemoveCalibVignetting()

bool lfLens::RemoveCalibVignetting ( int  idx)

Remove a calibration entry from the vignetting calibration data.

Parameters
idxThe calibration data index (zero-based).

◆ SetMaker()

void lfLens::SetMaker ( const char *  val,
const char *  lang = NULL 
)

Add a string to camera maker.

If lang is NULL, this replaces the default value, otherwise a new language value is appended.

Parameters
valThe new value for the Maker field.
langThe language this field is in.

◆ SetModel()

void lfLens::SetModel ( const char *  val,
const char *  lang = NULL 
)

Add a string to camera model.

If lang is NULL, this replaces the default value, otherwise a new language value is appended.

Parameters
valThe new value for the Model field.
langThe language this field is in.

Member Data Documentation

◆ AspectRatio

float lfLens::AspectRatio

Aspect ratio of the images used for calibration measurements.

Examples:
tfun.cpp.

◆ CalibCrop

lfLensCalibCrop** lfLens::CalibCrop

Crop data, NULL-terminated (unsorted)

◆ CalibDistortion

lfLensCalibDistortion** lfLens::CalibDistortion

Lens distortion calibration data, NULL-terminated (unsorted)

◆ CalibFov

lfLensCalibFov** lfLens::CalibFov

Field of view calibration data, NULL-terminated (unsorted)

◆ CalibRealFocal

lfLensCalibRealFocal** lfLens::CalibRealFocal

Real focal length calibration data, NULL-terminated (unsorted)

◆ CalibTCA

lfLensCalibTCA** lfLens::CalibTCA

Lens TCA calibration data, NULL-terminated (unsorted)

◆ CalibVignetting

lfLensCalibVignetting** lfLens::CalibVignetting

Lens vignetting calibration data, NULL-terminated (unsorted)

◆ CenterX

float lfLens::CenterX

The horizontal shift of all lens distortions. Note that distortion and TCA uses same geometrical lens center. It is given as a relative value to avoide dependency on the image and/or sensor sizes. The calibrated delta X and Y values are numbers in the -0.5 .. +0.5 range. For 1 we take the maximal image dimension (width or height) - this is related to the fact that the lens has a circular field of projection disregarding sensor size.

Examples:
tfun.cpp.

◆ CenterY

float lfLens::CenterY

The vertical shift of all lens distortions. (0,0) for geometric center

Examples:
tfun.cpp.

◆ CropFactor

float lfLens::CropFactor

Crop factor at which calibration measurements were taken. Must be defined.

Examples:
lenstool.cpp, and tfun.cpp.

◆ Maker

lfMLstr lfLens::Maker

Lens maker (ex: "Rollei")

Examples:
tfun.cpp.

◆ MaxAperture

float lfLens::MaxAperture

Biggest f-number possible (ex: 22). Can be equal to MinAperture.

Examples:
tfun.cpp.

◆ MaxFocal

float lfLens::MaxFocal

Maximum focal length, mm (ex: 105). Can be equal to MinFocal.

Examples:
tfun.cpp.

◆ MinAperture

float lfLens::MinAperture

Smallest f-number possible (ex: 3.5).

Examples:
lenstool.cpp, and tfun.cpp.

◆ MinFocal

float lfLens::MinFocal

Minimum focal length, mm (ex: 35).

Examples:
lenstool.cpp, and tfun.cpp.

◆ Model

lfMLstr lfLens::Model

Lens model (ex: "Zoom-Rolleinar")

Examples:
lenstool.cpp, and tfun.cpp.

◆ Mounts

char** lfLens::Mounts

Available mounts (NULL-terminated list) (ex: { "QBM", NULL })

Examples:
example.c, and tfun.cpp.

◆ Score

int lfLens::Score

Lens matching score, used while searching: not actually a lens parameter

◆ Type

lfLensType lfLens::Type

Lens type


The documentation for this struct was generated from the following file: