Community Profile

photo

Delowar Hossain


Intelligence Robotics System

Active since 2015

Statistics

  • First Review
  • First Answer

View badges

Content Feed

View by

Answered
How to read & display multiple images from a folder
jpgFiles = dir('*.jpg'); numFiles = length(jpgFiles); mydata = cell(1,numFiles); % mydata = zeros(numFiles); f...

8 years ago | 2

Answered
Reading sequence of JPEG images from current directory
You can try this code srcFiles = dir('C:\Users\coil-20-proc\*.jpeg'); % the folder in which ur images exists for i = 1 ...

8 years ago | 0