text(x,y,z,'text')在3D空间中工作,但它不是3D。有没有办法在matlab中绘制一个简单的3D文本,这很简单:
我不需要阴影或渲染,只能为文本添加第三维。
答案 0 :(得分:6)
使用文字无法做到这一点。您必须拥有文本的图像,并将texture map 2-D图像放到3-D surface上。默认情况下,使用正交投影在轴上渲染图形,因此要像上图所示创建透视图,您必须:
以下是一些示例代码来说明上述内容。我将首先创建一个示例文本图像:
hFigure = figure('Color', 'w', ... %# Create a figure window
'MenuBar', 'none', ...
'ToolBar', 'none');
hText = uicontrol('Parent', hFigure, ... %# Create a text object
'Style', 'text', ...
'String', 'PHOTOSHOP', ...
'BackgroundColor', 'w', ...
'ForegroundColor', 'r', ...
'FontSize', 50, ...
'FontWeight', 'bold');
set([hText hFigure], 'Pos', get(hText, 'Extent')); %# Adjust the sizes of the
%# text and figure
imageData = getframe(hFigure); %# Save the figure as an image frame
delete(hFigure);
textImage = imageData.cdata; %# Get the RGB image of the text
现在我们有了我们想要的文字图像,这里是你如何在三维表面上对其进行纹理贴图并调整视图投影:
surf([0 1; 0 1], [1 0; 1 0], [1 1; 0 0], ...
'FaceColor', 'texturemap', 'CData', textImage);
set(gca, 'Projection', 'perspective', 'CameraViewAngle', 45, ...
'CameraPosition', [0.5 -1 0.5], 'Visible', 'off');
以下是产生的图片: