kornelski / dssim

Image similarity comparison simulating human perception (multiscale SSIM in Rust)
https://kornel.ski/dssim
GNU Affero General Public License v3.0
1.09k stars 70 forks source link

Fix warnings from imgref::Img::buf deprecation #74

Closed bz2 closed 4 years ago

bz2 commented 4 years ago

From imgref 1.4.0 release direct access to the buf field is deprecated in favour of some buf related methods. Update the usage in do_blur() to match the new interface.

Also use caret requirement for imgref to allow minor version updates from the upstream library. You might have good reasons for not having done this, but it seems handy, provided there's a tested minimum version?

kornelski commented 4 years ago

Thanks