%
*/
MagickExport MagickBooleanType CLAHEImage(Image *image,const size_t width,
- const size_t height,const size_t bias,const size_t sans,
+ const size_t height,const size_t bias,const double sans,
ExceptionInfo *exception)
{
#define CLAHEImageTag "CLAHE/Image"
/*
Copyright 1999-2018 ImageMagick Studio LLC, a non-profit organization
dedicated to making software imaging solutions freely available.
-
+
You may not use this file except in compliance with the License.
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
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.
AutoGammaImage(Image *,ExceptionInfo *),
AutoLevelImage(Image *,ExceptionInfo *),
BrightnessContrastImage(Image *,const double,const double,ExceptionInfo *),
- CLAHEImage(Image *,const size_t,const size_t,const size_t,const size_t,
+ CLAHEImage(Image *,const size_t,const size_t,const size_t,const double,
ExceptionInfo *),
ClutImage(Image *,const Image *,const PixelInterpolateMethod,ExceptionInfo *),
ColorDecisionListImage(Image *,const char *,ExceptionInfo *),
(void) SyncImageSettings(mogrify_info,*image,exception);
flags=ParseGeometry(argv[i+1],&geometry_info);
(void) CLAHEImage(*image,(size_t) geometry_info.rho,(size_t)
- geometry_info.sigma,(size_t) geometry_info.xi,(size_t)
+ geometry_info.sigma,(size_t) geometry_info.xi,(double)
geometry_info.psi,exception);
break;
}
if (attribute_flag[4] != 0)
geometry_info.psi=argument_list[4].real_reference;
(void) CLAHEImage(image,(size_t) geometry_info.rho,(size_t)
- (size_t) geometry_info.sigma,geometry_info.xi,(size_t)
+ (size_t) geometry_info.sigma,geometry_info.xi,(double)
geometry_info.psi,exception);
break;
}
if (attribute_flag[4] != 0)
geometry_info.psi=argument_list[4].real_reference;;
(void) CLAHEImage(image,(size_t) geometry_info.rho,(size_t)
- (size_t) geometry_info.sigma,geometry_info.xi,(size_t)
+ (size_t) geometry_info.sigma,geometry_info.xi,(double)
geometry_info.psi,exception);
break;
}