Afficher commentaires plus anciens
clear
clc
d1=120; d2=94;
I =imread('C:\Users\SAMA CENTER\Desktop\girl.jpg');
J = imresize(I,[200 250]);
X = rgb2gray(I);
Y=X';
for k1=1:d1
for k2=1:d2
B(2*k1,k2)=X(k1, k2);
B(2*k1-1,k2)=floor((X(k1,k2)+X(2*k1-1,k2))/2);
end
end
imshow(B);
What's wrong with this code?? there is some wrong with the floor function what is it ???
2 commentaires
Chandra Kurniawan
le 10 Mar 2012
Please show me the error message!
noor
le 10 Mar 2012
Réponse acceptée
Plus de réponses (1)
777
le 10 Mar 2012
0 votes
your code has x(2*k1-1) ,so when the value of k1=120 you reach a value which is out of bounds for x.
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!