Conversion of (129x7 complex double) to an Image

5 次查看(过去 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
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
Walter Roberson 2023-2-4
Tiff supports ComplexIEEEFP. However MATLAB's interface to libTiff does not support that.

请先登录,再进行评论。

采纳的回答

Image Analyst
Image Analyst 2023-2-6
编辑:Image Analyst 2023-2-7
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 个评论
Muhammad
Muhammad 2023-2-7
@Image Analyst thank you so much i will. In the mean time as you can see i segment the signal into 3.5s frame windows, i need to have time (0-3.5s) on x axis and Frequency on Y axis. Currently i am just getting samples and normalized frequency. please have a look into the below attachement.
DGM
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
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

DGM
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 CenterFile Exchange 中查找有关 Image Data Workflows 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by