Nicholas Bauer

Results 99 issues of Nicholas Bauer

I'm trying to load a video that was saved with this command: ``` imgstack = copy(reinterpret(UInt16, imgstack)) VideoIO.save("x265_lossless.mp4", eachslice(imgstack, dims = 3), framerate = 5, codec_name = "libx265", encoder_options =...

Fixes #269 by providing a warning when a transpose of an OffsetVector is passed in as a kernel component. It seems any proper attempt to fix this is far too...

If a 2d kernel is passed as two OffsetArray vectors, the second one transposed or adjoint, the final image is incorrect. The issue does not occur if the second component...

``` function extrema_range(x) extx = extrema(x) return extx[2] - extx[1] end julia> mapwindow(extrema_range, randn(21), (41,)) 3.816084076236648 julia> mapwindow(extrema_range, randn(21), (43,)) ERROR: DimensionMismatch: CartesianIndices((1:0,)) must be in the interior of CartesianIndices((21,))...

If someone wishes to use this container and pre-load packages for their own, they may find that every time they run the container remotely, Julia spends time compiling before anything...

Unused type variables generate warnings on newer Julia versions, reduce performance.

``` typeof(hotpixeltraces[1]) Vector{UInt16} (alias for Array{UInt16, 1}) ```

I was hoping to use something like `marginalkde` to better display dense scatterplot data, but it takes 100x as long as a scatter plot to generate. The slow part is...

Was hoping to overlay multiple distributions, but got this error instead. Maybe it is intentionally unsupported, but should probably be a better error if so? ``` x = randn(1024) y...

Implementation of https://github.com/JuliaPlots/Plots.jl/issues/2001 Just not sure where the `density` shorthand needs to go?