资源简介
图像处理领域中用于处理LDR为HDR图像的程序,即从低动态范围的图像转成高动态范围的图像
代码片段和文件信息
% Averaging improves the image quality because some noises are signal
% independent including the fixed pattern noise.
% Fixed pattern noise can be estimated in terms of dark frame by
% averaging some images captured in a completely dark environment.
%% reset
clear all;
close all;
clc;
%% load data
[names times] = listparse(‘max.list‘);
n = length(names);
channels = 1:3;
% load the parsed images
images = cell(n1);
for i = 1:n
images{i} = double(imread(sprintf(‘%s‘names{i})));
end
times = 1 ./ times;
% viz overview
figure(1);
for i = 1:n
subplot(34i);
imshow(uint8(images{i}));
title(sprintf(‘\\Delta t_{%d} = %0.3gs‘itimes(i)));
end
%% Robertson linear
f = 0:255;
figure(2);
plot(f);
axis tight;
title(‘linear response curve‘);
figure(3);
plot(weight(0:25
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1812 2012-05-22 11:11 1_hdr_reconstruction\hdr_reconstruction.asv
文件 1842 2012-05-22 11:15 1_hdr_reconstruction\hdr_reconstruction.m
文件 348 2011-05-09 14:14 1_hdr_reconstruction\listparse.m
文件 158 2011-05-09 14:14 1_hdr_reconstruction\max.list
文件 184815 2011-05-09 14:14 1_hdr_reconstruction\max01.ppm
文件 184815 2011-05-09 14:14 1_hdr_reconstruction\max02.ppm
文件 184815 2011-05-09 14:14 1_hdr_reconstruction\max03.ppm
文件 184815 2011-05-09 14:14 1_hdr_reconstruction\max04.ppm
文件 184815 2011-05-09 14:14 1_hdr_reconstruction\max05.ppm
文件 184815 2011-05-09 14:14 1_hdr_reconstruction\max06.ppm
文件 184815 2011-05-09 14:14 1_hdr_reconstruction\max07.ppm
文件 184815 2011-05-09 14:14 1_hdr_reconstruction\max08.ppm
文件 184815 2011-05-09 14:14 1_hdr_reconstruction\max09.ppm
文件 184815 2011-05-09 14:14 1_hdr_reconstruction\max10.ppm
文件 184815 2011-05-09 14:14 1_hdr_reconstruction\max11.ppm
文件 184815 2011-05-09 14:14 1_hdr_reconstruction\max12.ppm
文件 7261 2011-05-09 14:14 1_hdr_reconstruction\reconstructed.jpg
文件 616 2012-05-22 10:51 1_hdr_reconstruction\robertson_applyResponse.asv
文件 562 2012-05-22 10:57 1_hdr_reconstruction\robertson_applyResponse.m
文件 2055 2012-05-16 23:42 1_hdr_reconstruction\robertson_getResponse.asv
文件 2040 2012-05-22 11:02 1_hdr_reconstruction\robertson_getResponse.m
文件 195 2012-05-22 10:31 1_hdr_reconstruction\weight.asv
文件 209 2012-05-22 10:49 1_hdr_reconstruction\weight.m
目录 0 2012-05-24 12:48 1_hdr_reconstruction
----------- --------- ---------- ----- ----
2234878 24
相关资源
- Pattern Recognition and Machine Learning(高清
- MATLAB 编程 第二版 Stephen J. Chapman 著
- 均值滤波和FFT频谱分析Matlab代码
- 《MATLAB扩展编程》代码
- HDB3码、AMI码的MATLAB实现
- 3点GPS定位MATLAB仿真
- MATLAB数字信号处理85个实用案例精讲入
- matlab从入门到精通pdf94795
- 欧拉放大论文及matlab代码
- 跳一跳辅助_matlab版本
- 全面详解LTE MATLAB建模、仿真与实现
- MIMO-OFDM无线通信技术及MATLAB实现_孙锴
- MATLAB Programming for Engineers 4th - Chapman
- matlab 各种谱分析对比
- 分数阶chen混沌matlab程序
- 基于粒子群算法的非合作博弈的matl
- MATLAB车流仿真 包括跟驰、延误
- matlab空间桁架计算程序
- 基于MATLAB的图像特征点匹配和筛选
- DMA-TVP-FAVAR
- GPS信号的码捕获matlab代码.7z
- 一维光子晶体MATLAB仿真代码吸收率折
- newmark法源程序
- 传统关联成像、计算鬼成像matlab
- pri传统分选算法
- 摆动滚子推杆盘形凸轮设计
- 医学图像重建作业matlab源码
- Matlab实现混沌系统的控制
- 检测疲劳驾驶
- Matlab锁相环仿真-Phase Locked Loop.rar
评论
共有 条评论