merge images from diffrent folder

4 views (last 30 days)
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.

Accepted Answer

Image Analyst
Image Analyst on 22 Dec 2019
Edited: Image Analyst on 22 Dec 2019
Try this, making adaptations as needed:
% Specify the folder where the files live.
folder1 = 'D:\data\class 1';
% 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 = 'D:\data\class 2';
% 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
% Make an output folder.
outputFolder = 'D:\data\merge';
if ~isfolder(outputFolder)
% If it doesn't exist, create it.
mkdir(outputFolder);
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;
[~, baseFileName1NoExt, ~] = fileparts(baseFileName1);
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(1, 3, 1);
imshow(image1); % Display image.
% Now read in image2
baseFileName2 = theFiles2(k).name;
fullFileName2 = fullfile(folder2, baseFileName2);
[~, baseFileName2NoExt, ~] = fileparts(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(1, 3, 2);
imshow(image2); % Display image.
% Stitch the image together vertically:
[rows1, columns1, numberOfColorChannels1] = size(image1);
[rows2, columns2, numberOfColorChannels2] = size(image2);
if columns1 == columns2 && numberOfColorChannels1 == numberOfColorChannels2
tallImage = [image1; image2];
subplot(1, 3, 3);
imshow(tallImage); % Display image.
drawnow; % Force display to update immediately.
fprintf('And I stitched them together.\n\n');
outputBaseFileName = sprintf('%s and %s.png', baseFileName1NoExt, baseFileName1NoExt);
outputFullFileName = fullfile(outputFolder, outputBaseFileName);
imwrite(tallImage, outputFullFileName);
fprintf('And I stitched them together and saved them as\n %s.\n\n', outputFullFileName);
else
% Columns or colors don't match - can't stitch together vertically.
warningMessage = sprintf('Cannot stitch together %s and %s because the columns 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

More Answers (4)

Image Analyst
Image Analyst on 22 Dec 2019
Edited: Image Analyst on 22 Dec 2019
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 Comments
Hamid Ebrahimi
Hamid Ebrahimi on 22 Dec 2019
Can I ask you to give me a full code with this changes and new path to save new merge images please
Thank tou so much for help.
Image Analyst
Image Analyst on 22 Dec 2019
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?

Sign in to comment.


Hamid Ebrahimi
Hamid Ebrahimi on 22 Dec 2019
folder 1= has 100 images from 1 to 100
folder 2= has 100 images from 1 to1 00
path of folder 1= D:\data\class 1
path of folder 2= D:\data\class 2
path of folder 3= D:\data\merge (the output path of merge images form folder 1 and folder 2 one by one merge that should be has 100 images at end in output path taht has 100 images(1 with 1 merge 2 with 2 merge and...)
I will show you an example image that I want merge like this image.
image.jpeg

Hamid Ebrahimi
Hamid Ebrahimi on 22 Dec 2019
Your code worked and produced the following image, but they are not completely stuck together and are a little bit apart, is this the right distance between the images or not?
Thank you for your time and response.
It was so nice of you.
I have another question about showing the pre-processed signal and the raw signal and comparing them, should I open another post or ask here?
1 (1) and 1 (1).png
  1 Comment
Image Analyst
Image Analyst on 22 Dec 2019
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.

Sign in to comment.


Hamid Ebrahimi
Hamid Ebrahimi on 18 Jan 2020
Hi again, for this problem I need merge images in only one image like below image and not two images in top and button and only one image.
stft.png
  13 Comments
Hamid Ebrahimi
Hamid Ebrahimi on 19 Jan 2020
Edited: Hamid Ebrahimi on 19 Jan 2020
data1EEG is the preprocessing eeg data that should be transforme to scalogram image, so I want only a code that merge two scalogram in one image not two scalogram images in one image that previously you made, I want to merge two scalogram eeg signal and nirs sigbal in one image that has only one Y axis and one X axis not two images with two axis
Image Analyst
Image Analyst on 20 Jan 2020
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
  1. start a new question/thread and
  2. specify that you're using the Wavelet Toolbox, and
  3. specify what release of MATLAB you're using, and
  4. attach your m-file, and
  5. attach your data file(s), and
  6. read this link
and maybe/hopefully someone with the Wavelet Toolbox can give you code for what you want to do.

Sign in to comment.

Categories

Find more on Image Processing Toolbox in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!