Conversion of (129x7 complex double) to an Image
3 ビュー (過去 30 日間)
古いコメントを表示
I have a variable s (129x7 complex double). I want to save it as an image. I have tried many ways but I can't save it.
for k=1:size(cm,2)
s = spectrogram(cm(:,k));
save(['Spectro_Subj' num2str(h) '_channel' num2str(i) '_window' num2str(k) '.mat'],'s')
end
2 件のコメント
DGM
2023 年 2 月 4 日
Typical image formats (BMP,PNG,JPG) support unsigned integer (or logical) datatypes. Some (TIFF) can be wrangled into supporting floating-point numeric data, but you shouldn't expect anything to be able to read the file. No image format that I know of supports complex-valued numeric data. You may be able to store the components of the data in separate images (real and imag), or perhaps it may suffice to reduce it to magnitude only.
Long story short, if you have arbitrarily-scaled complex data and you want to save it as a typical image format, you'll have to decide on a means of preserving scale information, and you'll have to decide which components of the complex data you want to keep or how you want to encode them into a single real-valued integer array (perhaps magnitude/phase can be encoded as intensity/hue?).
Walter Roberson
2023 年 2 月 4 日
Tiff supports ComplexIEEEFP. However MATLAB's interface to libTiff does not support that.
採用された回答
Image Analyst
2023 年 2 月 6 日
編集済み: Image Analyst
2023 年 2 月 7 日
Try exportgraphics
for k=1:size(cm,2)
spectrogram(cm(:,k));
baseFileName = sprintf('Spectro_Subject %d_channel %d_window %d.png', h, i, k);
fullFileName = fullfile(pwd, baseFileName);
fprintf('For k = %d, saving "%s".\n', k, fullFileName);
exportgraphics(gca, fullFileName);
end
8 件のコメント
DGM
2023 年 2 月 7 日
Note the only reason why I don't use exportgraphics() isn't because saveas() is better. I just run an older version, so I can't verify my example with something I can't run.
その他の回答 (2 件)
Walter Roberson
2023 年 2 月 4 日
you could use the tiff gateway and write the imaginary component as unassociated alpha. There is an example at
https://www.mathworks.com/help/matlab/ref/tiff.html#mw_a2efd938-557e-41ad-925b-64f84a51f07b
The difference is that you would specify 2 samples per pixel instead of 4, and you would use IEEEFP sample format.
There is a file exchange contribution for writing floating-point tiff that is worth studying.
So... you would be able to use an image file, and use floating point samples, and write two channels.
What you should not expect is for any other program to be able to produce a readable image from the data
0 件のコメント
DGM
2023 年 2 月 4 日
移動済み: Image Analyst
2023 年 2 月 6 日
Are you sure you don't want to just save a graphical representation (i.e. a plot)?
% some fake test signal
fs = 1000;
t = 0:1/fs:2-1/fs;
y = chirp(t,100,1,200,'quadratic');
% plot the spectrogram
spectrogram(y,100,80,100,fs,'yaxis')
colormap(parula(256))
% save the figure
saveas(gcf,'myplot.png')
If so, there are many different ways it can be represented.
参考
カテゴリ
Help Center および File Exchange で Spectral Measurements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!