Commit 0c9425d9 authored by Gaetano Raffaele's avatar Gaetano Raffaele
Browse files

Working on the resume option to resume segmentation after fail or abort.

Showing with 6 additions and 1 deletion
+6 -1
......@@ -92,7 +92,8 @@ void Controller<TSegmenter>::RunSegmentation()
// Run first partial segmentation
boost::timer t; t.restart();
auto accumulatedMemory = RunFirstPartialSegmentation<TSegmenter>(
if (!m_Resuming) {
auto accumulatedMemory = RunFirstPartialSegmentation<TSegmenter>(
m_InputImage,
m_SpecificParameters,
m_Threshold,
......@@ -104,6 +105,10 @@ void Controller<TSegmenter>::RunSegmentation()
m_TileWidth,
m_TileHeight,
isFusion);
} else {
// temp. patch, maybe calculate real current memory after resuming graphs.
auto accumulatedMemory = 2 * m_Memory;
}
#ifdef OTB_USE_MPI
GatherUsefulVariables(accumulatedMemory, isFusion);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment