Hello, how to write code for the expression shown in image in matlab to divide two images by calculating 24000?

3 次查看(过去 30 天)
i tried following but not getting output.
out_im= imdivide(Fing_im, white_im);
out_im= immultiply(out_im,24000);
figure(),imshow(uint16(out_im),[]);

采纳的回答

Walter Roberson
Walter Roberson 2016-2-1
out_im = double(Fing_im) ./ double(white_im) .* 24000;
figure(), imshow(uint16(out_im),[]);

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Images 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by