main.cpp
350 Bytes
#include "data/ResourceLocator.hpp"
#include "benchmark/median_filter_benchmark.hpp"
#include "benchmark/thermal_event_detection_benchmark.hpp"
int main(int, char **) {
ResourceLocator::setPathProvider(
std::make_unique<AbsolutePathProvider>("resource/"));
ThermalEventDetectionBenchmark::run();
MedianFilterBenchmark::run();
return 0;
}