mindspore.dataset.audio.WindowType

class mindspore.dataset.audio.WindowType[源代码]

Window Function types,

Possible enumeration values are: WindowType.BARTLETT, WindowType.BLACKMAN, WindowType.HAMMING, WindowType.HANN, WindowType.KAISER.

  • WindowType.BARTLETT: means the type of window function is Bartlett.

  • WindowType.BLACKMAN: means the type of window function is Blackman.

  • WindowType.HAMMING: means the type of window function is Hamming.

  • WindowType.HANN: means the type of window function is Hann.

  • WindowType.KAISER: means the type of window function is Kaiser, currently not supported on macOS.