I am converting multiple log-mel spectrograms from .wav files to images.
I want to destroy as little information as possible as I plan to use the resulting images for a computer vision task.
To convert the data to an image format, I currently use a simple sklearn.MinMaxScaler((0, 255)).
To fit this scaler, I use the minimal and the maximal energy of all frequencies on all my spectrograms.
Should I scale my spectrograms with minimal and maximal energy for each specific frequency?
Does it make sense to have different frequencies with different scaling features?