Hi ,
I want to compare two different size images (eg. img1, img2) and get a resultant image that
highlights the differences in img2. Please help me.
Thanks..
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Maen BadwanPosted Sep 12, 2019, 8:26 AM
For example, you can combine the pixels of the two images with the operation Xor, which will zero-out all pixels in the target image that are identical to their counterparts in the source image. Another way is to compare the images intensities.
https://www.leadtools.com/help/leadtools/v20/dh/l/imageprocessing-combinefastcommand.html
https://www.leadtools.com/help/leadtools/v20/dh/pe/combinecommand.html
Sonu GuptaPosted Sep 8, 2019, 11:44 PM
Atir TahirPosted Sep 8, 2019, 3:08 PM
Sanjay KumarPosted Jan 9, 2014, 4:36 AM
http://blogs.msdn.com/b/domgreen/archive/2009/09/06/comparing-two-images-in-c.aspx
Dhirendra MisraPosted Jan 9, 2014, 4:30 AM
http://www.c-sharpcorner.com/uploadfile/prathore/image-comparison-using-C-Sharp/
http://www.dotnetspider.com/resources/19811-Image-Compare-C.aspx
Jaganathan BantheswaranPosted Jan 9, 2014, 4:22 AM
Here is the nice C# example which you can even improve.