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
b47a8806
Commit
b47a8806
authored
Sep 02, 2016
by
remicres
Browse files
FIX: change warning messages into debug message
parent
21700d38
Changes
1
Hide whitespace changes
Inline
Side-by-side
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