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

ENH: Deactivating the adaptive mode by default

parent 91e39a51
No related branches found
No related tags found
No related merge requests found
......@@ -70,7 +70,7 @@ void OutputImageParameter::InitializeWriters()
writer->SetFileName( this->GetFileName() ); \
writer->SetInput(caster->GetOutput()); \
writer->WriteGeomFileOn(); \
writer->SetAutomaticAdaptativeStreaming(m_RAMValue); \
writer->SetAutomaticTiledStreaming(m_RAMValue); \
writer->Update(); \
}
......
......@@ -64,7 +64,7 @@ StreamingImageFileWriter<TInputImage>
{
// By default, we use tiled streaming, with automatic tile size
// We don't set any parameter, so the memory size is retrieved from the OTB configuration options
this->SetAutomaticAdaptativeStreaming();
this->SetAutomaticTiledStreaming();
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment