필터 지우기
필터 지우기

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

조회 수: 7 (최근 30일)
r=log®; Undefined function 'log' for input arguments of type 'uint8'.

답변 (1개)

Titus Edelhofer
Titus Edelhofer 2016년 2월 25일
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

카테고리

Help CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by