Segmentation fault when printing images with transparency and -nodisplay option

2 次查看(过去 30 天)
I'm running MATLAB 2012a on Linux's command line with -nodisplay option. When I run my code I get a segmentation fault. The following piece of code reproduce my error. The error is produced when the plot has transparencies. If I comment out this line put alpha(h2,0.5);, it works fine.
filename ='mypng.png';
Image1 = imread('peppers.png');
[row,col,~]=size(Image1);
Image2 = ones(row,col);
f=figure(1);set(f,'Visible','off');
h1=imagesc(Image1);
hold on
h2=imagesc(Image2);
alpha(h2,0.5);
axis off;
print(f,'-dpng',filename);
The result is: Segmentation fault (core dumped).
Any idea how to fix this problem?

采纳的回答

Marta Salas
Marta Salas 2014-6-18
I'm answering my own question, just in case someone else run into this problem (although it's improbable). The purpose of running matlab in terminal with -nodisplay option is because I work on a headless server.
The use of -nodesktop instead of -nodisplay does the trick.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Startup and Shutdown 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by