We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Noticed this while developing new features for TiffImages.jl
TiffImages.jl
It seems more likely that the images should be identical
$ convert -seed 3 -size 4023x3007 xc: +noise Random -define tiff:tile-geometry=256x256 'tiled.tif' $ convert -seed 3 -size 4023x3007 xc: +noise Random 'non_tiled.tif'
julia> TiffImages.load("tiled.tif") == TiffImages.load("non_tiled.tif") true julia> Images.load("tiled.tif") == Images.load("non_tiled.tif") false julia> tiled = Images.load("tiled.tif"); julia> nontiled = Images.load("non_tiled.tif"); julia> max_discrepency = maximum(abs.(float.(red.(tiled)) .- float.(red.(nontiled)))) 0.0019531846f0 julia> rationalize(max_discrepency) 64//32767
The text was updated successfully, but these errors were encountered:
If we load this via ImageMagick.jl are the files equivalent then?
Sorry, something went wrong.
No branches or pull requests
Noticed this while developing new features for
TiffImages.jl
It seems more likely that the images should be identical
The text was updated successfully, but these errors were encountered: