in reply to Re: Perl Image Analysis
in thread Perl Image Analysis
Actually you were right, Image::Magick does have a method to query pixel color:
$image->Get('Pixel[x,y]')It returns a scalar value containing a comma seperated list R,G,B,A. There's also $image->GetPixels(), but I've had some issues getting accurate color readings from it, though that's likely an error on my part.
|
|---|