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

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

No related merge requests found
Showing with 3 additions and 3 deletions
+3 -3
......@@ -470,11 +470,11 @@ std::vector<std::string> Controller<TSegmenter>::GetTemporaryFilesList()
}
template<class TSegmenter>
void Controller<TSegmenter>::SetResumingMode(unsigned int rX, unsigned int rY)
void Controller<TSegmenter>::SetResumingMode(unsigned int rRow, unsigned int rCol)
{
m_Resuming = true;
m_ResumeTileX = rx;
m_ResumeTileY = ry;
m_ResumeTileRow = rRow;
m_ResumeTileCol = rCol;
}
} // end of namespace lsgrm
......
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