Half plotting problem of spectrogram
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Sania Gul
am 27 Okt. 2022
Kommentiert: Sania Gul
am 9 Nov. 2022
I am producing spectrograms of 10 hour audio in chunks of 4 seconds, by using the "for" loop and storing it in a folder. But many of the spectrograms generated and saved are incomplete. Why it is so? and how I can stop this to happen
This problem is not for all spectrograms, only for 30% of the total.
2 Kommentare
Akzeptierte Antwort
VBBV
am 7 Nov. 2022
Bearbeitet: VBBV
am 7 Nov. 2022
imwrite(outputImage, destFile,'Quality',"lossless");
It appears that some part of the image data is being lost during write operation. Try with name value argument specifying quality as lossless
6 Kommentare
VBBV
am 8 Nov. 2022
Bearbeitet: VBBV
am 8 Nov. 2022
I = imread('peppers.png');
imshow(I)
[r c] = size(I) % get the size of image
if r == c
outputImage = imresize(I,[r c]); % this could be reason, change using scale value
elseif r < c
outputImage = imresize(I,[r+abs(c-r) c]); ;% this could be reason, change using scale value
elseif r > c
outputImage = imresize(I,[r c+abs(c-r)]);
end
outputImage = imresize(I,[120 c]); % see the difference with fixed row and col values
imshow(outputImage)
% imwrite(outputImage, destFile,"Quality",100); % switch back to normal mode
Note the difference when you use fixed numbers for rows and cols for all image sizes, Try with the higher or scaled values for rows and cols inside the imresize function and switch back to normal mode. May be some images have high resolution with large or different sizes,
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Time-Frequency Analysis finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!