Click here to Skip to main content
15,889,877 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
I'm doing an invisible watermarking project in C#. On that project, we have to detect what kind of tamper(crop,blur) happen in our watermarked image.(In that case we have watermarked image and watermark image)

For example, insert a watermarked image(It has been blurred) as input,our system have to detect what kind of tamper happen in that image!

Please any one suggest a method for how to accomplish this.!

Thanks in Advance!
Posted
Comments
BillWoodruff 28-Nov-15 10:07am    
What research have you done so far ?
PIEBALDconsult 28-Nov-15 10:59am    
Sounds impossible to me.

1 solution

I think you should start with writing down each case of tampering in a list.
Then you need to figure out a method/algorithm to detect each case.
You might find it is impossible or very costly (time) to solve one or more of the cases.

Example:
1. Cropping
Compare size.

2. Blurring
Compare contrast. (maybe)

3. Healing Brush
Parts of image altered.

After that you can start to implement each method one by one.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900