MayaFlux 0.4.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ apply_window_channels()

MAYAFLUX_API void MayaFlux::apply_window_channels ( std::vector< Kakshya::DataVariant > &  channels,
const std::string &  window_type = "hann" 
)

Apply window function to multi-channel data (in-place)

Parameters
channelsVector of channel data (modified in-place)
window_type"hann", "hamming", "blackman", "rectangular" (default: "hann")

Definition at line 854 of file Yantra.cpp.

855{
856 for (auto& ch : channels)
857 apply_window(ch, window_type);
858}
void apply_window(std::vector< double > &data, const std::string &window_type)
Apply window function to single-channel data (in-place)
Definition Yantra.cpp:826

References apply_window().

+ Here is the call graph for this function: