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 __itkHuangThresholdCalculator_h 00020 #define __itkHuangThresholdCalculator_h 00021 00022 #include "itkHistogramThresholdCalculator.h" 00023 00024 namespace itk 00025 { 00026 00051 template <class THistogram, class TOutput=double> 00052 class ITK_EXPORT HuangThresholdCalculator : public HistogramThresholdCalculator<THistogram, TOutput> 00053 { 00054 public: 00056 typedef HuangThresholdCalculator Self; 00057 typedef Object Superclass; 00058 typedef SmartPointer<Self> Pointer; 00059 typedef SmartPointer<const Self> ConstPointer; 00060 00062 itkNewMacro(Self); 00063 00065 itkTypeMacro(HuangThresholdCalculator, Object); 00066 00068 typedef THistogram HistogramType; 00069 typedef TOutput OutputType; 00070 00071 protected: 00072 HuangThresholdCalculator() { m_FirstBin = 0; m_LastBin = 0; m_Size = 0; } 00073 virtual ~HuangThresholdCalculator() {} 00074 void GenerateData(void); 00075 00076 typedef typename HistogramType::TotalAbsoluteFrequencyType TotalAbsoluteFrequencyType; 00077 typedef typename HistogramType::AbsoluteFrequencyType AbsoluteFrequencyType; 00078 typedef typename HistogramType::InstanceIdentifier InstanceIdentifier; 00079 typedef typename HistogramType::SizeValueType SizeValueType; 00080 typedef typename HistogramType::MeasurementType MeasurementType; 00081 00082 private: 00083 HuangThresholdCalculator(const Self&); //purposely not implemented 00084 void operator=(const Self&); //purposely not implemented 00085 00086 InstanceIdentifier m_FirstBin; 00087 InstanceIdentifier m_LastBin; 00088 SizeValueType m_Size; 00089 00090 }; 00091 00092 } // end namespace itk 00093 00094 00095 #ifndef ITK_MANUAL_INSTANTIATION 00096 #include "itkHuangThresholdCalculator.hxx" 00097 #endif 00098 00099 #endif 00100