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

◆ extract_overlapping_windows()

std::vector< std::vector< double > > MayaFlux::Yantra::extract_overlapping_windows ( const std::vector< std::span< const double > > &  channels,
uint32_t  window_size,
double  overlap 
)

Definition at line 182 of file ExtractionHelper.cpp.

186{
187 std::vector<std::vector<double>> result;
188 result.reserve(channels.size());
189 for (const auto& ch : channels)
190 result.push_back(D::overlapping_windows(ch, window_size, overlap));
191 return result;
192}
Eigen::Index overlap

References overlap, and MayaFlux::Kinesis::Discrete::overlapping_windows().

Referenced by MayaFlux::Yantra::FeatureExtractor< InputType, OutputType >::extract_implementation().

+ Here is the call graph for this function:
+ Here is the caller graph for this function: