Image Gurus - How to sharpen this image?

Soldato
Joined
5 Mar 2003
Posts
10,771
Location
Nottingham
Hi,
I've got the image below but I need to make the back as black as possible and the characters as white and clear as possible (or vice versa). Now I need to know what things I need to do (i.e. colour adjustments like hue / brightness / contrast) to achieve this. I have paint.net to mess around with settings, but ultimately this will be done programtically (so I won't have super advanced options available in photo shop).

historyym1.png


All feedback welcome :)
 
The result will be badly aliased if you do that.

You could think about trying to implement some kind of curves evaluation, a la Photoshop. Shouldn't be too difficult.
 
Increase brightness a bit and then increase the contrast a lot.
 
Last edited:
Very easy in photoshop, keeps it nice and crisp, but not sure if you have the same capabilities in paint.net

Just went to hue/saturation and increased the brightness of all yellows and reds to full and darkened everything else.

numberszx5.jpg


Assuming that's what you needed.
 
Thanks for the help all. Ice_Globe that is spot on! I'll have a look into the .Net framework and see if I can adjust colour specific brightness!
 
Read each pixels value and set it to 000000 or FFFFFF dependant on a threshold value?

Simon

no, that's the way to go programatically.

do that as the first pass, then your choice of 2nd pass filter.
(antialias/gausian/marching cubes etc)

the clever thing would be for the program to work out what threshold value to use for itself.
 
Back
Top Bottom