#pragma once #include #include // std::pair #include // all opencv header #include "hdrplus/burst.h" namespace hdrplus { class align { public: align() = default; void process( hdrplus::burst& burst_images, \ std::vector>>>& aligements ); const std::vector inv_scale_factors = { 1, 2, 2, 4 }; }; } // namespace hdrplus