Skip to content

Commit

Permalink
initital commit, implemented (#54)
Browse files Browse the repository at this point in the history
Co-authored-by: acs-ws <asolak@ku.edu.tr>
  • Loading branch information
AhmetCanSolak and acs-ws committed Nov 23, 2021
1 parent eee2835 commit a0b14e8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ options using our Object-Oriented denoising API.

.. code-block:: python
from aydin.restoration.denoise.noise2self_cnn import Noise2SelfCNN
from aydin.restoration.denoise.noise2selfcnn import Noise2SelfCNN
n2s = Noise2SelfCNN()
n2s.train(noisy_image)
Expand All @@ -18,7 +18,7 @@ denoising. One can do the the following:

.. code-block:: python
from aydin.restoration.denoise.noise2self_cnn import Noise2SelfCNN
from aydin.restoration.denoise.noise2selfcnn import Noise2SelfCNN
transforms = [
{"class": RangeTransform, "kwargs": {}},
Expand All @@ -33,7 +33,7 @@ options using our procedural denoising endpoint.

.. code-block:: python
from aydin.restoration.denoise.noise2self_cnn import noise2self_cnn
from aydin.restoration.denoise.noise2selfcnn import noise2self_cnn
denoised_image = noise2self_cnn(noisy_image)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ options using our Object-Oriented denoising API.

.. code-block:: python
from aydin.restoration.denoise.noise2self_fgr import Noise2SelfFGR
from aydin.restoration.denoise.noise2selffgr import Noise2SelfFGR
n2s = Noise2SelfFGR()
n2s.train(noisy_image)
Expand All @@ -18,7 +18,7 @@ denoising. One can do the the following:

.. code-block:: python
from aydin.restoration.denoise.noise2self_fgr import Noise2SelfFGR
from aydin.restoration.denoise.noise2selffgr import Noise2SelfFGR
transforms = [
{"class": RangeTransform, "kwargs": {}},
Expand All @@ -33,7 +33,7 @@ options using our procedural denoising endpoint.

.. code-block:: python
from aydin.restoration.denoise.noise2self_fgr import noise2self_fgr
from aydin.restoration.denoise.noise2selffgr import noise2self_fgr
denoised_image = noise2self_fgr(noisy_image)
Expand Down

0 comments on commit a0b14e8

Please sign in to comment.