我正在使用R的EMD包。此包具有用于显示希尔伯特谱(用hilbertspec计算)的谱图功能。然而,输出真的是模糊和黑白。
此功能似乎没有输出彩色图像的选项。如何清晰显示光谱,如果可能,还可以显示颜色。
答案 0 :(得分:5)
灰度级在spectrogram
函数(gray()
)中进行了硬编码,以覆盖您可以使用的设置,例如,以下内容:
# define a color palette
colors <- colorRampPalette(c("#007FFF", "blue", "#000077"))
gray <- function(x) colors(255*x) # redefine gray palette
spectrogram(test1$amplitude[,1], test1$instantfreq[,1])
gray <- grDevices::gray # reset gray palette function
另一种选择是使用spectrogram
函数的源来定义自己的绘图函数,该函数具有调色板的参数。