ITK
4.1.0
Insight Segmentation and Registration Toolkit
|
00001 /*========================================================================= 00002 * 00003 * Copyright Insight Software Consortium 00004 * 00005 * Licensed under the Apache License, Version 2.0 (the "License"); 00006 * you may not use this file except in compliance with the License. 00007 * You may obtain a copy of the License at 00008 * 00009 * http://www.apache.org/licenses/LICENSE-2.0.txt 00010 * 00011 * Unless required by applicable law or agreed to in writing, software 00012 * distributed under the License is distributed on an "AS IS" BASIS, 00013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00014 * See the License for the specific language governing permissions and 00015 * limitations under the License. 00016 * 00017 *=========================================================================*/ 00018 00019 #ifndef __itkMomentsThresholdCalculator_h 00020 #define __itkMomentsThresholdCalculator_h 00021 00022 #include "itkHistogramThresholdCalculator.h" 00023 00024 namespace itk 00025 { 00026 00047 template <class THistogram, class TOutput=double> 00048 class ITK_EXPORT MomentsThresholdCalculator : public HistogramThresholdCalculator<THistogram, TOutput> 00049 { 00050 public: 00052 typedef MomentsThresholdCalculator Self; 00053 typedef Object Superclass; 00054 typedef SmartPointer<Self> Pointer; 00055 typedef SmartPointer<const Self> ConstPointer; 00056 00058 itkNewMacro(Self); 00059 00061 itkTypeMacro(MomentsThresholdCalculator, Object); 00062 00064 typedef THistogram HistogramType; 00065 typedef TOutput OutputType; 00066 00067 protected: 00068 MomentsThresholdCalculator() {}; 00069 virtual ~MomentsThresholdCalculator() {}; 00070 void GenerateData(void); 00071 00072 private: 00073 MomentsThresholdCalculator(const Self&); //purposely not implemented 00074 void operator=(const Self&); //purposely not implemented 00075 00076 }; 00077 00078 } // end namespace itk 00079 00080 00081 #ifndef ITK_MANUAL_INSTANTIATION 00082 #include "itkMomentsThresholdCalculator.hxx" 00083 #endif 00084 00085 #endif 00086