-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
geramanisn
committed
Aug 1, 2023
1 parent
4b89422
commit 79ef41b
Showing
8 changed files
with
31 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
opencv-python==4.7.0.72 | ||
numpy==1.24.2 | ||
matplotlib==3.7.1 | ||
pyqt5==5.15.9 | ||
pytest==7.3.0 | ||
coverage==7.2.3 | ||
pylint==2.17.2 | ||
mypy==1.2.0 | ||
opencv-python==4.8.0.74 | ||
numpy==1.25.2 | ||
matplotlib==3.7.2 | ||
pytest==7.4.0 | ||
coverage==7.2.7 | ||
pylint==2.17.5 | ||
mypy==1.4.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
from denoising_inpainting_lbp import image_damager | ||
from denoising_inpainting_lbp import denoising_inpainting | ||
|
||
image_damager.damage_image('images/boat.pnp', 0, 0.1) | ||
denoising_inpainting.denoise_inpaint('images/house-damaged.png', | ||
'images/house-mask.png', | ||
1, | ||
5, | ||
37580519.6) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
from setuptools import setup | ||
|
||
setup(name='denoising_inpainting_lbp', | ||
version='0.1.0', | ||
version='1.0.0', | ||
packages=['denoising_inpainting_lbp'], | ||
author='Nick Geramanis', | ||
author_email='[email protected]', | ||
description=('Loopy Belief Propagation algorithm ' | ||
'for denoising and inpainting greyscale images'), | ||
url='https://github.com/NickGeramanis/denoising-inpainting-lbp', | ||
license='GPLV3', | ||
python_requires='==3.10.10', | ||
install_requires=['opencv-python==4.7.0.72', | ||
'numpy==1.24.2', | ||
'matplotlib==3.7.1', | ||
'pyqt5==5.15.9']) | ||
python_requires='==3.11.3', | ||
install_requires=['opencv-python==4.8.0.74', | ||
'numpy==1.25.2', | ||
'matplotlib==3.7.2']) |