4 #include <ArmarXCore/interface/core/UserException.h>
24 auto f = std::make_unique<processor::filter::SnapshotFrequencyFilter>();
31 auto f = std::make_unique<processor::filter::SnapshotSimilarityFilter>();
38 auto f = std::make_unique<processor::filter::SnapshotImportanceFilter>();
47 auto f = std::make_unique<processor::converter::data::image::PngConverter>();
54 auto f = std::make_unique<processor::converter::data::image::ExrConverter>();
60 std::map<std::string, processor::SnapshotFilter::FilterStatistics>
63 std::map<std::string, processor::SnapshotFilter::FilterStatistics> stats;
64 bool recordedOverall =
false;
66 for (std::size_t i = 0; i <
snapFilters.size(); i++)
68 auto statistics =
snapFilters.at(i)->getFilterStatistics();
69 auto recorded = statistics.accepted + statistics.rejected;
73 recordedOverall =
true;
78 throw InvalidArgumentException(
79 "NoFilters recorded any data being accepted or rejected, "
80 "cant store empty statistics");
91 filter_ptr->resetStatisticsForNewEpisode();