imquantize code is required

20 vues (au cours des 30 derniers jours)
Mayank Nautiyal
Mayank Nautiyal le 7 Oct 2019
Hi, I need the original code of imquantize function of matlab. Please help.
My attempt:
I=imread('football.jpg');
I=rgb2gray(I);
[M N]=size(I);
T1=91;
T2=150;
for x=1:M
for y=1:N
if(I(x,y)<T1)
I(x,y)=0;
elseif(T1<I(x,y)<=T2)
I(x,y)=120;
else
I(x,y)=255;
end
end
end
figure;
imshow(I);

Réponses (1)

Matt J
Matt J le 7 Oct 2019
elseif(T1<I(x,y) | I(x,y)<=T2)

Catégories

En savoir plus sur Deep Learning Toolbox 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