Mostrar comentarios más antiguos
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 comentarios
Chandra Kurniawan
el 10 de Mzo. de 2012
Please show me the error message!
noor
el 10 de Mzo. de 2012
Respuesta aceptada
Más respuestas (1)
777
el 10 de Mzo. de 2012
0 votos
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.
Categorías
Más información sobre Creating and Concatenating Matrices en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!