I want to read an image from folder in away that every time i run my code i could choose another image ?

1 回表示 (過去 30 日間)
i have a barcode progarm and i want to run the code every time with different image so i asked about any tool that make me able to choose an image without need to write the name of it .

回答 (1 件)

Thorsten
Thorsten 2015 年 11 月 13 日
Suppose you have jpg images in the current folder. First you read a description of the files
d = dir('*.jpg');
Now each time you need to randomly pick one of the jpg images, use
I = imread(d(randi(numel(d))).name);

カテゴリ

Help Center および File ExchangeImages についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by