Possible Duplicate:
How can I check out the picture quality in program using c#?

Can I check whether noise is added to a photograph using c#?

link|improve this question

33% accept rate
2  
Noise specifically? or tampering? – tzenes Apr 2 '10 at 2:27
Without access to the original photo? Are you looking to detect specific algorithmic patterns of artificially created noise? Or are you just looking to detect noise in an image? – Development 4.0 Apr 2 '10 at 3:47
By having the original image identify whether noise is added.If noise added is very low can approve to print.That what I want. – Dinu Apr 2 '10 at 10:58
feedback

closed as exact duplicate by Jeff Atwood Jun 5 '10 at 11:57

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

Basically, to detect noise what I think you are going to want to do is find pixels that are discontinuous (in color or brightness) from other pixels.

In any given photograph, a valid pixel is highly likely to be correlated (similar) in color or intensity to one or more pixels around it. Noise is not the same (or similar) color as any other pixel around it; it is discontinuous from all surrounding pixels.

If a pixel is similar or identical in color to surrounding pixels, it is probably not noise, and it's not going to look like noise; it's going to look like part of the picture..

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.