getAffineTransform | R Documentation |
Get Affine Transform
getAffineTransform(original_points, transformed_points)
original_points |
a matrix object that corresponds to the original points |
transformed_points |
a matrix object that corresponds to the transformed points |
a matrix
https://github.com/OlehOnyshchak/ImageTransformations/blob/master/AffineTransformation.ipynb
require(OpenImageR)
r = 600
c = 600
offset = 50
original_points = matrix(data = c(0, 0, r, 0, 0, c),
nrow = 3,
ncol = 2,
byrow = TRUE)
transformed_points = matrix(data = c(offset, 0, r, offset, 0, c-offset),
nrow = 3,
ncol = 2,
byrow = TRUE)
M_aff = getAffineTransform(original_points = original_points,
transformed_points = transformed_points)
M_aff
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.