I don't know if this used to be a problem too, but I'm having trouble reproducing some image transformations I had saved last month, and I found that warp doesn't seem to be making accurate rotations right now?
using ImageTransformations, TestImages, ImageView, Rotations, OffsetArrays, CoordinateTransformations
mri = centered(testimage("mri"));
tfm = AffineMap(RotXYZ(2*pi,0,0), [0, 0, 0]);
imgw = warp(mri, tfm, axes(mri));
imshow(colorview(RGB, mri.data, imgw, zeroarray));
I don't know if this used to be a problem too, but I'm having trouble reproducing some image transformations I had saved last month, and I found that warp doesn't seem to be making accurate rotations right now?