Effacer les filtres
Effacer les filtres

What is the formula to convert uint8 image to double format ?

28 vues (au cours des 30 derniers jours)
Pramod Bhat
Pramod Bhat le 19 Août 2011
Hi friends, i want to convert a uint8 format image to double format.I have got command 'im2double' for that. But i want to know the basic formula for converting that.
For ex : i want to represent intensity level 256 to double format which is represented in [0 1]. please help. Thanks...

Réponses (3)

Friedrich
Friedrich le 19 Août 2011
Hi,
simply cast it as double and than divide by the maximum number of the datatype. In your case (uint8) its 255. So when your image is A do
double(A)/255
or more general
double(A)/intmax(class(A))
  3 commentaires
Friedrich
Friedrich le 19 Août 2011
Yes im2double does that but Pramod asked for the basic formula. He knows about im2double.
Fangjun Jiang
Fangjun Jiang le 19 Août 2011
Fair enough! No argument from me!

Connectez-vous pour commenter.


Fangjun Jiang
Fangjun Jiang le 19 Août 2011
By simply dividing all the numbers by 255?
See example:
I1 = reshape(uint8(linspace(1,255,25)),[5 5])
I2 = im2double(I1)
  3 commentaires
Fangjun Jiang
Fangjun Jiang le 19 Août 2011
What do you mean? The code I quoted is from help im2double. The OP is asking how im2double is able to convert 0~255 to 0~1. I am guessing it just divides by 255, like you guessed.
Friedrich
Friedrich le 19 Août 2011
My comment is related to your statement: "By simply dividing all the numbers by 255?" Simply diving is not enough you have to cast first.

Connectez-vous pour commenter.


Pramod Bhat
Pramod Bhat le 19 Août 2011
Thanks alot friends. ..). thanq. i understood.

Catégories

En savoir plus sur Convert Image Type dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by