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.

20 lines
421 B
C

3 years ago
#pragma once
#include <vector>
#include <utility> // std::pair
3 years ago
#include <opencv2/opencv.hpp> // all opencv header
namespace hdrplus
{
3 years ago
class align
{
public:
align() = default;
void process( std::vector<cv::Mat>& bayer_images, \
int reference_frame_idx,\
std::vector<std::vector<std::vector<std::pair<int, int>>>>& aligements );
3 years ago
};
3 years ago
} // namespace hdrplus