How to transform double to unit8

2 Ansichten (letzte 30 Tage)
Sivakumar Rajagopal
Sivakumar Rajagopal am 3 Apr. 2020
for i = 1:1:291 %go through rows
for j = 1:1:240 %columns
img_heq(i, j) = T(img(i,j));
end
end
ERROR: Variable img_heq must be of data type uint8. It is currently of type double.
How to recity the varibale error problem.

Akzeptierte Antwort

KALYAN ACHARJYA
KALYAN ACHARJYA am 3 Apr. 2020
  1 Kommentar
Sivakumar Rajagopal
Sivakumar Rajagopal am 3 Apr. 2020
for i = 1:1:291 %go through rows
for j = 1:1:240 %columns
img_heq(i, j) = T(img(i,j));
img_heq=im2uint8(img_heq(i,j));
end
end
Error: Variable img_heq must be of size [291 240]. It is currently of size [1 1]. Check where the variable is assigned a value.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Modeling finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by