/*========================================================================= * * Copyright NumFOCUS * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0.txt * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * *=========================================================================*/ #ifndef itkPointSetToListSampleAdaptor_hxx #define itkPointSetToListSampleAdaptor_hxx namespace itk { namespace Statistics { template PointSetToListSampleAdaptor::PointSetToListSampleAdaptor() { this->m_PointSet = nullptr; this->SetMeasurementVectorSize(TPointSet::PointDimension); } template void PointSetToListSampleAdaptor::PrintSelf(std::ostream & os, Indent indent) const { Superclass::PrintSelf(os, indent); os << indent << "PointSet: "; if (m_PointSet.IsNotNull()) { os << m_PointSet << std::endl; } else { os << "not set." << std::endl; } } template void PointSetToListSampleAdaptor::SetPointSet(const TPointSet * pointSet) { m_PointSet = pointSet; m_PointsContainer = pointSet->GetPoints(); this->Modified(); } template const TPointSet * PointSetToListSampleAdaptor::GetPointSet() { if (m_PointSet.IsNull()) { itkExceptionMacro("Point set has not been set yet"); } return m_PointSet.GetPointer(); } /** returns the number of measurement vectors in this container*/ template auto PointSetToListSampleAdaptor::Size() const -> InstanceIdentifier { if (m_PointSet.IsNull()) { itkExceptionMacro("Point set has not been set yet"); } return m_PointsContainer->Size(); } template inline const typename PointSetToListSampleAdaptor::MeasurementVectorType & PointSetToListSampleAdaptor::GetMeasurementVector(InstanceIdentifier identifier) const { if (m_PointSet.IsNull()) { itkExceptionMacro("Point set has not been set yet"); } m_PointSet->GetPoint(identifier, &m_TempPoint); return (MeasurementVectorType &)m_TempPoint; } template inline auto PointSetToListSampleAdaptor::GetFrequency(InstanceIdentifier) const -> AbsoluteFrequencyType { if (m_PointSet.IsNull()) { itkExceptionMacro("Point set has not been set yet"); } return 1; } template auto PointSetToListSampleAdaptor::GetTotalFrequency() const -> TotalAbsoluteFrequencyType { if (m_PointSet.IsNull()) { itkExceptionMacro("Point set has not been set yet"); } return this->Size(); } } // end of namespace Statistics } // end of namespace itk #endif