views:

289

answers:

3

I want to perform the following artistic effect with my MFC app. Can anyone tell me, how to perform it ?

Input Image : alt text

Output Image : alt text

Waiting for the reply... Thanks in advance...

A: 

As far as I know, MFC doesn't include image processing functions (except some basic GDI functions). So you will need to use an image processing library, or implement everything on your own.

oefe
Basically I have to implement it on my own.Do you have any idea on how to proceed on it?
vineet
A: 

see CXImage from CodeProject link text

SAMills
A: 

How did you do the artistic effect?

Its probably just some form of convolution applied to the image. If so this post may help:

http://stackoverflow.com/questions/1696113/how-do-i-gaussian-blur-an-image-without-using-any-in-built-gaussian-functions

All you need to do is modify that filter matrix I supply and you'll get all sort of novel effects ...

Goz