how process sequence of the images in a loop without overwriting

1 次查看(过去 30 天)
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
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 CenterFile Exchange 中查找有关 Geometric 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