
Warp image
warp(im, warpfield, mode = 0L, interpolation = 1L, boundary_conditions = 0L)
an image
Warping field. The (x,y,z) fields should be stacked along the colour coordinate.
Can be 0=backward-absolute | 1=backward-relative | 2=forward-absolute | 3=forward-relative
Can be 0=nearest | 1=linear | 2=cubic.
Boundary conditions. Can be 0=dirichlet | 1=neumann | 2=periodic.
imwarp for a user-friendly interface
cimg.limit.openmp()
#Shift image via warp
warp.x <- imfill(width(boats),height(boats),val=5)
warp.y <- imfill(width(boats),height(boats),val=20)
warpfield <- list(warp.x,warp.y) %>% imappend("c")
warp(boats,warpfield,mode=1) %>% plot
Run the code above in your browser using DataLab