enhanceimage(); } } if ( $_GET[option] == "Equalize" ) { foreach ($image as $frame) { $frame->equalizeimage(); } } $format = strtolower( $image->getimageformat() ); $path = "temp/$ID.$_SESSION[views].$format"; $frames = $image->getNumberImages(); if ( $frames > 1) { $image->writeImages("$path", TRUE); } else { $image->writeImage("$path"); } $_SESSION[path] = $path; header("location:display.php"); exit; } include("top.php"); ?>
Enhance
Applies a digital filter that improves the quality of a noisy image.
Example
Equalize
Equalizes the image histogram.
Example