I would like to express image transformation (warping) in a mathematical form. For example, image transformation T may be an affine, homography, and so on.
Relevant codes might be:
# matlab
J = imwarp(I, tform);
# python opencv
J = cv2.warpAffine(I, T, (cols,rows))
Given an image I
and a transformation T
and its result J
, what would be a proper mathematical notation? Is there a stadard for this, or are there references to follow?
I am just thinking:
# latex
$J = W(I, T)$ (in a function form?)
$J = W(I|T)$ (in a function form?)
$J = T * I$ (with a some operator and its definition?)