ITK  4.1.0
Insight Segmentation and Registration Toolkit
itkOtsuThresholdCalculator.h
Go to the documentation of this file.
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 __itkOtsuThresholdCalculator_h
00020 #define __itkOtsuThresholdCalculator_h
00021 
00022 #include "itkHistogramThresholdCalculator.h"
00023 
00024 namespace itk
00025 {
00026 
00042 template <class THistogram, class TOutput=double>
00043 class ITK_EXPORT OtsuThresholdCalculator : public HistogramThresholdCalculator<THistogram, TOutput>
00044 {
00045 public:
00047   typedef OtsuThresholdCalculator         Self;
00048   typedef Object                          Superclass;
00049   typedef SmartPointer<Self>              Pointer;
00050   typedef SmartPointer<const Self>        ConstPointer;
00051 
00053   itkNewMacro(Self);
00054 
00056   itkTypeMacro(OtsuThresholdCalculator, Object);
00057 
00059   typedef THistogram  HistogramType;
00060   typedef TOutput     OutputType;
00061 
00063   void Compute()
00064   {
00065     this->Update();
00066   }
00067 
00068 protected:
00069   OtsuThresholdCalculator() {};
00070   virtual ~OtsuThresholdCalculator() {};
00071   void GenerateData(void);
00072 
00073 private:
00074   OtsuThresholdCalculator(const Self&); //purposely not implemented
00075   void operator=(const Self&); //purposely not implemented
00076 
00077 };
00078 
00079 } // end namespace itk
00080 
00081 
00082 #ifndef ITK_MANUAL_INSTANTIATION
00083 #include "itkOtsuThresholdCalculator.hxx"
00084 #endif
00085 
00086 #endif
00087