image size for loop
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Rahaf mutlaq
el 28 de Feb. de 2019
Comentada: Rahaf mutlaq
el 28 de Feb. de 2019
hi
i have an image its size : 846x660x3 unit8
i want to do for loop that loop creat random values with the same size of image
i have tried this :
I = imread(11.JPG)
for ii =1: size (I)
%Alogarithm code
end
0 comentarios
Respuesta aceptada
Walter Roberson
el 28 de Feb. de 2019
outputs = zeros(size(I));
for ii = 1 : numel(I)
outputs(ii) = rand();
end
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!