Page 1 of 1

color dropout

Posted: Tue Jul 05, 2011 9:01 pm
by ltdeta
Does VintaSoftImaging has this function

this means:
The removal of a specific color from a scanned image. Typically used for preprinted forms, so that the form itself does not appear in the scanned image, leaving only the information filled in by the user. This increases OCR effectiveness, and decreases data storage and bandwidth requirements.

Re: color dropout

Posted: Wed Jul 06, 2011 9:33 am
by Alex
Hello,

You can use the Vintasoft.Imaging.ImageProcessing.Color.ColorBlendCommand if you want to dropout the color from the image.

Here is an example how to dropout red color from the image:

Code: Select all

ColorBlendCommand command = new ColorBlendCommand(BlendingMode.Darken, Color.FromArgb(0, 255, 255));
command.ExecuteInPlace(image);
Best regards, Alexander

Re: color dropout

Posted: Wed Jul 06, 2011 10:13 am
by ltdeta
Thank you for the answer.

i use the demo version and do this
Image

but know i would change red with white color

this is the original picture
Image