tomato
tomato

Reputation: 1

How to compare the differences between 2 tiff pictures, generate a new tiff picture, and mark the differences

I have two orthophoto maps (tif format) taken on different dates. How can I distinguish the differences on the two maps and mark the different points?

Upvotes: 0

Views: 798

Answers (1)

Xiao Guang
Xiao Guang

Reputation: 353

Try to use GDAL's gdalcompare.py. The gdalcompare.py script compares two GDAL supported datasets and reports the differences. In addition to reporting differences to the standard output the script will also return the difference count in its exit value.

Here is a similar question

Upvotes: 1

Related Questions