





HertzRST wrote:Where could i get a software to compare visually two pictures and show me the differences between them from?
for(i=0; i<image1.height; i++){
for(j=0; j<image1.width; j++){
if(image1.pixel[i,j] <> image2.pixel[i,j]){
dosomethink();
}
}
}
tio wrote:HertzRST wrote:Where could i get a software to compare visually two pictures and show me the differences between them from?
you can make it yourself, for example
- Code: Select all
for(i=0; i<image1.height; i++){
for(j=0; j<image1.width; j++){
if(image1.pixel[i,j] <> image2.pixel[i,j]){
dosomethink();
}
}
}


Users browsing this forum: No registered users and 0 guests