2016-04-22 130 views
0

我有一個file.modQDH一個圖像描述符,我需要顯示這些圖像從矢量生成圖像,不能顯示圖像

這是我的代碼

imagefiles = dir('*.modQDH');  
nfiles = length(imagefiles); % Number of files found 

fprintf('number est '); 
fprintf('%d ',nfiles); 
fprintf('%n'); 


A = importdata('obj1__0.modQDH'); 
disp(A); 

當我使用DISP(一)的結果是我vetcor

但我,我需要對應於這個向量

我已經使用圖像(A)和imshow(A)的圖像,但它不工作

回答