Given that you want the best image for OCR, what I recommend is that you just convert the image to black & white before doing the OCR.
The method I would use for this conversion is to first convert each RGB pixel to grayscale, using this formula:
P = 0.2989 * R + 0.5870 * G + 0.1140 * B
Then, as a first try, make the pixel in the processed image white if P >= 128 or black otherwise.
Based on experimentation you may find that separating black and white pixels at the middle of the gray scale is not the best, so you can change it. For example, if your B&W image turns out too noisy, you may want to send less pixels to white by raising the threshold (i.e. try P>=160 instead of P>=128). Conversely, if the B&W picture lost a lot of detail you may need to lower the threshold and let more pixels go to white.
I hope this helps.