Conversion of (129x7 complex double) to an Image
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
DGM
il 4 Feb 2023
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
il 4 Feb 2023
Tiff supports ComplexIEEEFP. However MATLAB's interface to libTiff does not support that.
Risposta accettata
Image Analyst
il 6 Feb 2023
Modificato: Image Analyst
il 7 Feb 2023
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 Commenti
DGM
il 7 Feb 2023
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.
Più risposte (2)
Walter Roberson
il 4 Feb 2023
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 Commenti
DGM
il 4 Feb 2023
Spostato: Image Analyst
il 6 Feb 2023
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.
Vedere anche
Categorie
Scopri di più su Spectral Measurements in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!