I am trying to contrast correct a greyscale image to get some details to appear a little sharper. Currently I create my wand and give it the following command:
Code: Select all
MagickContrastStretchImage(image_wand, 0.8, 0.9);
Code: Select all
MagickGetImageChannelRange(image_wand, GrayChannel,&min, &max);
My question is am I using the function correctly? I am having a hard time getting values to give my any change at all, so any advice would be appreciated.