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.

28 lines
583 B
C++

This file contains ambiguous Unicode characters!

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);