Posted: Sat Mar 25, 2006 3:46 pm Post subject: BITMAPS
Some code i wrote that reads 24 and 8 bit bitmaps and writes too 24 bit bitmaps. It seems to work with all the bmp files i've used. I even added some effects like merge and saturation,contrast,brigtness. I currently working on Bluring and Sharpening. I'll include that as soon as posible.
BITMAPS.zip
Description:
The files a little large cause it includes test files!
Posted: Sun Mar 26, 2006 10:28 am Post subject: (No subject)
I'm liking this so far. Especially your 24-bit fcns.
As for blurring - the simplest routines are quite intuitive. Average out the RGB values for a matrix within your array (often the 8 elements around a central one) and you'll get a good blur.
Of course Turing is abominally slow, but hey, that's not the point here. Check out my old Lens Filter and PicMerge for examples of procedures done directly on the pics (i.e., not as powerful as your own routines).
Good work, now just make those parameters a little more intuitive!
+ bits
DIIST
Posted: Sun Mar 26, 2006 10:42 am Post subject: (No subject)
Thanks. I tried your method for bluring. It seems to work quite well.