Skip to content

Commit ccee36c

Browse files
authored
Merge pull request #29 from juglab/develop
Develop
2 parents f36d910 + cbcd0c6 commit ccee36c

13 files changed

Lines changed: 231 additions & 182 deletions

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![PyPI](https://img.shields.io/pypi/v/napari-n2v.svg?color=green)](https://pypi.org/project/napari-n2v)
55
[![Python Version](https://img.shields.io/pypi/pyversions/napari-n2v.svg?color=green)](https://python.org)
66
[![tests](https://github.com/juglab/napari-n2v/workflows/build/badge.svg)](https://github.com/juglab/napari-n2v/actions)
7-
[![codecov](https://codecov.io/gh/juglab/napari-n2v/branch/main/graph/badge.svg)](https://codecov.io/gh/githubuser/napari-n2v)
7+
[![codecov](https://codecov.io/gh/juglab/napari-n2v/branch/main/graph/badge.svg)](https://codecov.io/gh/juglab/napari-n2v)
88
[![napari hub](https://img.shields.io/endpoint?url=https://api.napari-hub.org/shields/napari-n2v)](https://napari-hub.org/plugins/napari-n2v)
99

1010
A self-supervised denoising algorithm now usable by all in napari.
@@ -27,7 +27,8 @@ instructions.
2727

2828
## Quick demo
2929

30-
You can try the quick demo by loading the `N2V Demo prediction` in plugins, and starting the prediction directly.
30+
You can try out a demo by loading the `N2V Demo prediction` plugin and directly clicking on `Predict`. This model was trained using the [N2V2 example](https://juglab.github.io/napari-n2v/examples.html).
31+
3132

3233
<img src="https://raw.githubusercontent.com/juglab/napari-n2v/master/docs/images/demo.gif" width="800" />
3334

@@ -59,7 +60,7 @@ International Symposium on Biomedical Imaging (ISBI)*. IEEE, 2020.
5960

6061
### N2V2
6162

62-
Eva Höck, Tim-Oliver Buchholz, et al. "[N2V2 - Fixing Noise2Void Checkerboard Artifacts with Modified Sampling Strategies and a Tweaked Network Architecture](https://openreview.net/forum?id=IZfQYb4lHVq)", (2022).
63+
Eva Hoeck, Tim-Oliver Buchholz, et al. "[N2V2 - Fixing Noise2Void Checkerboard Artifacts with Modified Sampling Strategies and a Tweaked Network Architecture](https://openreview.net/forum?id=IZfQYb4lHVq)", (2022).
6364

6465
## Acknowledgements
6566

@@ -81,7 +82,7 @@ Distributed under the terms of the [BSD-3] license,
8182
[Mozilla Public License 2.0]: https://www.mozilla.org/media/MPL/2.0/index.txt
8283
[cookiecutter-napari-plugin]: https://github.com/napari/cookiecutter-napari-plugin
8384

84-
[filing an issue]: https://github.com/githubuser/napari-n2v/issues
85+
[filing an issue]: https://github.com/juglab/napari-n2v/issues
8586

8687
[napari]: https://github.com/napari/napari
8788
[tox]: https://tox.readthedocs.io/en/latest/

codecov.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
ignore:
2+
- "src/widgets/*"
3+
- "src/examples/*"
4+
- "*_widget.py"
5+
- "*_data.py"

docs/documentation.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11

22
# Documentation
33

4-
`napari-n2v` is based on the original algorithm from the Jug lab: https://github.com/juglab/n2v, and uses [CSBDeep](http://csbdeep.bioimagecomputing.com/). [N2V](https://arxiv.org/abs/1811.10980) is a self-supervised algorithm that allows denoising images by removing pixel-independent noise. It also comprises an extension to deal with [structured noise](https://ieeexplore.ieee.org/document/9098336).
4+
`napari-n2v` is based on the original algorithm from the Jug lab [Noise2Void](https://github.com/juglab/n2v), and uses
5+
[CSBDeep](http://csbdeep.bioimagecomputing.com/). [N2V](https://ieeexplore.ieee.org/document/8954066) is a self-supervised algorithm
6+
that allows denoising images by removing pixel-independent noise. It also comprises an extension to deal with
7+
[structured noise](https://ieeexplore.ieee.org/document/9098336), and checkboard artefacts with [N2V2](https://ieeexplore.ieee.org/document/9098336).
58

69
`napari-n2v` contains two different napari plugins: `N2V train` and `N2V predict`.
710

811
## N2V train
912

1013
### Anatomy
1114

12-
1. [GPU availability](1---gpu-availability)
15+
1. [GPU availability](#1---gpu-availability)
1316
2. [Data loading](#2---data-loading)
1417
3. [Training parameters](#3---training-parameters)
1518
4. [Expert training parameters](#4---expert-training-parameters)

0 commit comments

Comments
 (0)