I need some help for multiple images cropping. I used this code but it showed error and said Computer Image System Toolbox used.
In here i use this code for cropping.
imageDir = 'D:\Masters Thesis\ssss';
ssss = imageSet(imageDir);
for k = 1 : ssss.Count
theImage = imread(ssss);
croppedImage = imcrop(theImage,[646, 1291, 481, 600]);
baseFileName = sprintf('Image #%d.png', k);
fullFileName = fullfile(imageDir, baseFileName);
imwrite(croppedImage, fullFileName);
end
can anyone help me to solve this prolem.
TIA

 채택된 답변

Walter Roberson
Walter Roberson 2019년 9월 16일
편집: Walter Roberson 2019년 9월 16일

0 개 추천

Yes, imageSet requires the Computer Vision Toolbox.
imageDir = 'D:\Masters Thesis\ssss';
dinfo = dir(imageDir);
dinfo([dinfo.isdir]) = []; %remove folders
filenames = fullfile(imageDir, {dinfo.name});
numfiles = length(filenames);
for k = 1 : nulfiles
sss = filenames{k};
theImage = imread(ssss);
croppedImage = imcrop(theImage,[646, 1291, 481, 600]);
baseFileName = sprintf('Image #%d.png', k);
fullFileName = fullfile(imageDir, baseFileName);
imwrite(croppedImage, fullFileName);
end
Notice, though, that you are finding all files in the directory, and writing new files to the same directory. Suppose you stop part way (such as due to a bug in your code.) Then Image*.png files will have been created in the directory, and when you go to run the code again, they will be found in the directory -- and will be re-cropped and re-output, probably under a different name.
Nothing that you are doing associates a particular input file name with a particular output file name. Formally, MS Windows makes no promises about the order of files in a directory. You cannot tell, looking at an output file name, which input file it came from. You should consider changing that.

댓글 수: 8

Mohammad Shakhawat Sumon
Mohammad Shakhawat Sumon 2019년 9월 16일
its not working. can you help me to operate this code.
>> fff
Error using imread>get_format_info (line 543)
Unable to determine the file format.
Error in imread (line 391)
fmt_s = get_format_info(fullname);
Error in fff (line 8)
theImage = imread(ssss);
and i am use this code
imageDir = 'D:\Masters Thesis\ssss';
dinfo = dir(imageDir);
dinfo([dinfo.isdir]) = []; %remove folders
filenames = fullfile(imageDir, {dinfo.name});
numfiles = length(filenames);
for k = 1 : numfiles
ssss = filenames{k};
theImage = imread(ssss);
croppedImage = imcrop(theImage,[646, 1291, 481, 600]);
baseFileName = sprintf('Image #%d.png', k);
fullFileName = fullfile(imageDir, baseFileName);
imwrite(croppedImage, fullFileName);
end
Walter Roberson
Walter Roberson 2019년 9월 16일
You have files in the directory that are not images. It is not clear what you want the result of applying imread() to those non-images to be.
Alternatively, they might be images but matlab does not recognize the file extension . For example matlab does not recognize .orf images (Olympus cameras raw files)
Mohammad Shakhawat Sumon
Mohammad Shakhawat Sumon 2019년 9월 19일
I use this code which is given below. It works only for one picture but when i select the folder for all picture it's not working. So that i need more time for one by one picture.
Can you give me some suggestion for all images read it simultinously.
imageDir = 'D:\Masters Thesis\ssss';
dinfo = dir(imageDir);
dinfo([dinfo.isdir]) = []; %remove folders
filenames = fullfile(imageDir, {dinfo.name});
numfiles = length(filenames);
for k = 1 : numfiles
sssss = filenames{k};
theImage = imread('00027 22.jpg');
croppedImage = imcrop(theImage,[650,620, 481, 600]);
baseFileName = sprintf('Image #%d.png', k);
fullFileName = fullfile(imageDir, baseFileName);
imwrite(croppedImage, fullFileName);
end
And also i attached my folder position.
Change
dinfo = dir(imageDir);
to
dinfo = dir( fullfile(imageDir, '*.jpg') );
Change
theImage = imread('00027 22.jpg');
to
theImage = imread(sssss);
Mohammad Shakhawat Sumon
Mohammad Shakhawat Sumon 2019년 9월 20일
이동: DGM 2023년 2월 22일
Thanks a lot.
Its working well.
dinesh bharathi
dinesh bharathi 2022년 7월 15일
편집: dinesh bharathi 2022년 7월 15일
I want to do the same with Interlacing parameter with value set to 'Adam7'. How do I do it?
Image Analyst
Image Analyst 2022년 7월 15일
@dinesh bharathi, did you post in the right place? This post involves reading in a sequence of images. What is "interlacing parameter"? No one in this thread mentions "interlacing parameter".
If you have any more questions, then attach your data and code to read it in with the paperclip icon after you read this:
dinesh bharathi
dinesh bharathi 2022년 7월 18일
@Image Analyst I just figured it out. I wanted to process images in batch and save them under Adam 7 interlaced format. I worked out imwrite(croppedImage, fullFileName,'png','InterlaceType','adam7'); in R2020b it was giving me weird response bby writing files differently. But when i tried the same imwrite(croppedImage, fullFileName,"png","InterlaceType","adam7"); in R2022a I was getting what i desired. Now it works fine.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Get Started with Computer Vision Toolbox에 대해 자세히 알아보기

제품

릴리스

R2018b

질문:

2019년 9월 16일

이동:

DGM
2023년 2월 22일

Community Treasure Hunt

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

Start Hunting!

Translated by