This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
/*
* Copyright (c) 2016,中国航天电子技术研究院 无人机系统工程研究所
* All rights reserved.
*
* 文件名称:superResolutionImg.h
* 摘 要:超分辨率重建
* 当前版本:1.0
* 作 者:王家星
* 完成日期:2016年03月10日
*/
#pragma once
// OpenCV
#include <opencv2\opencv.hpp>
using namespace cv;
// 功能:灰度图像(红外图像)超分辨率构建
// 输入:
// imgDeque: 输入图像序列,要求图像尺寸相同,类型为CV_8UC1
// 输出:
// dst: 输出超分图像
// 返回重建中有效的图像数目
int SuperResolutionImg(cv::Mat &dst, const std::deque<cv::Mat> &imgDeque, double multiple = 2);