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.
24 lines
399 B
C
24 lines
399 B
C
3 years ago
|
#pragma once
|
||
|
|
||
|
#include <opencv2/opencv.hpp> // all opencv header
|
||
|
#include <hdrplus/burst.h>
|
||
|
#include <hdrplus/align.h>
|
||
|
#include <hdrplus/merge.h>
|
||
|
#include <hdrplus/finish.h>
|
||
|
|
||
|
namespace hdrplus
|
||
|
{
|
||
|
|
||
|
class hdrplus_pipeline
|
||
|
{
|
||
|
private:
|
||
|
hdrplus::align align;
|
||
|
hdrplus::merge merge;
|
||
|
hdrplus::finish finish;
|
||
|
|
||
|
public:
|
||
|
void run_pipeline();
|
||
|
};
|
||
|
|
||
|
} // namespace hdrplus
|