Sampling from an image file without replacement
4 ビュー (過去 30 日間)
古いコメントを表示
I have an image file of several hundred images and I need to sample and save 70 of these images without replacement and save them for use later in the experiment. How do I go about doing this?
0 件のコメント
回答 (1 件)
Jos (10584)
2018 年 5 月 18 日
% select 70 random indices without replacement between 1 and numImages
imIDX = randperm(numImages, 70) ;
for K = imIDX
% process image K
end
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!