Commit abf96caa authored by remicres's avatar remicres
Browse files

FIX: correct pixel memory footprint

Showing with 5 additions and 5 deletions
+5 -5
...@@ -236,17 +236,17 @@ unsigned int Controller<TSegmenter>::GetNodeMemory() ...@@ -236,17 +236,17 @@ unsigned int Controller<TSegmenter>::GetNodeMemory()
// Get the memory occupied by the graph, normalize it by n*n // Get the memory occupied by the graph, normalize it by n*n
unsigned int memory = segmenter.GetGraphMemory() / (n*n); unsigned int memory = segmenter.GetGraphMemory() / (n*n);
itkDebugMacro(<<"Size of a node is " << memory); itkWarningMacro(<<"Size of a node is " << memory);
// Get the memory occupied by one pixel of the image // Get the memory occupied by one pixel of the image
unsigned int pixelMemory = sizeof(typename ImageType::PixelType) unsigned int pixelMemory = sizeof(m_InputImage->GetBufferPointer())
+ sizeof(typename ImageType::InternalPixelType) * m_InputImage->GetNumberOfComponentsPerPixel(); * m_InputImage->GetNumberOfComponentsPerPixel();
itkDebugMacro(<<"Size of an image pixel is " << pixelMemory); itkWarningMacro(<<"Size of an image pixel is " << pixelMemory);
memory += pixelMemory; memory += pixelMemory;
itkDebugMacro(<<"Size of a node+pixel is " << memory); itkWarningMacro(<<"Size of a node+pixel is " << memory);
return memory; return memory;
} }
......
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