Question: Write a C/C++ program where you are asked to re-sample a 2D digital image. Specifically, you are asked to re-sample an input image by t
Write a C/C++ program where you are asked to re-sample a 2D digital image. Specifically, you are asked to re-sample an input image by t times in both x-axis and y-axis, where t is an arbitrary positive float-type scale factor. Please consider bi-linear (BL) interpolation at (x, y) in case x or y is not at a grid point (or integer). Hint: Assume the input image has a size of M *N. First you need to determine the size of the output image by multiplying both M and N by t. That is, M'-M * t and N'-N* t. Ci,j) (x, y) Re-sampling
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
