Open Inventor Release 2024.1.1
 
Loading...
Searching...
No Matches
SoConverterParameters Class Reference

Large Data Management Container class for LDM converter parameters More...

#include <LDM/converters/SoConverterParameters.h>

Public Types

enum  SampleType {
  DECIMATION ,
  AVERAGE
}
 
enum  ParametersError {
  PARAM_NO_ERROR = 0 ,
  PARAM_ERROR = -1
}
 

Public Member Functions

 SoConverterParameters ()
 Default constructor.
 
virtual ~SoConverterParameters ()
 Destructor.
 
void setVerbose (const bool isVerbose)
 Set verbose mode.
 
bool isVerbose () const
 Returns verbose mode setting.
 
void setTileDim (const int tileDim)
 Set tile dimension.
 
void setTileDim (const SbVec3i32 &tileDim)
 Set tile dimension.
 
SbVec3i32 getTileDim () const
 Returns tile dimension.
 
void setHeaderFileName (const SbString &headerFileName)
 Set header filename (i.e.
 
SbString getHeaderFileName () const
 Returns header filename.
 
void setDataFileName (const SbString &dataFileName)
 Set data filename (i.e.
 
SbString getDataSectionFileName () const
 Returns the data filename.
 
SbString getDataFileName () const
 Returns the complete data filename (i.e.: the whole path to .dat file).
 
void setInputFileName (const SbString &inputFileName)
 Set the input filename.
 
SbString getInputFileName () const
 Returns input filename.
 
void setInputVolume (SoDataSet *inputVolume)
 Define the volume used as input.
 
SoDataSetgetInputVolume () const
 Returns the the volume used as input.
 
bool setMaxMemory (int maxMemory)
 Set maximum memory available for the converter, in MB.
 
int getMaxMemory () const
 Returns max memory available for converter.
 
void setOutputHeaderOnly (bool headerOnly)
 Set the header only feature.
 
bool getOutputHeaderOnly () const
 Returns header only setting.
 
bool setOutputDataFormat (const SbString &dataFormat)
 Set the output data format from a format string.
 
bool setOutputDataFormat (const SoDataSet::DataType &dataType)
 Set the output data format with an SoDataSet::DataType.
 
SoDataSet::DataType getOutputDataFormat () const
 Returns the output data format.
 
bool setTargetWordFormat (int wordFormat)
 Set the target machine word format.
 
int getTargetWordFormat () const
 Returns word format property.
 
bool setInputRangeMinMax (double min, double max)
 Set the input data range to map to the output data format.
 
void getInputRangeMinMax (double &min, double &max) const
 Returns input data range.
 
bool setCompressionName (const SbString &compressionName)
 Set compression name.
 
void setCompressionLevel (int compressionLevel)
 Set compression level.
 
void setCrcCheck (bool addCrcCheck)
 Set CRC32 check on compression.
 
SbString getCompressionName () const
 Returns compression type.
 
int getCompressionLevel () const
 
bool isCrcCheckDone () const
 
bool useDefaultCompLvl () const
 
bool setLowResAlgorithm (int lowResAlgorithm)
 Set the algorithm used to build low resolution tiles.
 
SampleType getLowResAlgorithm () const
 Returns algorithm used to build low resolution tiles.
 
int getPondCoef () const
 Retrieve the ponderation coefficient for low resolution tiles.
 
void setUndefinedValue (double undefinedValue)
 Set the undefined value.
 
double getUndefinedValue () const
 Returns the undefined value.
 
int getNbArgs () const
 Returns the number of arguments set during init.
 
bool isOutputDataTypeSpecified () const
 Return whether or not the output data type has been specified.
 
bool isInputDataRangeSpecified () const
 Return whether or not the input data range has been specified.
 
void setRGBAMode (const bool flag)
 Set RGBA data mode (output will be unsigned int32 RGBA values).
 
bool isRGBAMode () const
 Returns true if RGBA mode.
 
void enableHistogram (const bool flag)
 Specify if the histogram must be computed or not.
 
bool isHistogramEnabled () const
 Returns true if histogram will be computed.
 
bool isSavedAsBitSet () const
 Returns true if output will be saved as a bitset (ie: 8 values per byte)
 
void saveAsBitSet (bool flag, double bitsetThreshold=0)
 Specify if dataset should be saved as a bitset (8 values per byte) or values.
 
double getBitSetThreshold () const
 Returns the bitset generation threshold value.
 
void setBitSetThreshold (double bitsetThreshold)
 Set the bitset threshold value.
 
void doUpdate (bool value)
 Only applies to input files in LDM format.
 
bool isForUpdate () const
 Return TRUE if converter is configured to perform a simple update.
 
void setVerticalFlip (bool flag)
 Set the m_bVerticalFlip flag.
 
bool isVerticalFlip () const
 Return if m_bVerticalFlip flag is set.
 

Static Public Member Functions

static SoConverterParameterscreate (int argc, char **argv)
 Static method to build a parameters container from command line arguments.
 
static SoConverterParameterscreate (const SbStringList &arguments)
 Static method to build a parameters container from command line arguments.
 

Protected Member Functions

void buildOutputFileName ()
 

Protected Attributes

bool m_verboseMode
 
bool m_outputDataTypeSpecified
 
bool m_inputDataRangeSpecified
 
bool m_headerOnly
 
bool m_crcCheck
 
bool m_useDefaultCompLevel
 
double m_defaultValue
 
bool m_RGBAMode
 
int m_memSize
 
int m_targetWordFormat
 
int m_compressionLevel
 
int m_pondCoeff
 
int m_nbArgs
 
double m_undefValue
 
double m_dataRangeInMin
 
double m_dataRangeInMax
 
SbString m_headerFileName
 
SbString m_dataSectionFileName
 
SbString m_dataFileName
 
SoDataSetm_inputVolume
 
SbString m_inputFileName
 
SbString m_compressionName
 
SampleType m_sampleType
 
SoDataSet::DataType m_dataTypeOut
 
SbVec3i32 m_tileDim
 
bool m_isForEditing
 
bool m_isTileDimDefaultValue
 
bool m_savedAsBitSet
 
bool m_isRGBAModeDefault
 
bool m_doHistogram
 
bool m_recomputeHistogram
 
bool m_doTileMinMax
 
double m_bitsetThreshold
 
bool m_doUpdate
 
bool m_bVerticalFlip
 Flip the output data on Y axis.
 
bool m_bFromWriter
 

Static Protected Attributes

static const char * m_dataTypeStr []
 
static const char * m_dataTypeXml []
 

Detailed Description

Large Data Management Container class for LDM converter parameters

This class provides a convenient way to specify parameters for the LDM converter.

SEE ALSO

SoConverter

Definition at line 51 of file SoConverterParameters.h.

Member Enumeration Documentation

◆ ParametersError

Enumerator
PARAM_NO_ERROR 

No error.

PARAM_ERROR 

Input params problems.

Definition at line 67 of file SoConverterParameters.h.

◆ SampleType

Enumerator
DECIMATION 

Decimation : Only one voxel out of two.

AVERAGE 

Average : Voxel value in parent tile is an average of Neighbor voxel in child tile.

Definition at line 55 of file SoConverterParameters.h.

Constructor & Destructor Documentation

◆ SoConverterParameters()

SoConverterParameters::SoConverterParameters ( )

Default constructor.

◆ ~SoConverterParameters()

virtual SoConverterParameters::~SoConverterParameters ( )
virtual

Destructor.

Member Function Documentation

◆ buildOutputFileName()

void SoConverterParameters::buildOutputFileName ( )
protected

◆ create() [1/2]

static SoConverterParameters * SoConverterParameters::create ( const SbStringList arguments)
static

Static method to build a parameters container from command line arguments.


The method returns NULL if an error is detected in the parameters. Otherwise, it returns a pointer to an instance of the class, initialized with given parameters See SoConverter::converter for a list of command line arguments.

Note: SbStringList is a list of pointers, not a list of objects, so the destructor for this class does not free the memory associated with the SbString objects. The application is responsible for deleting each object in the list.

◆ create() [2/2]

static SoConverterParameters * SoConverterParameters::create ( int  argc,
char **  argv 
)
static

Static method to build a parameters container from command line arguments.


The method returns NULL if an error is detected in the arguments. Otherwise, it returns a pointer to an instance of the class, initialized with given parameters. See SoConverter::converter for a list of command line arguments.

◆ doUpdate()

void SoConverterParameters::doUpdate ( bool  value)
inline

Only applies to input files in LDM format.

If true the converter must just perform an update of the given file. This means that if no options are specified, the converter will retrieve information from the input file and apply its properties automatically to the generated file.

Definition at line 854 of file SoConverterParameters.h.

◆ enableHistogram()

void SoConverterParameters::enableHistogram ( const bool  flag)
inline

Specify if the histogram must be computed or not.

Default is true.

Disabling Histogram generation will greatly speedup the conversion process, but some VolumeViz rendering features and optimizations won't be available.

It also implies that the following information won't be computed:

  • dataset min and max values
  • per Tile min max values

Note also that if RGBA mode is set then no histogram is computed.

Definition at line 788 of file SoConverterParameters.h.

◆ getBitSetThreshold()

double SoConverterParameters::getBitSetThreshold ( ) const
inline

Returns the bitset generation threshold value.

Definition at line 830 of file SoConverterParameters.h.

◆ getCompressionLevel()

int SoConverterParameters::getCompressionLevel ( ) const
inline

Definition at line 637 of file SoConverterParameters.h.

◆ getCompressionName()

SbString SoConverterParameters::getCompressionName ( ) const
inline

Returns compression type.

Definition at line 631 of file SoConverterParameters.h.

◆ getDataFileName()

SbString SoConverterParameters::getDataFileName ( ) const
inline

Returns the complete data filename (i.e.: the whole path to .dat file).

Definition at line 595 of file SoConverterParameters.h.

◆ getDataSectionFileName()

SbString SoConverterParameters::getDataSectionFileName ( ) const
inline

Returns the data filename.

Definition at line 582 of file SoConverterParameters.h.

◆ getHeaderFileName()

SbString SoConverterParameters::getHeaderFileName ( ) const
inline

Returns header filename.

Definition at line 576 of file SoConverterParameters.h.

◆ getInputFileName()

SbString SoConverterParameters::getInputFileName ( ) const
inline

Returns input filename.

Definition at line 706 of file SoConverterParameters.h.

◆ getInputRangeMinMax()

void SoConverterParameters::getInputRangeMinMax ( double &  min,
double &  max 
) const
inline

Returns input data range.

Definition at line 655 of file SoConverterParameters.h.

◆ getInputVolume()

SoDataSet * SoConverterParameters::getInputVolume ( ) const
inline

Returns the the volume used as input.

Definition at line 712 of file SoConverterParameters.h.

◆ getLowResAlgorithm()

SoConverterParameters::SampleType SoConverterParameters::getLowResAlgorithm ( ) const
inline

Returns algorithm used to build low resolution tiles.

Definition at line 662 of file SoConverterParameters.h.

◆ getMaxMemory()

int SoConverterParameters::getMaxMemory ( ) const
inline

Returns max memory available for converter.

Definition at line 601 of file SoConverterParameters.h.

◆ getNbArgs()

int SoConverterParameters::getNbArgs ( ) const
inline

Returns the number of arguments set during init.

Definition at line 674 of file SoConverterParameters.h.

◆ getOutputDataFormat()

SoDataSet::DataType SoConverterParameters::getOutputDataFormat ( ) const
inline

Returns the output data format.

Definition at line 619 of file SoConverterParameters.h.

◆ getOutputHeaderOnly()

bool SoConverterParameters::getOutputHeaderOnly ( ) const
inline

Returns header only setting.

Definition at line 607 of file SoConverterParameters.h.

◆ getPondCoef()

int SoConverterParameters::getPondCoef ( ) const
inline

Retrieve the ponderation coefficient for low resolution tiles.


Only relevant when low resolution algorithm is set to AVERAGE.

Definition at line 730 of file SoConverterParameters.h.

◆ getTargetWordFormat()

int SoConverterParameters::getTargetWordFormat ( ) const
inline

Returns word format property.

Definition at line 625 of file SoConverterParameters.h.

◆ getTileDim()

SbVec3i32 SoConverterParameters::getTileDim ( ) const
inline

Returns tile dimension.

Definition at line 561 of file SoConverterParameters.h.

◆ getUndefinedValue()

double SoConverterParameters::getUndefinedValue ( ) const
inline

Returns the undefined value.

Definition at line 668 of file SoConverterParameters.h.

◆ isCrcCheckDone()

bool SoConverterParameters::isCrcCheckDone ( ) const
inline

Definition at line 643 of file SoConverterParameters.h.

◆ isForUpdate()

bool SoConverterParameters::isForUpdate ( ) const
inline

Return TRUE if converter is configured to perform a simple update.

Return FALSE otherwise

Definition at line 860 of file SoConverterParameters.h.

◆ isHistogramEnabled()

bool SoConverterParameters::isHistogramEnabled ( ) const
inline

Returns true if histogram will be computed.

Definition at line 794 of file SoConverterParameters.h.

◆ isInputDataRangeSpecified()

bool SoConverterParameters::isInputDataRangeSpecified ( ) const
inline

Return whether or not the input data range has been specified.

Definition at line 724 of file SoConverterParameters.h.

◆ isOutputDataTypeSpecified()

bool SoConverterParameters::isOutputDataTypeSpecified ( ) const
inline

Return whether or not the output data type has been specified.

Definition at line 692 of file SoConverterParameters.h.

◆ isRGBAMode()

bool SoConverterParameters::isRGBAMode ( ) const
inline

Returns true if RGBA mode.

Definition at line 782 of file SoConverterParameters.h.

◆ isSavedAsBitSet()

bool SoConverterParameters::isSavedAsBitSet ( ) const
inline

Returns true if output will be saved as a bitset (ie: 8 values per byte)

Definition at line 760 of file SoConverterParameters.h.

◆ isVerbose()

bool SoConverterParameters::isVerbose ( ) const
inline

Returns verbose mode setting.

Definition at line 549 of file SoConverterParameters.h.

◆ isVerticalFlip()

bool SoConverterParameters::isVerticalFlip ( ) const
inline

Return if m_bVerticalFlip flag is set.

Definition at line 866 of file SoConverterParameters.h.

◆ saveAsBitSet()

void SoConverterParameters::saveAsBitSet ( bool  flag,
double  bitsetThreshold = 0 
)
inline

Specify if dataset should be saved as a bitset (8 values per byte) or values.

Parameters
flagDataset is a bitset (true) or values (false)
bitsetThresholdFor each value (V) of a dataset, if V > bitsetThreshold the bitset is set to 1 for this bit, or to 0 otherwise. Used only if flag parameter is set to true. Default is 0.

Definition at line 766 of file SoConverterParameters.h.

◆ setBitSetThreshold()

void SoConverterParameters::setBitSetThreshold ( double  bitsetThreshold)
inline

Set the bitset threshold value.


Whichever was called last, saveAsBitSet or this method, determines the threshold value that will be used.

Parameters
bitsetThresholdFor each value (V) of a dataset, if V > threshold the bitset is set to 1 for this bit, or to 0 otherwise. Default is 0.

Definition at line 836 of file SoConverterParameters.h.

◆ setCompressionLevel()

void SoConverterParameters::setCompressionLevel ( int  compressionLevel)

Set compression level.


Like the -l command line argument. See also setCompressionName(). The meaning of this parameter depends on the type of compression used:

  • gzip
    Level must be between 0 and 9: 0 gives no compression, 9 gives best compression but slower speed. Default is 3.
  • jpeg:
    Level must be between 0 and 100: 0 gives best compression but most loss of data, 100 gives minimum compression and minimum data alteration. Default is 85.

◆ setCompressionName()

bool SoConverterParameters::setCompressionName ( const SbString compressionName)

Set compression name.


Like the -c command line argument. See also setCompressionLevel(). The following compression types are currently supported:.

  • gzip:
    This is a lossless compression and can be used on any type of data. See SoGzipDataCompressor.
  • jpeg:
    This is a lossy compression. See SoJpegDataCompressor.
    Limitation: Can only be used on 8-bit scalar data sets.

Returns true if parameter is valid, else returns false.

◆ setCrcCheck()

void SoConverterParameters::setCrcCheck ( bool  addCrcCheck)
inline

Set CRC32 check on compression.


Like -C command line argument. When compression is enabled using -c, adds a data integrity check value to all compressed tiles. If the environment variable LDM_COMPRESS_CHECK_CRC32 is set, data values will be checked each time they are read from disk. Default is false.

Definition at line 649 of file SoConverterParameters.h.

◆ setDataFileName()

void SoConverterParameters::setDataFileName ( const SbString dataFileName)
inline

Set data filename (i.e.

the .dat filename).
Like the -O command line argument. Default is the same as the header file, with .dat extension.

Definition at line 588 of file SoConverterParameters.h.

◆ setHeaderFileName()

void SoConverterParameters::setHeaderFileName ( const SbString headerFileName)
inline

Set header filename (i.e.

the .ldm filename).
Like the -o command line argument. Default is input filename with extension .ldm.

Definition at line 567 of file SoConverterParameters.h.

◆ setInputFileName()

void SoConverterParameters::setInputFileName ( const SbString inputFileName)
inline

Set the input filename.


This is the file containing data to convert. Alternative to setInputVolume(). An input file must be specified. To get more information regarding possible limitation of any readers you may use, please see documentation of Readers.

Definition at line 698 of file SoConverterParameters.h.

◆ setInputRangeMinMax()

bool SoConverterParameters::setInputRangeMinMax ( double  min,
double  max 
)

Set the input data range to map to the output data format.


Like the -r command line argument. If not specified, and input type is float and output type is integer, the values are simply cast into the output data type. Returns true if parameter is valid, else returns false.

◆ setInputVolume()

void SoConverterParameters::setInputVolume ( SoDataSet inputVolume)
inline

Define the volume used as input.

Allows to convert in-memory data to a LDM file. Alternative to setInputFileName().

Definition at line 718 of file SoConverterParameters.h.

◆ setLowResAlgorithm()

bool SoConverterParameters::setLowResAlgorithm ( int  lowResAlgorithm)

Set the algorithm used to build low resolution tiles.


Available options are :

  • 0: To use decimation algorithm
  • n: To use average algorithm and give a ponderation coefficient of n to the selected voxel. The default is Decimation. Returns true if parameter is valid, else returns false.

◆ setMaxMemory()

bool SoConverterParameters::setMaxMemory ( int  maxMemory)

Set maximum memory available for the converter, in MB.


Like the -m command line argument. Default value is 512 MB. Returns true if parameter is valid, else returns false.

◆ setOutputDataFormat() [1/2]

bool SoConverterParameters::setOutputDataFormat ( const SbString dataFormat)

Set the output data format from a format string.


Like the -f command line argument. The format is specified as "u*" for unsigned integer, "s*" for signed integer or "f" for float, where

  • = 8, 16 or 32. Default is no conversion. Returns true if parameter is valid, else returns false.

Note that if the input reader does not support the requested conversion, the output data format will be the same as the input data format (no conversion).

◆ setOutputDataFormat() [2/2]

bool SoConverterParameters::setOutputDataFormat ( const SoDataSet::DataType dataType)

Set the output data format with an SoDataSet::DataType.


Note that if the input reader does not support the requested conversion, the output data format will be the same as the input data format (no conversion) Returns true if parameter is valid, else returns false.

◆ setOutputHeaderOnly()

void SoConverterParameters::setOutputHeaderOnly ( bool  headerOnly)
inline

Set the header only feature.


Like the -h command line argument. If set, the converter will only write the header file. No data will be generated. Default value is Off.

Definition at line 613 of file SoConverterParameters.h.

◆ setRGBAMode()

void SoConverterParameters::setRGBAMode ( const bool  flag)
inline

Set RGBA data mode (output will be unsigned int32 RGBA values).

Definition at line 775 of file SoConverterParameters.h.

◆ setTargetWordFormat()

bool SoConverterParameters::setTargetWordFormat ( int  wordFormat)

Set the target machine word format.


Like the -w command line argument. Default is the current machine word format. wordFormat parameter is 0 for Big Endian, and 1 for Little Endian. Returns true if parameter is valid, else returns false.

◆ setTileDim() [1/2]

void SoConverterParameters::setTileDim ( const int  tileDim)

Set tile dimension.


Like the -t command line argument. The default is 64 and the value must be a power of 2. The same value is used for all dimensions of the tile.

◆ setTileDim() [2/2]

void SoConverterParameters::setTileDim ( const SbVec3i32 tileDim)

Set tile dimension.


The default value is 128,128,128 and all values must a power of 2. This method can be used to set a different value for each tile dimension, for example for a "thin volume" or height field.

◆ setUndefinedValue()

void SoConverterParameters::setUndefinedValue ( double  undefinedValue)
inline

Set the undefined value.


Like the -u command line argument. The given value will be stored in the LDM file. Default is NaN (Not a Number). This is currently used by SoHeightFieldRender (vertices with undefined values are not rendered).

Definition at line 686 of file SoConverterParameters.h.

◆ setVerbose()

void SoConverterParameters::setVerbose ( const bool  isVerbose)
inline

Set verbose mode.

Default value is On.

Definition at line 555 of file SoConverterParameters.h.

◆ setVerticalFlip()

void SoConverterParameters::setVerticalFlip ( bool  flag)
inline

Set the m_bVerticalFlip flag.

Definition at line 872 of file SoConverterParameters.h.

◆ useDefaultCompLvl()

bool SoConverterParameters::useDefaultCompLvl ( ) const
inline

Definition at line 680 of file SoConverterParameters.h.

Member Data Documentation

◆ m_bFromWriter

bool SoConverterParameters::m_bFromWriter
protected

Definition at line 541 of file SoConverterParameters.h.

◆ m_bitsetThreshold

double SoConverterParameters::m_bitsetThreshold
protected

Definition at line 535 of file SoConverterParameters.h.

◆ m_bVerticalFlip

bool SoConverterParameters::m_bVerticalFlip
protected

Flip the output data on Y axis.

Definition at line 538 of file SoConverterParameters.h.

◆ m_compressionLevel

int SoConverterParameters::m_compressionLevel
protected

Definition at line 503 of file SoConverterParameters.h.

◆ m_compressionName

SbString SoConverterParameters::m_compressionName
protected

Definition at line 517 of file SoConverterParameters.h.

◆ m_crcCheck

bool SoConverterParameters::m_crcCheck
protected

Definition at line 496 of file SoConverterParameters.h.

◆ m_dataFileName

SbString SoConverterParameters::m_dataFileName
protected

Definition at line 513 of file SoConverterParameters.h.

◆ m_dataRangeInMax

double SoConverterParameters::m_dataRangeInMax
protected

Definition at line 509 of file SoConverterParameters.h.

◆ m_dataRangeInMin

double SoConverterParameters::m_dataRangeInMin
protected

Definition at line 508 of file SoConverterParameters.h.

◆ m_dataSectionFileName

SbString SoConverterParameters::m_dataSectionFileName
protected

Definition at line 512 of file SoConverterParameters.h.

◆ m_dataTypeOut

SoDataSet::DataType SoConverterParameters::m_dataTypeOut
protected

Definition at line 520 of file SoConverterParameters.h.

◆ m_dataTypeStr

const char* SoConverterParameters::m_dataTypeStr[]
staticprotected

Definition at line 524 of file SoConverterParameters.h.

◆ m_dataTypeXml

const char* SoConverterParameters::m_dataTypeXml[]
staticprotected

Definition at line 525 of file SoConverterParameters.h.

◆ m_defaultValue

double SoConverterParameters::m_defaultValue
protected

Definition at line 498 of file SoConverterParameters.h.

◆ m_doHistogram

bool SoConverterParameters::m_doHistogram
protected

Definition at line 532 of file SoConverterParameters.h.

◆ m_doTileMinMax

bool SoConverterParameters::m_doTileMinMax
protected

Definition at line 534 of file SoConverterParameters.h.

◆ m_doUpdate

bool SoConverterParameters::m_doUpdate
protected

Definition at line 536 of file SoConverterParameters.h.

◆ m_headerFileName

SbString SoConverterParameters::m_headerFileName
protected

Definition at line 511 of file SoConverterParameters.h.

◆ m_headerOnly

bool SoConverterParameters::m_headerOnly
protected

Definition at line 495 of file SoConverterParameters.h.

◆ m_inputDataRangeSpecified

bool SoConverterParameters::m_inputDataRangeSpecified
protected

Definition at line 494 of file SoConverterParameters.h.

◆ m_inputFileName

SbString SoConverterParameters::m_inputFileName
protected

Definition at line 516 of file SoConverterParameters.h.

◆ m_inputVolume

SoDataSet* SoConverterParameters::m_inputVolume
protected

Definition at line 514 of file SoConverterParameters.h.

◆ m_isForEditing

bool SoConverterParameters::m_isForEditing
protected

Definition at line 528 of file SoConverterParameters.h.

◆ m_isRGBAModeDefault

bool SoConverterParameters::m_isRGBAModeDefault
protected

Definition at line 531 of file SoConverterParameters.h.

◆ m_isTileDimDefaultValue

bool SoConverterParameters::m_isTileDimDefaultValue
protected

Definition at line 529 of file SoConverterParameters.h.

◆ m_memSize

int SoConverterParameters::m_memSize
protected

Definition at line 501 of file SoConverterParameters.h.

◆ m_nbArgs

int SoConverterParameters::m_nbArgs
protected

Definition at line 505 of file SoConverterParameters.h.

◆ m_outputDataTypeSpecified

bool SoConverterParameters::m_outputDataTypeSpecified
protected

Definition at line 493 of file SoConverterParameters.h.

◆ m_pondCoeff

int SoConverterParameters::m_pondCoeff
protected

Definition at line 504 of file SoConverterParameters.h.

◆ m_recomputeHistogram

bool SoConverterParameters::m_recomputeHistogram
protected

Definition at line 533 of file SoConverterParameters.h.

◆ m_RGBAMode

bool SoConverterParameters::m_RGBAMode
protected

Definition at line 499 of file SoConverterParameters.h.

◆ m_sampleType

SampleType SoConverterParameters::m_sampleType
protected

Definition at line 519 of file SoConverterParameters.h.

◆ m_savedAsBitSet

bool SoConverterParameters::m_savedAsBitSet
protected

Definition at line 530 of file SoConverterParameters.h.

◆ m_targetWordFormat

int SoConverterParameters::m_targetWordFormat
protected

Definition at line 502 of file SoConverterParameters.h.

◆ m_tileDim

SbVec3i32 SoConverterParameters::m_tileDim
protected

Definition at line 521 of file SoConverterParameters.h.

◆ m_undefValue

double SoConverterParameters::m_undefValue
protected

Definition at line 507 of file SoConverterParameters.h.

◆ m_useDefaultCompLevel

bool SoConverterParameters::m_useDefaultCompLevel
protected

Definition at line 497 of file SoConverterParameters.h.

◆ m_verboseMode

bool SoConverterParameters::m_verboseMode
protected

Definition at line 492 of file SoConverterParameters.h.


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