Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Code and data for the research paper "A Bio-Inspired Multi-Exposure Fusion Framework for Low-light Image Enhancement" (Submitted to IEEE Transactions on Cybernetics)

NotificationsYou must be signed in to change notification settings

baidut/BIMEF

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Code for our paper "A Bio-Inspired Multi-Exposure Fusion Framework for Low-light Image Enhancement"

  • The code for the comparison method is also provided, seelowlight
  • Downloads:google Drive (Just unzip data to current folder)
    • DatasetsVV, LIME, NPE, NPE-ex1, NPE-ex2, NPE-ex3, DICM, MEF
    • Since some methods are quite time-consuming, we also provide their results (e.g.results__dong@VV.zip)
    • Since some metrics are quite time-consuming, we also provide their results (TestReport.zip)
  • All the experiments can be reproduced easily by runningexperiments.m

tcyb2017_moreExamples

From left to right: input images, results of MSRCR, Dong, NPE, LIME, MF, SRIE, and BIMEF(ours).

Datasets

Prerequisites

  • Original code is tested onMatlab 2016b 64bit, Windows 10.
  • matlabPyrTools is required to run VIF metric (vif.m).

Setup

Runstartup.m to add required path, then you are able to try the following demo.

I= imread('yellowlily.jpg');J= BIMEF(I);subplot121; imshow(I); title('Original Image');subplot122; imshow(J); title('Enhanced Result');

ReplaceBIMEF with other methods you want to test.

Directory Structure

.├── data           # put your datasets here│   ├── MEF        # dataset name (VV, LIME, NPE...)│        ├── out   │        │    ├── loe100x100           # LOE visualization results│        │    ├── TestReport.csv       # results of metrics│        │    ├── TestReport__xxxx.csv # backups of TestReport│        │    └── xxx__method.PNG      # output images│        └── xxx.jpg                   # input images│├── lowlight       # lowlight image enhancement methods├── quality        # image quality metrics (blind or full-reference)├── util           # provide commonly used utility functions│├── demo.m         # simple demo of lowlight enhancement├── experiments.m  # reproduce our experiments└── startup.m      # for installation

Usage

Run experiments.

% specify datasetsdataset= {'VV''LIME''NPE''NPE-ex1''NPE-ex2''NPE-ex3''MEF''DICM'};dataset= strcat('data',filesep,dataset,filesep,'*.*');% specify methods and metricsmethod= {@multiscaleRetinex @dong @npe @lime @mf @srie @BIMEF};metric= {@loe100x100 @vif};for d=dataset, data= d{1};data,      Test= TestImage(data);            Test.Method=method;     Test.Metric=metric;% run test and display resultsTest,% save test to a .csv file    save(Test);end

Show test reports.

% tableTestReport('TestReport__VV.csv'),% boxplotTestReport('TestReport__MEF.csv').boxplot;

Our method (BIMEF) has the lowest LOE and the highest VIF.

boxplot

About

Code and data for the research paper "A Bio-Inspired Multi-Exposure Fusion Framework for Low-light Image Enhancement" (Submitted to IEEE Transactions on Cybernetics)

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp