You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
462 B
C

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