/*========================================================================= * * 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 itkNeighborhoodInnerProduct_hxx #define itkNeighborhoodInnerProduct_hxx #include "itkNumericTraits.h" namespace itk { template auto NeighborhoodInnerProduct::Compute(const ConstNeighborhoodIterator & it, const OperatorType & op, const unsigned int start, const unsigned int stride) -> OutputPixelType { using InputPixelType = typename TImage::PixelType; using InputPixelRealType = typename NumericTraits::RealType; using AccumulateRealType = typename NumericTraits::AccumulateType; using OutputPixelValueType = typename NumericTraits::ValueType; const typename OperatorType::ConstIterator op_end = op.End(); typename OperatorType::ConstIterator o_it = op.Begin(); AccumulateRealType sum{}; for (unsigned int i = start; o_it < op_end; i += stride, ++o_it) { sum += static_cast(static_cast(*o_it) * static_cast(it.GetPixel(i))); } return static_cast(sum); } template auto NeighborhoodInnerProduct::Compute( /* const ImageBoundaryCondition *,*/ const NeighborhoodType & N, const OperatorType & op, const unsigned int start, const unsigned int stride) -> OutputPixelType { typename OperatorType::ConstIterator o_it; using InputPixelType = typename TImage::PixelType; using InputPixelRealType = typename NumericTraits::RealType; using AccumulateRealType = typename NumericTraits::AccumulateType; AccumulateRealType sum{}; using OutputPixelValueType = typename NumericTraits::ValueType; o_it = op.Begin(); const typename OperatorType::ConstIterator op_end = op.End(); for (unsigned int i = start; o_it < op_end; i += stride, ++o_it) { sum += static_cast(static_cast(*o_it) * static_cast(N[i])); } return static_cast(sum); } } // end namespace itk #endif