how process sequence of the images in a loop without overwriting

1 回表示 (過去 30 日間)
Akhir Shaik
Akhir Shaik 2020 年 2 月 25 日
コメント済み: Akhir Shaik 2020 年 3 月 10 日
here, i am solving around 20000 images at once but the output i'm getting is only the last iamge.
here is the code i got from the Matlab Answers, but also it didn't work can anyone help me.
  3 件のコメント
Akhir Shaik
Akhir Shaik 2020 年 2 月 26 日
here, i need to find the breakup length, need to solve 20k images at once and need to save value in numerical or dat file.
the image processing code is ok. if i solve for 1 images i got the answer but solving for 20k images it is considering only the last image file in the folder.
Stephen23
Stephen23 2020 年 3 月 3 日
Original Question: "how process sequence of the images in a loop without overwriting"
here, i am solving around 20000 images at once but the output i'm getting is only the last iamge.
here is the code i got from the Matlab Answers, but also it didn't work can anyone help me.
myFolder = 'E:\IMAGES\100k\flip';
if exist(myFolder, 'dir') ~= 7
Message = sprintf('Error: The following folder does not exist:\n%s', myFolder);
uiwait(warndlg(Message));
return;
end
filePattern = fullfile(myFolder, '*.jpg');
jpegFiles = dir(filePattern);
for i = 1:length(jpegFiles)
fileName = sprintf('%5.5d.jpg', i);
piccell{i} = imread(fileName);
end
grayImage = imread(fileName);
[rows, columns, numberOfColorChannels] = size(grayImage);
if numberOfColorChannels > 1
grayImage = rgb2gray(grayImage);
end
highThreshold = 150;
binaryImage = grayImage <= highThreshold;
binaryImage = bwareafilt(binaryImage, 1);
binaryImage = imfill(binaryImage, 'holes');
bottomLine = zeros(rows, 1);
for col = 1 : columns
thisColumn = binaryImage(:, col);
lastLine = find(thisColumn, 1, 'last');
if ~isempty(lastLine)
bottomLine(col) = lastLine;
end
end
meanbottomLine = mean(bottomLine(bottomLine>0));
save bkl_.dat meanbottomLine -ascii

サインインしてコメントする。

回答 (1 件)

Benjamin Großmann
Benjamin Großmann 2020 年 2 月 26 日
Have a look at your first for loop. Here you are generating a char called fileName which is overwritten in every loop count. furthermore, this loop is unnecessary since you already have your file names in the struct array jpegFiles.
Try to use
fileNameCell = {jpegFiles.name};
to get a cell array of file names. Then write a function which does your image manipulation for one file. Finally, call your function with cellfun and the fileNameCell to apply the image manipulation to every file in the cell.
You can also have a look at the imageSet class.
  8 件のコメント
Benjamin Großmann
Benjamin Großmann 2020 年 3 月 9 日
Please put a breakpoint in line 3 of the function, then run the script and post the contents of img_fullfile after the breakpoint was reached
Akhir Shaik
Akhir Shaik 2020 年 3 月 10 日
i added the breakpoint and tried same error.
not enough input arguments.
i tried to solve this by using the loops and function file but not not working getting only the last image answer.
help pls,

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeGeometric Transformation and Image Registration についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by