Lines Matching full:epsilon
1469 % PerceptibleImage() set each pixel whose value is less than |epsilon| to
1470 % epsilon or -epsilon (whichever is closer) otherwise the pixel value remains
1475 % MagickBooleanType PerceptibleImage(Image *image,const double epsilon,
1482 % o epsilon: the epsilon threshold (e.g. 1.0e-9).
1489 const double epsilon)
1495 if ((sign*quantum) >= epsilon)
1497 return((Quantum) (sign*epsilon));
1501 const double epsilon,ExceptionInfo *exception)
1533 epsilon);
1535 epsilon);
1537 epsilon);
1539 epsilon);
1586 q[i]=PerceptibleThreshold(q[i],epsilon);