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
Using image.jl imread to load 16 bit images works as long as it's not displayed:
This works fine: imread(filename);
imread(filename);
But this causes an error: imread(filename)
imread(filename)
`map` has no method matching map(::BitShift{Gray{UfixedBase{Uint8,8}},8}, ::Gray{UfixedBase{Uint16,16}})
The text was updated successfully, but these errors were encountered:
Fix coming; held up by new test failure on 0.4 due to JuliaLang/julia#9666 (comment).
Sorry, something went wrong.
In any case, this is an Images problem, not an IJulia issue.
Works if you do Pkg.update().
Pkg.update()
No branches or pull requests
Using image.jl imread to load 16 bit images works as long as it's not displayed:
This works fine:
imread(filename);
But this causes an error:
imread(filename)
The text was updated successfully, but these errors were encountered: