把STL檔案ACSII格式讀入matlab

2021-06-03 20:01:21 字數 795 閱讀 6405

function [fout, vout, cout] = readstlacsii(filename)

fid=fopen(filename, 'r');

if fid == -1 

error('檔案開啟錯誤!.')

end

%讀取檔案頭,stl檔案第一行是檔名

file_name = sscanf(fgetl(fid), '%*s %s');  %cad object name, if needed.

%定義變數

vnum=0;       %vertex number counter.

report_num=0; %report the status as we go.

stlvcolor = 0;

stlxyz=0;

%開始讀整個檔案,直到結束符為止

while feof(fid) == 0                    % test for end of file, if not then do stuff

tline = fgetl(fid);                 % reads a line of data from file.

fword = sscanf(tline, '%s');       % make the line a character string

%檢查顏色

if strncmpi(fword, 'facet normal',12) == 1;    % checking if a "c"olor line, as "c" i

把CAJ格式檔案轉換為PDF格式檔案的方法

轉換的方法是仿照網上出現的這樣一篇文章 打破超星封鎖 pdg轉pdf新方法 文章作者用了乙個巧妙的方法ps列印,繞開了限制,達到格式轉換的目的。而我也就是利用這種方法把轉換達到了令人滿意的水平。軟體工具 cajviewer5.5 adobe acrobat 7.0 professional 操作方法...

把img映象檔案轉化為dcm格式檔案

matlab img是三維影象,將其轉換為乙個序列的二維dcm格式的影象 讀取analyze75的函式是 analyze75info和analyze75read 其中fpath是analyze75檔案的路徑,即hdr檔案的路徑。clear all clc info analyze75info fpa...

如何把Json格式字元寫進text檔案中

本篇一步一步學習怎樣把顯示於網頁的json格式的字串寫進text檔案中,並儲存起來。學習到建立model,entity,序列化list轉換為json,顯示於網頁上。然後是把這些json字串傳至控制器的方法,寫text檔案並儲存。準備資料物件,建立model 接下來建立entity,資料實體,資料可以...