필터 지우기
필터 지우기

print plots to tiff in accurate pixel resolution

조회 수: 6 (최근 30일)
Christoph
Christoph 2013년 2월 5일
Hey everybody!
I am currently fighting with the Matlab print function and I don't know how to get the results I need.
The idea is pretty simple: I read 512x512 px images, then do some feature extraction, overlay the features as polygons using patch() and then I want to write the image back in exactly the same resolution.
However
output_size = [512 512];%Size in pixels
resolution = 300;%Resolution in DPI
set(fig,'paperunits','inches','paperposition',[0 0 output_size/resolution]);
print(fig,'-dtiffn',['-r' num2str(resolution)],'-painters',tiff_name_afm)
Does not work. Indeed the output image IS 512x512, but only because of a large white canvas, whilst the image and graph itself is a lot smaller.
Can anyone help me with this?
Best wishes, Chris

채택된 답변

Walter Roberson
Walter Roberson 2013년 2월 5일
If you are not needing shading, then instead of using patch() to do the overlays, use poly2mask() to convert the polygons to pixel locations, and write the new values into the image array; then imwrite() the result.
If you need transparency then use the alpha equation to calculate the result:
(1-alpha) * background + alpha * foreground

추가 답변 (1개)

Christoph
Christoph 2013년 2월 5일
I would really like to keep the patch if possible, as the results look very nice (different line and face colors) and I can show the datapoints.
Is the mix of imshow and patch responsible for the misbehavior?
Thank you for your tip!
  댓글 수: 1
Walter Roberson
Walter Roberson 2013년 2월 5일
Possibly setting PaperSize is needed; maybe PaperPositionMode as well.
Mixing imshow and patch is not responsible for this difficulty. Printing is a pain.
If setting the PaperSize does not work, then you might get more deterministic output from the File Exchange contribution export_fig
Do you really want to print the whole fig, toolbars and all ? If not then you can export_fig() the axis, or you could toss all the drawing inside a uipanel() and export_fig() or print() the uipanel.

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

카테고리

Help CenterFile Exchange에서 Images에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by