| 322 | } |
| 323 | |
| 324 | void VideoThumbnailer::applyFilters(VideoFrame& frameData) |
| 325 | { |
| 326 | for (auto filter : m_Filters) { |
| 327 | filter->process(frameData); |
| 328 | } |
| 329 | } |
| 330 | |
| 331 | int VideoThumbnailer::getBestThumbnailIndex(vector<VideoFrame>& videoFrames, const vector<Histogram<int>>& histograms) |
| 332 | { |