How to transform double to unit8

4 visualizzazioni (ultimi 30 giorni)
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.

Risposta accettata

KALYAN ACHARJYA
KALYAN ACHARJYA il 3 Apr 2020
  1 Commento
Sivakumar Rajagopal
Sivakumar Rajagopal il 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.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Shifting and Sorting Matrices in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by