Johnny Chen
Johnny Chen
I believe this was a mistake so I add the `SIXELAPI` macro. This solves the issue in https://github.com/johnnychen94/Sixel.jl/issues/5
`y` variable in the first method is actually unused 
It would be super cool if we can bring sixel support for terminal plots, I've made a libsixel wrapper https://github.com/johnnychen94/Sixel.jl Check https://github.com/csdvrx/sixel-gnuplot for the sixel gallery. There are two possible...
I've checked four versions v1.1.1, v1.2.4, v1.3.2 and v1.4.5. It turns out that v1.2.4 is the first version among these that I find such regression. ```julia Julia Version 1.7.0-rc2 Commit...
JuliaImages widely uses `FixedPointNumbers.N0f8`, which is internally an `UInt8`, to represent [0,1] range. It seems that `interpolate` fails to promote the datatype for some interpolation types: ```julia using FixedPointNumbers, Interpolations...
It's pretty big a downloading size for Interpolations from pkg server and I think it's better to optimize this: ``` # [email protected] $ wget https://pkg.julialang.org/package/a98d9a8b-a2ab-59e6-89dd-64a1c18fca59/2b7d4e9be8b74f03115e64cf36ed2f48ae83d946 $ du -sh 2b7d4e9be8b74f03115e64cf36ed2f48ae83d946 4.6M...
only meant to run the unit tests and see it still works on Julia 1.7
https://github.com/lorenzoh/DataLoaders.jl has a very nice implementation to support image loading/augmentation with background threads, so I think we can maybe take advantage of it, and maybe deprecate `augment_batch` in favor of...
This issue is for reference usage # Operation | Name | eager | lazy | affinemap | permute | view | stepview | affine | affineview | | --- |...
Internally, `CombineChannels` uses `ImageCore.colorview` to do the work, which requires the data layout to be `CHW`. When deal with deep learning frameworks, it's often the case that we need to...