Reputation: 1
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
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.
Upvotes: 1