Skip to content
Snippets Groups Projects
Commit c44ce40e authored by Julien Michel's avatar Julien Michel
Browse files

ENH: Updating doc and warning to reflect new configuration handling

parent 3e9d3416
Branches
Tags
No related merge requests found
......@@ -64,7 +64,7 @@ public:
*
* If environment variable OTB_MAX_RAM_HINT is defined and could be
* converted to int, return its content as a 64 bits unsigned int.
* Else, returns 0.
* Else, returns default value, which is 128 Mb
*
*/
static RAMValueType GetMaxRAMHint();
......
......@@ -310,7 +310,7 @@ ImageFileWriter<TInputImage>
}
if(sizevalue == 0.)
{
itkWarningMacro("sizemode is auto but sizevalue is 0. Value will be fetched from configuration file if any, or from cmake configuration otherwise.");
itkWarningMacro("sizemode is auto but sizevalue is 0. Value will be fetched from the OTB_MAX_RAM_HINT environment variable if set, or else use the default value");
}
this->SetAutomaticAdaptativeStreaming(sizevalue);
}
......@@ -320,7 +320,7 @@ ImageFileWriter<TInputImage>
{
if(sizevalue == 0.)
{
itkWarningMacro("sizemode is auto but sizevalue is 0. Value will be fetched from configuration file if any, or from cmake configuration otherwise.");
itkWarningMacro("sizemode is auto but sizevalue is 0. Value will be fetched from the OTB_MAX_RAM_HINT environment variable if set, or else use the default value");
}
this->SetAutomaticTiledStreaming(sizevalue);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment