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
After #102:
img = float64.(imresize(testimage("cameraman"), (512, 512))); @btime erode($img, $(strel_diamond(img))); img_nf08 = n0f8.(imresize(testimage("cameraman"), (256, 256))); @btime erode($img_nf08, $(strel_diamond(img_nf08)));
This is mainly because rawview(channelview(img_n0f8)) is a MappedArray and should be fixed somewhere upstream (ImageCore, probably)
rawview(channelview(img_n0f8))
MappedArray
julia> versioninfo() Julia Version 1.9.0-DEV.843 Commit 4873773d37e (2022-06-23 18:35 UTC) Platform Info: OS: macOS (x86_64-apple-darwin21.5.0) CPU: 16 × Intel(R) Core(TM) i9-9880H CPU @ 2.30GHz WORD_SIZE: 64 LIBM: libopenlibm LLVM: libLLVM-14.0.5 (ORCJIT, skylake) Threads: 8 on 8 virtual cores Environment: JULIA_NUM_THREADS = 8
The text was updated successfully, but these errors were encountered:
No branches or pull requests
After #102:
This is mainly because
rawview(channelview(img_n0f8))
is aMappedArray
and should be fixed somewhere upstream (ImageCore, probably)The text was updated successfully, but these errors were encountered: