Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

excute matlab script that is used to read serise of image in c#

2 Ansichten (letzte 30 Tage)
Sahan Priyanga
Sahan Priyanga am 14 Nov. 2015
Geschlossen: Walter Roberson am 14 Nov. 2015
the following code is worked for matlab. but give error when executin it inside visual studio.
To read all files that match *.jpg with imread:
jpegFiles = dir('*.jpg');
numfiles = length(jpegFiles);
mydata = cell(1, numfiles);
for k = 1:numfiles
mydata{k} = imread(jpegFiles(k).name);
end
when saving the processed images(the code shown in follow works for matlab and gives errors for matlab)
pathname1 = 'F:\anuradha\resized_01';
baseFileName1=sprintf('Img_res_1_%d.jpg',jj);
fullFileName1 = fullfile(pathname1,baseFileName1);
imwrite(d1,fullFileName1);
  2 Kommentare
Image Analyst
Image Analyst am 14 Nov. 2015
Please ask in a C# forum. They'll know what you want to do, even if they don't know MATLAB, and will be able to tell you the solution.

Antworten (0)

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by