📄 itkdensefrequencycontainer.cxx
字号:
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkDenseFrequencyContainer.cxx,v $
Language: C++
Date: $Date: 2006-01-13 16:52:14 $
Version: $Revision: 1.3 $
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#include "itkDenseFrequencyContainer.h"
namespace itk{
namespace Statistics{
DenseFrequencyContainer
::DenseFrequencyContainer()
{
m_FrequencyContainer = FrequencyContainerType::New() ;
m_TotalFrequency = NumericTraits< TotalFrequencyType >::Zero ;
}
void
DenseFrequencyContainer
::Initialize(unsigned long length)
{
m_FrequencyContainer->Reserve(length) ;
this->SetToZero();
}
void
DenseFrequencyContainer
::SetToZero()
{
m_FrequencyContainer->Fill( NumericTraits< FrequencyType >::Zero );
m_TotalFrequency = NumericTraits< TotalFrequencyType >::Zero ;
}
bool
DenseFrequencyContainer
::SetFrequency(const InstanceIdentifier id, const FrequencyType value)
{
if( id >= m_FrequencyContainer->Size() )
{
return false;
}
FrequencyType frequency = this->GetFrequency(id) ;
(*m_FrequencyContainer)[id] = value ;
m_TotalFrequency += (value - frequency) ;
return true;
}
DenseFrequencyContainer::FrequencyType
DenseFrequencyContainer
::GetFrequency(const InstanceIdentifier id) const
{
if( id >= m_FrequencyContainer->Size() )
{
return NumericTraits< FrequencyType >::Zero;
}
return (*m_FrequencyContainer)[id];
}
bool
DenseFrequencyContainer
::IncreaseFrequency(const InstanceIdentifier id, const FrequencyType value)
{
if( id >= m_FrequencyContainer->Size() )
{
return false;
}
FrequencyType frequency = this->GetFrequency(id) ;
(*m_FrequencyContainer)[id] = frequency + value ;
m_TotalFrequency += value ;
return true;
}
void
DenseFrequencyContainer
::PrintSelf(std::ostream& os, Indent indent) const
{
Superclass::PrintSelf(os,indent);
}
} // end of namespace Statistics
} // end of namespace itk
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -