필터 지우기
필터 지우기

how to get a good resolution for a binary image from an image, which took through getframe?

조회 수: 1 (최근 30일)
Hello everyone,
I have an image, which must be captured from a plot and then resized and converted to a binary image, that's my code:
plot (L(:,1),L(:,2),'k');
axis([min(x) max(x) min(y) max(y)])
drawnow
ax1 = gca;
ax1.YDir = 'normal';
ax1.Units = 'pixels';
pos = ax1.Position;
marg = 5;
rect = [marg, marg, pos(3)-2*marg, pos(4)-2*marg];
F = getframe(gca,rect);
ax1.Units = 'normalized';
[X, Map] = frame2im(F);
Y = imresize (X,[500 500]);
BW = im2bw(Y,Map,0.5);
In fact, I've got a binary image but with very bad resolution, how i can fix that?

답변 (1개)

Pruthvi Muppavarapu
Pruthvi Muppavarapu 2019년 3월 13일

카테고리

Help CenterFile Exchange에서 Convert Image Type에 대해 자세히 알아보기

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by