Advertisement

图像增强技术——基于LIME的低光图像增强方法(LIME模型, 2017 CVPR)

阅读量:

1. 文献参考

2. 模型构建

复制代码
    % 论文: LIME: A Method for Low-light Image Enhancement
    % 作者:Xiaojie Guo
    % 链接:
    % Author: HSW
    % Date: 2018-04-27
    
    clc;
    close all;
    clear;
    
    addpath(genpath('removeHaze\')); 
    addpath(genpath('BM3D\')); 
    
    % img = imread('timg1.png');
    img = imread('timg2.png');
    % img = imread('timg3.png');
    % img = imread('timg4.png');
    figure;
    imshow(img, []);
    title('原图像');
    Model = 'Normal'; % 'Dehaze' / 'Norma

全部评论 (0)

还没有任何评论哟~