Question: Write a program in MATLAB that takes two inputs, a string with the file location of an image, and a string with the file location
Write a program in MATLAB that takes two inputs, a string with the file location of an image, and a string with the file location of a .csv file. You should read the information from each file, then use that information as the inputs of this function:
function outputImage = matrixCombine(colorImage,doubleImage)
t=uint8(doubleImage); t=t./2;
outputImage(:,:,1)= colorImage(:,:,1)./2 + t;
outputImage(:,:,2)= colorImage(:,:,2)./2 + t;
outputImage(:,:,3)= colorImage(:,:,3)./2 + t;
end
The function must be named drawBridge and Input order should be:
static coefficients
kinetic coefficients
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
