1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
|
/*=========================================================================
*
* 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 itkAdaptiveHistogramEqualizationImageFilter_h
#define itkAdaptiveHistogramEqualizationImageFilter_h
#include "itkMovingHistogramImageFilter.h"
#include "itkAdaptiveEqualizationHistogram.h"
#include "itkImage.h"
namespace itk
{
/**
* \class AdaptiveHistogramEqualizationImageFilter
* \brief Power Law Adaptive Histogram Equalization
*
* Histogram equalization modifies the contrast in an image. The
* AdaptiveHistogramEqualizationImageFilter is a superset of many
* contrast enhancing filters. By modifying its parameters (alpha,
* beta, and window), the AdaptiveHistogramEqualizationImageFilter can
* produce an adaptively equalized histogram or a version of unsharp
* mask (local mean subtraction). Instead of applying a strict
* histogram equalization in a window about a pixel, this filter
* prescribes a mapping function (power law) controlled by the
* parameters alpha and beta.
*
* The parameter alpha controls how much the filter acts like the
* classical histogram equalization method (alpha=0) to how
* much the filter acts like an unsharp mask (alpha=1).
*
* The parameter beta controls how much the filter acts like an
* unsharp mask (beta=0) to much the filter acts like pass through
* (beta=1, with alpha=1).
*
* The parameter window controls the size of the region over which
* local statistics are calculated. The size of the window is controlled
* by SetRadius -- the default Radius is 5 in all directions.
*
* By altering alpha, beta and window, a host of equalization and unsharp
* masking filters is available.
*
* The boundary condition ignores the part of the neighborhood
* outside the image, and over-weights the valid part of the
* neighborhood.
*
* For detail description, reference "Adaptive Image Contrast
* Enhancement using Generalizations of Histogram Equalization."
* J.Alex Stark. IEEE Transactions on Image Processing, May 2000.
*
* \ingroup ImageEnhancement
* \ingroup ITKImageStatistics
*
* \sphinx
* \sphinxexample{Filtering/ImageStatistics/AdaptiveHistogramEqualizationImageFilter,Adaptive Histogram Equalization
* Image Filter} \endsphinx
*/
template <typename TImageType, typename TKernel = Neighborhood<bool, TImageType::ImageDimension>>
class ITK_TEMPLATE_EXPORT AdaptiveHistogramEqualizationImageFilter
: public MovingHistogramImageFilter<
TImageType,
TImageType,
TKernel,
typename Function::AdaptiveEqualizationHistogram<typename TImageType::PixelType, typename TImageType::PixelType>>
{
public:
ITK_DISALLOW_COPY_AND_MOVE(AdaptiveHistogramEqualizationImageFilter);
/**
* Standard class type aliases
*/
using Self = AdaptiveHistogramEqualizationImageFilter;
using Superclass = MovingHistogramImageFilter<
TImageType,
TImageType,
TKernel,
typename Function::AdaptiveEqualizationHistogram<typename TImageType::PixelType, typename TImageType::PixelType>>;
using Pointer = SmartPointer<Self>;
using ConstPointer = SmartPointer<const Self>;
static constexpr unsigned int ImageDimension = TImageType::ImageDimension;
/** Method for creation through the object factory. */
itkNewMacro(Self);
/** \see LightObject::GetNameOfClass() */
itkOverrideGetNameOfClassMacro(AdaptiveHistogramEqualizationImageFilter);
/** Image type alias support */
using ImageType = TImageType;
using InputPixelType = typename ImageType::PixelType;
using ImageSizeType = typename ImageType::SizeType;
/** Set/Get the value of alpha. Alpha = 0 produces the adaptive
* histogram equalization (provided beta=0). Alpha = 1 produces an
* unsharp mask. Default is 0.3. */
itkSetMacro(Alpha, float);
itkGetConstMacro(Alpha, float);
/** Set/Get the value of beta. If beta = 1 (and alpha = 1),
* then the output image matches the input image. As beta
* approaches 0, the filter behaves as an unsharp mask. Default is
* 0.3. */
itkSetMacro(Beta, float);
itkGetConstMacro(Beta, float);
#if !defined(ITK_FUTURE_LEGACY_REMOVE)
/** Set/Get whether an optimized lookup table for the intensity
* mapping function is used. Default is off.
* \deprecated
*/
virtual void
SetUseLookupTable(const bool _arg)
{
itkDebugMacro("setting UseLookupTable to " << _arg);
itkGenericLegacyReplaceBodyMacro("UseLookupTable", "", "nothing");
if (this->m_UseLookupTable != _arg)
{
this->m_UseLookupTable = _arg;
this->Modified();
}
}
itkGetConstMacro(UseLookupTable, bool);
itkBooleanMacro(UseLookupTable);
#endif
void
ConfigureHistogram(typename Superclass::HistogramType & h) override
{
h.SetAlpha(this->m_Alpha);
h.SetBeta(this->m_Beta);
h.SetMinimum(this->m_InputMinimum);
h.SetMaximum(this->m_InputMaximum);
typename Superclass::HistogramType::RealType kernelSize = 1;
for (unsigned int i = 0; i < ImageDimension; ++i)
{
kernelSize *= (2 * this->GetRadius()[i] + 1);
}
h.SetKernelSize(kernelSize);
}
protected:
AdaptiveHistogramEqualizationImageFilter()
{
m_Alpha = .3;
m_Beta = .3;
this->SetRadius(5);
m_InputMinimum = NumericTraits<InputPixelType>::min();
m_InputMaximum = NumericTraits<InputPixelType>::max();
m_UseLookupTable = false;
}
~AdaptiveHistogramEqualizationImageFilter() override = default;
void
PrintSelf(std::ostream & os, Indent indent) const override;
/**
* Standard pipeline method
*/
void
BeforeThreadedGenerateData() override;
private:
float m_Alpha{};
float m_Beta{};
InputPixelType m_InputMinimum{};
InputPixelType m_InputMaximum{};
bool m_UseLookupTable{};
};
} // end namespace itk
#ifndef ITK_MANUAL_INSTANTIATION
# include "itkAdaptiveHistogramEqualizationImageFilter.hxx"
#endif
#endif
|