writing title on images

211 次查看(过去 30 天)
Hello everybody,
I have 100 images, what my code does is reading the image and shows them, but I need to write a title on each image through the showing. When I run my code, the images begin showning but there is no titl on them just on the last one. What I need is showing the images in sequence and the title one them.
srcFiles = dir('F:\the source\*.mim');
for i = 1 : length(srcFiles)
filename = strcat('F:\the source\',srcFiles(i).name);
S{i} = double(imread(filename));
n=n+1;
end
for j=1:n
imshow(S{j},[]);
D{j} = imcrop(S{j},[35 1 260 240]);
imshow(D{j},[])
title(j);
end
Thanks

采纳的回答

Image Analyst
Image Analyst 2018-12-20
Try this for your second loop:
for k = 1 : length(S)
% Display the orginal image.
imshow(S{k}, []);
caption = sprintf('Original Image #%d out of %d', k, n);
title(caption, 'FontSize', 14);
drawnow;
pause(0.5); % Pause long enough for user to see image before it goes to the next one.
% Now crop the image and display it.
D{k} = imcrop(S{k}, [35, 1, 260, 240]);
imshow(D{k}, [])
caption = sprintf('Cropped Image #%d out of %d', k, n);
title(caption, 'FontSize', 14);
drawnow;
pause(1); % Pause long enough for user to see image before it goes to the next one.
end
but honestly, I don't know why you're doing this in two separeate loops and storing all the images (wasting memory) when you could do it all in one loop and use only one image by overwriting it every time.
  1 个评论
Mohanned Al Gharawi
Mohanned Al Gharawi 2018-12-20
Thank you it worked, Yes I agree with I should have done with one loop. Thanks again.

请先登录,再进行评论。

更多回答(3 个)

madhan ravi
madhan ravi 2018-12-20
编辑:madhan ravi 2018-12-20
A bold guess:
srcFiles = dir('F:\the source\*.mim');
S=cell(1,length(srcFiles));
for i = 1 : length(srcFiles)
filename = strcat('F:\the source\',srcFiles(i).name);
S{i} = double(imread(filename));
n=n+1;
end
D=cell(1,length(n));
for j=1:n
imshow(S{j},[]);
D{j} = imcrop(S{j},[35 1 260 240]);
figure
imshow(D{j},[])
title(j);
end

Mohanned Al Gharawi
Mohanned Al Gharawi 2018-12-20
Thanks for your respond,
The problem is still. The title is only written at the end of the loop. I mean the last image has only the title.

Walter Roberson
Walter Roberson 2018-12-20
projectdir = 'F:\the source';
srcFiles = dir( fullfile(projectdir, '*.mim') );
basenames = {srcFiles.name};
n = length(srcFiles);
S = cell(n, 1);
for i = 1 : n
filename = fullfile(projectdir, basenames{i})';
S{i} = im2double(imread(filename));
end
fig = figure();
cmap = colormap(gray(256));
ax = axes('Parent', fig);
D = cell(n, 1);
for j=1:n
D{j} = imcrop(S{j},[35 1 260 240]);
imagesc(ax, D{j});
colormap(ax, cmap);
title(ax, basenames{j});
drawnow();
end

类别

Help CenterFile Exchange 中查找有关 Graphics Performance 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by