All Projects → 491506870 → PRIDNet

491506870 / PRIDNet

Licence: MIT License
Code for the paper "Pyramid Real Image Denoising Network"

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to PRIDNet

DudeNet
Designing and Training of A Dual CNN for Image Denoising (Knowledge-based Systems, 2021)
Stars: ✭ 45 (-4.26%)
Mutual labels:  image-denoising, real-noise
Image-Denoising-with-Deep-CNNs
Use deep Convolutional Neural Networks (CNNs) with PyTorch, including investigating DnCNN and U-net architectures
Stars: ✭ 54 (+14.89%)
Mutual labels:  image-denoising
sparselandtools
✨ A Python package for sparse representations and dictionary learning, including matching pursuit, K-SVD and applications.
Stars: ✭ 55 (+17.02%)
Mutual labels:  image-denoising
NLRN
Code for Non-Local Recurrent Network for Image Restoration (NeurIPS 2018)
Stars: ✭ 165 (+251.06%)
Mutual labels:  image-denoising
Uformer
[CVPR 2022] Official repository for the paper "Uformer: A General U-Shaped Transformer for Image Restoration".
Stars: ✭ 415 (+782.98%)
Mutual labels:  image-denoising
strollr2d icassp2017
Image Denoising Codes using STROLLR learning, the Matlab implementation of the paper in ICASSP2017
Stars: ✭ 22 (-53.19%)
Mutual labels:  image-denoising
R2Net
Pytorch code for "Attention Based Real Image Restoration", IEEE Transactions on Neural Networks and Learning Systems, 2021
Stars: ✭ 19 (-59.57%)
Mutual labels:  image-denoising
Awesome-low-level-vision-resources
A curated list of resources for Low-level Vision Tasks
Stars: ✭ 35 (-25.53%)
Mutual labels:  image-denoising
Reproducible Image Denoising State Of The Art
Collection of popular and reproducible image denoising works.
Stars: ✭ 1,776 (+3678.72%)
Mutual labels:  image-denoising
Awesome-ICCV2021-Low-Level-Vision
A Collection of Papers and Codes for ICCV2021 Low Level Vision and Image Generation
Stars: ✭ 163 (+246.81%)
Mutual labels:  image-denoising
SwinIR
SwinIR: Image Restoration Using Swin Transformer (official repository)
Stars: ✭ 1,260 (+2580.85%)
Mutual labels:  image-denoising

Pyramid Real Image Denoising Network

This is the code for the paper "Pyramid Real Image Denoising Network". ( VCIP 2019 oral )

Paper Link : Pyramid Real Image Denoising Network

Training dataset : SIDD Medium Dataset

Validation dataset : SIDD Validation data

Testing dataset : SIDD Benchmark, DND, NC12

The trained model for raw_rgb : Google Driver,  Baidu Yunpan

While deep Convolutional Neural Networks (CNNs) have shown extraordinary capability of modelling specific noiseand denoising, they still perform poorly on real-world noisyimages. The main reason is that the real-world noise is moresophisticated and diverse. To tackle the issue of blind denoising,in this paper, we propose a novel pyramid real image denoisingnetwork (PRIDNet), which contains three stages. First, the noiseestimation stage uses channel attention mechanism to recalibratethe channel importance of input noise. Second, at the multi-scale denoising stage, pyramid pooling is utilized to extractmulti-scale features. Third, the stage of feature fusion adopts akernel selecting operation to adaptively fuse multi-scale features.Experiments on two datasets of real noisy photographs demon-strate that our approach can achieve competitive performancein comparison with state-of-the-art denoisers in terms of bothquantitative measure and visual perception quality.

avatar avatar avatar

Training

train_SIDD_Pyramid.py is used for training.

variable "dir_name": to store your training dataset.

variable "checkpoint_dir": to save your trained model.

variable "result_dir": to save the images produced in the training process.

Testing

test_SIDD_Pyramid.py is used for testing.

variable "val_dir": to store your testing dataset.

variable "checkpoint_dir": to store your pre-trained model.

variable "result_dir": the denoised result after testing.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].