Editing images using MATLAB

5 次查看(过去 30 天)
Hello
I have file with 100 pictures inside it , i want to split or divide every picture into 5*5 or 3*3 new pieces and save this new parts as new pictures into other file with new name as sequences name
any help
  4 个评论
Jan
Jan 2022-11-18
The mainpart of the code has no relation to image processing, but it concerns the reading and writing of files.
Even if you do not have much experiences with programming in Matlab, you have much more experiences with your specific problem than the members of the forum have. :-)
MUSTAFA
MUSTAFA 2022-11-23
Yes , I do not have much experiences with programming in Matlab , but my specific problem as below :
i have 15000 ( white rice grain ) and want to take picture for every grain by my camera , and this is hard .
so i am thinked to put 25 grain in one picture and rescale + splite it by matlab before that i must remove background and put black one becouse the rice is white color ...
all that just to use this pictures as dataset for CNN to classifcition rice grains , this is my problem .
Thank you

请先登录,再进行评论。

采纳的回答

Image Analyst
Image Analyst 2022-11-18
编辑:Image Analyst 2022-11-18
OK, I sense you're having some trouble with this so I did it for you.
% Demo by Image Analyst
% Initialization Steps.
clc; % Clear the command window.
close all; % Close all figures (except those of imtool.)
clear; % Erase all existing variables. Or clearvars if you want.
workspace; % Make sure the workspace panel is showing.
format long g;
format compact;
fontSize = 18;
% Specify the folder where the files live.
myFolder = pwd; %'C:\Users\yourUserName\Documents\My Pictures';
% Check to make sure that folder actually exists. Warn user if it doesn't.
if ~isfolder(myFolder)
errorMessage = sprintf('Error: The following folder does not exist:\n%s\nPlease specify a new folder.', myFolder);
uiwait(warndlg(errorMessage));
myFolder = uigetdir(); % Ask for a new one.
if myFolder == 0
% User clicked Cancel
return;
end
end
% Get a list of all files in the folder with the desired file name pattern.
filePattern = fullfile(myFolder, '*.png'); % Change to whatever pattern you need.
theFiles = dir(filePattern);
n = 3; % Number of partitions we'll divide the image up into.
for k = 1 : length(theFiles)
baseFileName = theFiles(k).name;
fullFileName = fullfile(theFiles(k).folder, baseFileName);
fprintf(1, 'Now reading %s\n', fullFileName);
% Now do whatever you want with this file name,
% such as reading it in as an image array with imread()
imageArray = imread(fullFileName);
[rows, columns, numberOfColorChannels] = size(imageArray);
subplot(5, 5, 1)
imshow(imageArray); % Display image.
drawnow; % Force display to update immediately.
startRows = round(linspace(1, rows+1, n+1))
startCols = round(linspace(1, columns+1, n+1))
plotLocation = 2;
for rowk = 1 : n
row1 = startRows(rowk);
row2 = startRows(rowk + 1) - 1;
for colk = 1 : n
col1 = startCols(colk);
col2 = startCols(colk + 1) - 1;
subImage = imageArray(row1:row2, col1:col2, :);
subplot(n, n+1, plotLocation);
imshow(subImage)
plotLocation = plotLocation + 1;
% Create a filename for this subimage
baseFileName2 = sprintf('%s Row %d Col %d.png', baseFileName, rowk, colk);
fullFileName2 = fullfile(theFiles(k).folder, baseFileName2);
fprintf('Saving %s\n', fullFileName2);
imwrite(subImage, fullFileName2);
end
end
drawnow;
end
  5 个评论
Image Analyst
Image Analyst 2022-11-23
OK I didn't know since you didn't Accept the answer. Since it did work can you please click the "Accept this answer" link? Thanks in advance. 🙂
To rescale an image in intensity you can use rescale or imadjust.
To rescale an image spatially you can use imresize.
To set all green in a picture to black you can use the Color Thresholder app on the Apps tab of the tool ribbon. Do it in HSV color space and then tell it to export the function.

请先登录,再进行评论。

更多回答(1 个)

Image Analyst
Image Analyst 2022-11-18
I assume you tried to adapt the FAQ:
and must have run into some difficulties. What happened? Are your images a multiple of 3 and 5?

类别

Help CenterFile Exchange 中查找有关 Convert Image Type 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by