From 0ff5656c439e12114e6aea7bf432492f7978007d Mon Sep 17 00:00:00 2001 From: cvachha Date: Fri, 29 Apr 2022 22:29:40 -0700 Subject: [PATCH] Added a few helper function signatures Added a few helper function signatures which are commented out in merge.h --- include/hdrplus/merge.h | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/include/hdrplus/merge.h b/include/hdrplus/merge.h index ffba5d3..f208c70 100644 --- a/include/hdrplus/merge.h +++ b/include/hdrplus/merge.h @@ -30,7 +30,19 @@ class merge */ void process( const hdrplus::burst& burst_images, \ std::vector>>>& alignments); - + + + /* + std::vector get_other_tiles(); //return the other tile list T_1 to T_n + + std::vector vector_math(string operation, reference_tile, other_tile_list); //for loop allowing operations across single element and list + + std::vector scalar_vector_math(string operation, scalar num, std::vector tile_list); //for loop allowing operations across single element and list + + std::vector average_vector(std::vector tile_list); //take average of vector elements + + */ + private: cv::Mat cosineWindow1D(cv::Mat input, int window_size = TILE_SIZE) { cv::Mat output = input.clone();