merge images from diffrent folder
이전 댓글 표시
Hi,I need a code that merges 2 folders Jpg images that inside each of the folders 120 images,the format that I need to merge is on by on (1 from folder1 by 1 from folder2, 2 from folder 1 by 2 from folder 2, so on.) and pastes the merged images into a separate folder(new path).
Thank for help.
채택된 답변
추가 답변 (4개)
Image Analyst
2019년 12월 22일
편집: Image Analyst
2019년 12월 22일
See the FAQ. It's a simple process to adapt it to have two folders and two filenames. Then you can stitch the files together like this:
tallImage = [image1; image2]; % Must have same number of columns.
wideImage = [image1, image2]; % Must have same number of rows.
You can also use imageDatastore().
댓글 수: 6
Hamid Ebrahimi
2019년 12월 22일
Image Analyst
2019년 12월 22일
OK, I adapted the FAQ for you but you still need to put in your actual folders.
% Specify the folder where the files live.
folder1 = pwd; % or 'C:\Users\yourUserName\Documents\My Pictures';
% Check to make sure that folder actually exists. Warn user if it doesn't.
if ~isfolder(folder1)
errorMessage = sprintf('Error: The following folder does not exist:\n%s', folder1);
uiwait(warndlg(errorMessage));
return;
end
folder2 = pwd; % or 'C:\Users\yourUserName\Documents\My Pictures';
% Check to make sure that folder actually exists. Warn user if it doesn't.
if ~isfolder(folder2)
errorMessage = sprintf('Error: The following folder does not exist:\n%s', folder2);
uiwait(warndlg(errorMessage));
return;
end
% Get a list of all files in the folder with the desired file name pattern.
filePattern1 = fullfile(folder1, '*.jpg'); % Change to whatever pattern you need.
filePattern2 = fullfile(folder2, '*.jpg'); % Change to whatever pattern you need.
theFiles1 = dir(filePattern1);
theFiles2 = dir(filePattern2);
% Go through stitching together all the images.
for k = 1 : length(theFiles1)
baseFileName1 = theFiles1(k).name;
fullFileName1 = fullfile(folder1, baseFileName1);
fprintf('Now reading %s\n', fullFileName1);
% Now do whatever you want with this file name,
% such as reading it in as an image array with imread()
image1 = imread(fullFileName1);
subplot(2, 2, 1);
imshow(image1); % Display image.
% Now read in image2
baseFileName2 = theFiles2(k).name;
fullFileName2 = fullfile(folder2, baseFileName2);
fprintf('Now reading %s\n', fullFileName2);
% Now do whatever you want with this file name,
% such as reading it in as an image array with imread()
image2 = imread(fullFileName2);
subplot(2, 2, 2);
imshow(image2); % Display image.
% Stitch the image together horizontally:
[rows1, columns1, numberOfColorChannels1] = size(image1);
[rows2, columns2, numberOfColorChannels2] = size(image2);
if rows1 == rows2 && numberOfColorChannels1 == numberOfColorChannels2
wideImage = [image1, image2];
subplot(2, 2, 3:4);
imshow(wideImage); % Display image.
drawnow; % Force display to update immediately.
fprintf('And I stitched them together.\n\n');
else
% Rows or colors don't match - can't stitch together horizontally
warningMessage = sprintf('Cannot stitch together %s and %s because the rows or number of colors do not match.\n', ...
baseFileName1, baseFileName2);
promptMessage = sprintf('%s\nDo you want to Continue processing,\nor Quit processing?', warningMessage);
titleBarCaption = 'Continue?';
buttonText = questdlg(promptMessage, titleBarCaption, 'Continue', 'Quit', 'Continue');
if contains(buttonText, 'Quit')
break;
end
end
end
Hamid Ebrahimi
2019년 12월 22일
편집: Hamid Ebrahimi
2019년 12월 22일
Image Analyst
2019년 12월 22일
It appears your input images are whole axes, with tick marks and color bars, etc., rather than just the images alone, but that's OK.
There are only 3 images there. The image at bottom is just the upper two stitched together side-by-side into a single image.
To dave the bottom image, call imwrite():
imwrite(wideImage, outputFullFileName);
You'll want to construct a unique filename for each output image using sprintf() and fullfile().
Hamid Ebrahimi
2019년 12월 22일
Image Analyst
2019년 12월 22일
Give me the name of the three folders (two input and one output). And give me some kind of direction for what you'd like to name the output file. And is image1 in folder 1 supposed to be matched up with an image in folder 2 that has the same filename as image 1 had? If not, how are you deciding which to stitch together?
Hamid Ebrahimi
2019년 12월 22일
0 개 추천
댓글 수: 1
Image Analyst
2019년 12월 22일
They are completely touching on the edges. Like I said, your original images are not the images alone but the figures, so they have tick marks, axss labels, a title, a colorbar, and white space around them. Just look at one by itself in some other programto verify, so you can see that stuff really IS in the image - it's not something MATLAB added. You told it to save those images with all that extra stuff in them. If you don't want that, save them with imwrite(), not saveas().
I'd ask your image comparison question in a new question.
Hamid Ebrahimi
2020년 1월 18일
0 개 추천
댓글 수: 13
Image Analyst
2020년 1월 18일
Hamid, I'm not sure what an image is there. How many are there in that screenshot? Three? Do you have them in separate arrays? If so, simply stitch them together with the semicolon
tallMatrix = [image1; image2; image3];
Hamid Ebrahimi
2020년 1월 18일
편집: Hamid Ebrahimi
2020년 1월 18일
Image Analyst
2020년 1월 18일
Yes, the code I gave should do that.
Hamid Ebrahimi
2020년 1월 18일
Image Analyst
2020년 1월 19일
You don't "plot" images. You use imshow().
Hamid Ebrahimi
2020년 1월 19일
편집: Hamid Ebrahimi
2020년 1월 19일
Image Analyst
2020년 1월 19일
Hamid, It seems that the problem you think you have is the white space (padding) around the axes. It looks like you're saving a whole figure as an image. You need to save the image, not the figure. Try using getimage() to get the image out of the axes, then use imwrite() or export_fig(), instead of saveas() or however you were saving the figure.
Hamid Ebrahimi
2020년 1월 19일
Image Analyst
2020년 1월 19일
So did you try getimage() and imwrite() or not?
Image Analyst
2020년 1월 19일
Please format the code properly (one line of code per line) with the code icon on the tool ribbon. I can't figure out how to split up the lines and what's in a comment and what's not. Also append the rest of your code so I can get it all in one click of the "Copy" link (which you'll get after you click the code icon).
Image Analyst
2020년 1월 19일
You're not making it easy, are you:
Unrecognized function or variable 'data1EEG'.
Error in test3 (line 7)
for i=1:size(data1EEG,3)
Hamid Ebrahimi
2020년 1월 19일
편집: Hamid Ebrahimi
2020년 1월 19일
Image Analyst
2020년 1월 20일
Well, I'm going to give up now. You're not turning over your data1EEG data for us to reproduce the scalograms. Plus you're calling cwtfilterbank() which is a function in the Wavelet Toolbox, which I don't have.
I suggest you
- start a new question/thread and
- specify that you're using the Wavelet Toolbox, and
- specify what release of MATLAB you're using, and
- attach your m-file, and
- attach your data file(s), and
- read this link
and maybe/hopefully someone with the Wavelet Toolbox can give you code for what you want to do.
카테고리
도움말 센터 및 File Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

%20and%201%20(1).png)







