Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Cresson Remi
LSGRM
Commits
68eaa698
Commit
68eaa698
authored
Dec 11, 2018
by
Gaetano Raffaele
Browse files
Working on the resume option to resume segmentation after fail or abort.
parent
0c9425d9
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/lsgrmController.txx
View file @
68eaa698
...
...
@@ -92,8 +92,10 @@ void Controller<TSegmenter>::RunSegmentation()
// Run first partial segmentation
boost::timer t; t.restart();
auto accumulatedMemory = 0;
if (!m_Resuming) {
auto
accumulatedMemory = RunFirstPartialSegmentation<TSegmenter>(
accumulatedMemory = RunFirstPartialSegmentation<TSegmenter>(
m_InputImage,
m_SpecificParameters,
m_Threshold,
...
...
@@ -107,7 +109,7 @@ void Controller<TSegmenter>::RunSegmentation()
isFusion);
} else {
// temp. patch, maybe calculate real current memory after resuming graphs.
auto
accumulatedMemory = 2 * m_Memory;
accumulatedMemory = 2 * m_Memory;
}
#ifdef OTB_USE_MPI
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment