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

 채택된 답변

Walter Roberson
Walter Roberson 2019년 2월 28일

0 개 추천

outputs = zeros(size(I));
for ii = 1 : numel(I)
outputs(ii) = rand();
end

추가 답변 (0개)

태그

질문:

2019년 2월 28일

댓글:

2019년 2월 28일

Community Treasure Hunt

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

Start Hunting!

Translated by