Filter löschen
Filter löschen

I have a problem with log while implementing vague shadow mask but the R component is already in uint8.

7 Ansichten (letzte 30 Tage)
r=log®; Undefined function 'log' for input arguments of type 'uint8'.

Antworten (1)

Titus Edelhofer
Titus Edelhofer am 25 Feb. 2016
Hi,
you need to convert back to double:
r = log(double(r));
If you afterwards go back to uint8 (which probably makes little sense), then use uint8 to convert.
Titus

Kategorien

Mehr zu Data Type Conversion finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by