ImageTransformations.jl
ImageTransformations.jl copied to clipboard
Geometric transformations on images for Julia
is there something that performs this transformation? ```julia [1 0; 0 0] -> [1 1 0 0; 1 1 0 0; 0 0 0 0; 0 0 0 0] ```...
While working on improving the speed of my image registration analysis, I've noticed that ImageTransformations doesn't currently support compatibility for GPU computing using CuArrays. Therefore, I've made a first attempt...
```julia img = testimage("cameraman") # (512, 512) # Before: (514, 514) # After: (512, 512) size(imrotate(img, pi/2)) # Before: sizes are not equal # After: true imrotate(imrotate(imrotate(imrotate(img, pi/2), pi/2), pi/2),...
- Adds swirl operation in ImageTransformations.jl Fixes: https://github.com/JuliaImages/ImageTransformations.jl/issues/133 Doubt: - How to write tests for things like this?
This is added to our documentation [as an example](https://juliaimages.org/ImageTransformations.jl/dev/examples/operations/swirl/#Swirl-effect-using-warp-operation), but it would be nice to have it as a standard function in ImageTransformations. 
Thank you for this awesome package! I'm auto-tracking animal movements in videos. I'm using `VideoIO.jl` to extract frames from the video, resize them (uniform scale and fixing the [Storage Aspect...
Let me recite [our newly-added documentation](https://juliaimages.org/ImageTransformations.jl/dev/#index_image_warping) for the symbols and terminology: A (backward-mode) warp operation consists of two parts: the value estimator τ (which we always use Interpolations.jl in this...
I am trying to use ForwardDiff to compute the gradient of a cost function defined as the Sum of Square Differences (SSD) between two images with respect to the parameters...
Resolves #121. First of all, I haven't implemented `imresize(img, inds, p::FixedPointType)`. It didn't make sense to me when I thought about it. As I understand it, the point of this...
It's better to have `Projective` transformation to `ImageTransformations.jl`. ```julia # Definition of projective transformation """ Projective transformation. """ struct Projective >I feel the right place to add this is in...