Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Cresson Remi
LSGRM
Commits
b47a8806
Commit
b47a8806
authored
Sep 02, 2016
by
remicres
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
FIX: change warning messages into debug message
parent
21700d38
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
include/lsgrmController.txx
include/lsgrmController.txx
+3
-3
No files found.
include/lsgrmController.txx
View file @
b47a8806
...
...
@@ -237,17 +237,17 @@ unsigned int Controller<TSegmenter>::GetNodeMemory()
// Get the memory occupied by the graph, normalize it by n*n
unsigned int memory = segmenter.GetGraphMemory() / (n*n);
itk
Warnin
gMacro(<<"Size of a node is " << memory);
itk
Debu
gMacro(<<"Size of a node is " << memory);
// Get the memory occupied by one pixel of the image
unsigned int pixelMemory = sizeof(m_InputImage->GetBufferPointer())
* m_InputImage->GetNumberOfComponentsPerPixel();
itk
Warnin
gMacro(<<"Size of an image pixel is " << pixelMemory);
itk
Debu
gMacro(<<"Size of an image pixel is " << pixelMemory);
memory += pixelMemory;
itk
Warnin
gMacro(<<"Size of a node+pixel is " << memory);
itk
Debu
gMacro(<<"Size of a node+pixel is " << memory);
return memory;
}
...
...
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