Hello, how to write code for the expression shown in image in matlab to divide two images by calculating 24000?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Durgesh Naik
le 1 Fév 2016
Réponse apportée : Walter Roberson
le 1 Fév 2016
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),[]);
0 commentaires
Réponse acceptée
Walter Roberson
le 1 Fév 2016
out_im = double(Fing_im) ./ double(white_im) .* 24000;
figure(), imshow(uint16(out_im),[]);
0 commentaires
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!