├── .github ├── FUNDING.yml └── workflows │ ├── draft-pdf.yml │ ├── python-publish.yml │ └── python-publish.ymlold ├── .readthedocs.yaml ├── LICENSE ├── README.md ├── dist ├── pyaesthetics-0.0.8.2-py3-none-any.whl └── pyaesthetics-0.0.8.2.tar.gz ├── docs ├── Makefile ├── _autosummary │ ├── analysis.analyze_image.rst │ ├── analysis.rst │ ├── pyaesthetics.analysis.analyze_image.rst │ └── pyaesthetics.analysis.rst ├── _build │ └── doctrees │ │ ├── _autosummary │ │ ├── analysis.analyze_image.doctree │ │ ├── analysis.doctree │ │ ├── pyaesthetics.analysis.analyze_image.doctree │ │ └── pyaesthetics.analysis.doctree │ │ ├── api.doctree │ │ ├── cakedLisa.doctree │ │ ├── environment.pickle │ │ ├── examples.doctree │ │ ├── features.doctree │ │ ├── gettingstarted.doctree │ │ ├── index.doctree │ │ └── palette.doctree ├── _templates │ ├── custom-class-template.rst │ └── custom-module-template.rst ├── api.rst ├── bookthings.rst ├── brightnessadjustment.rst ├── cakedLisa.rst ├── conf.py ├── examples.rst ├── examples │ ├── Image_Processing_Examples.png │ ├── book.jpg │ ├── book1_QTD.png │ ├── book1_bw.jpg │ ├── book2.jpg │ ├── book2_QTD.png │ ├── book2_bw.jpg │ ├── brightnessAdjustments.png │ ├── face1.png │ ├── face2.png │ ├── face3.png │ ├── face4.png │ ├── flowchart.png │ ├── guardianscreen.png │ ├── palette_140.png │ ├── palette_16.png │ ├── palette_custom.png │ ├── pyaesthetics_small.png │ ├── pyaesthetics_small_nt.png │ ├── qtdbook1.png │ ├── qtdbook2.png │ └── vs.jpg ├── features.rst ├── gettingstarted.rst ├── html │ ├── .buildinfo │ ├── _autosummary │ │ ├── analysis.analyze_image.html │ │ ├── analysis.html │ │ ├── pyaesthetics.analysis.analyze_image.html │ │ └── pyaesthetics.analysis.html │ ├── _images │ │ ├── flowchart.png │ │ ├── guardianscreen.png │ │ ├── palette.png │ │ ├── pyaesthetics.png │ │ ├── pyaesthetics_small.png │ │ └── vs.jpg │ ├── _sources │ │ ├── _autosummary │ │ │ ├── analysis.analyze_image.rst.txt │ │ │ ├── analysis.rst.txt │ │ │ ├── pyaesthetics.analysis.analyze_image.rst.txt │ │ │ └── pyaesthetics.analysis.rst.txt │ │ ├── api.rst.txt │ │ ├── cakedLisa.rst.txt │ │ ├── examples.rst.txt │ │ ├── features.rst.txt │ │ ├── gettingstarted.rst.txt │ │ ├── index.rst.txt │ │ └── palette.rst.txt │ ├── _static │ │ ├── alabaster.css │ │ ├── basic.css │ │ ├── custom.css │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── file.png │ │ ├── github-banner.svg │ │ ├── language_data.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── searchtools.js │ │ └── sphinx_highlight.js │ ├── api.html │ ├── cakedLisa.html │ ├── examples.html │ ├── features.html │ ├── genindex.html │ ├── gettingstarted.html │ ├── index.html │ ├── objects.inv │ ├── palette.html │ ├── py-modindex.html │ ├── search.html │ └── searchindex.js ├── index.rst ├── make.bat ├── palette.rst ├── pyaesthetics.png ├── pyaesthetics_small.png └── requirements.txt ├── paper ├── QTDsample.png ├── palettes.png ├── paper.bib └── paper.md ├── pyaesthetics.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt ├── not-zip-safe ├── requires.txt └── top_level.txt ├── pyaesthetics ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── analysis.cpython-310.pyc │ ├── brightness.cpython-310.pyc │ ├── colordetection.cpython-310.pyc │ ├── colorfulness.cpython-310.pyc │ ├── contrast.cpython-310.pyc │ ├── facedetection.cpython-310.pyc │ ├── linesdetection.cpython-310.pyc │ ├── quadtreedecomposition.cpython-310.pyc │ ├── saturation.cpython-310.pyc │ ├── selfsimilarity.cpython-310.pyc │ ├── spacebaseddecomposition.cpython-310.pyc │ ├── symmetry.cpython-310.pyc │ ├── utils.cpython-310.pyc │ └── visualcomplexity.cpython-310.pyc ├── analysis.py ├── brightness.py ├── colordetection.py ├── colorfulness.py ├── contrast.py ├── data │ ├── face1.png │ └── haarcascade_frontalface_default.xml ├── facedetection.py ├── linesdetection.py ├── quadtreedecomposition.py ├── saturation.py ├── selfsimilarity.py ├── spacebaseddecomposition.py ├── symmetry.py ├── utils.py └── visualcomplexity.py ├── pyproject.toml ├── requirements.txt └── tutorial ├── MonaLisaVsCakedLisa-checkpoint.ipynb └── MonaLisaVsCakedLisa.ipynb /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/draft-pdf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/.github/workflows/draft-pdf.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.ymlold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/.github/workflows/python-publish.ymlold -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/README.md -------------------------------------------------------------------------------- /dist/pyaesthetics-0.0.8.2-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/dist/pyaesthetics-0.0.8.2-py3-none-any.whl -------------------------------------------------------------------------------- /dist/pyaesthetics-0.0.8.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/dist/pyaesthetics-0.0.8.2.tar.gz -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_autosummary/analysis.analyze_image.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/_autosummary/analysis.analyze_image.rst -------------------------------------------------------------------------------- /docs/_autosummary/analysis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/_autosummary/analysis.rst -------------------------------------------------------------------------------- /docs/_autosummary/pyaesthetics.analysis.analyze_image.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/_autosummary/pyaesthetics.analysis.analyze_image.rst -------------------------------------------------------------------------------- /docs/_autosummary/pyaesthetics.analysis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/_autosummary/pyaesthetics.analysis.rst -------------------------------------------------------------------------------- /docs/_build/doctrees/_autosummary/analysis.analyze_image.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/_build/doctrees/_autosummary/analysis.analyze_image.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/_autosummary/analysis.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/_build/doctrees/_autosummary/analysis.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/_autosummary/pyaesthetics.analysis.analyze_image.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/_build/doctrees/_autosummary/pyaesthetics.analysis.analyze_image.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/_autosummary/pyaesthetics.analysis.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/_build/doctrees/_autosummary/pyaesthetics.analysis.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/api.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/_build/doctrees/api.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/cakedLisa.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/_build/doctrees/cakedLisa.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/_build/doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/_build/doctrees/examples.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/_build/doctrees/examples.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/features.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/_build/doctrees/features.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/gettingstarted.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/_build/doctrees/gettingstarted.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/_build/doctrees/index.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/palette.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/_build/doctrees/palette.doctree -------------------------------------------------------------------------------- /docs/_templates/custom-class-template.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/_templates/custom-class-template.rst -------------------------------------------------------------------------------- /docs/_templates/custom-module-template.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/_templates/custom-module-template.rst -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/bookthings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/bookthings.rst -------------------------------------------------------------------------------- /docs/brightnessadjustment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/brightnessadjustment.rst -------------------------------------------------------------------------------- /docs/cakedLisa.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/cakedLisa.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/examples.rst -------------------------------------------------------------------------------- /docs/examples/Image_Processing_Examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/examples/Image_Processing_Examples.png -------------------------------------------------------------------------------- /docs/examples/book.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/examples/book.jpg -------------------------------------------------------------------------------- /docs/examples/book1_QTD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/examples/book1_QTD.png -------------------------------------------------------------------------------- /docs/examples/book1_bw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/examples/book1_bw.jpg -------------------------------------------------------------------------------- /docs/examples/book2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/examples/book2.jpg -------------------------------------------------------------------------------- /docs/examples/book2_QTD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/examples/book2_QTD.png -------------------------------------------------------------------------------- /docs/examples/book2_bw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/examples/book2_bw.jpg -------------------------------------------------------------------------------- /docs/examples/brightnessAdjustments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/examples/brightnessAdjustments.png -------------------------------------------------------------------------------- /docs/examples/face1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/examples/face1.png -------------------------------------------------------------------------------- /docs/examples/face2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/examples/face2.png -------------------------------------------------------------------------------- /docs/examples/face3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/examples/face3.png -------------------------------------------------------------------------------- /docs/examples/face4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/examples/face4.png -------------------------------------------------------------------------------- /docs/examples/flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/examples/flowchart.png -------------------------------------------------------------------------------- /docs/examples/guardianscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/examples/guardianscreen.png -------------------------------------------------------------------------------- /docs/examples/palette_140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/examples/palette_140.png -------------------------------------------------------------------------------- /docs/examples/palette_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/examples/palette_16.png -------------------------------------------------------------------------------- /docs/examples/palette_custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/examples/palette_custom.png -------------------------------------------------------------------------------- /docs/examples/pyaesthetics_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/examples/pyaesthetics_small.png -------------------------------------------------------------------------------- /docs/examples/pyaesthetics_small_nt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/examples/pyaesthetics_small_nt.png -------------------------------------------------------------------------------- /docs/examples/qtdbook1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/examples/qtdbook1.png -------------------------------------------------------------------------------- /docs/examples/qtdbook2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/examples/qtdbook2.png -------------------------------------------------------------------------------- /docs/examples/vs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/examples/vs.jpg -------------------------------------------------------------------------------- /docs/features.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/features.rst -------------------------------------------------------------------------------- /docs/gettingstarted.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/gettingstarted.rst -------------------------------------------------------------------------------- /docs/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/.buildinfo -------------------------------------------------------------------------------- /docs/html/_autosummary/analysis.analyze_image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/_autosummary/analysis.analyze_image.html -------------------------------------------------------------------------------- /docs/html/_autosummary/analysis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/_autosummary/analysis.html -------------------------------------------------------------------------------- /docs/html/_autosummary/pyaesthetics.analysis.analyze_image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/_autosummary/pyaesthetics.analysis.analyze_image.html -------------------------------------------------------------------------------- /docs/html/_autosummary/pyaesthetics.analysis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/_autosummary/pyaesthetics.analysis.html -------------------------------------------------------------------------------- /docs/html/_images/flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/_images/flowchart.png -------------------------------------------------------------------------------- /docs/html/_images/guardianscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/_images/guardianscreen.png -------------------------------------------------------------------------------- /docs/html/_images/palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/_images/palette.png -------------------------------------------------------------------------------- /docs/html/_images/pyaesthetics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/_images/pyaesthetics.png -------------------------------------------------------------------------------- /docs/html/_images/pyaesthetics_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/_images/pyaesthetics_small.png -------------------------------------------------------------------------------- /docs/html/_images/vs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/_images/vs.jpg -------------------------------------------------------------------------------- /docs/html/_sources/_autosummary/analysis.analyze_image.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/_sources/_autosummary/analysis.analyze_image.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/_autosummary/analysis.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/_sources/_autosummary/analysis.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/_autosummary/pyaesthetics.analysis.analyze_image.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/_sources/_autosummary/pyaesthetics.analysis.analyze_image.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/_autosummary/pyaesthetics.analysis.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/_sources/_autosummary/pyaesthetics.analysis.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/api.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/_sources/api.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/cakedLisa.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/_sources/cakedLisa.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/examples.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/_sources/examples.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/features.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/_sources/features.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/gettingstarted.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/_sources/gettingstarted.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/palette.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/_sources/palette.rst.txt -------------------------------------------------------------------------------- /docs/html/_static/alabaster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/_static/alabaster.css -------------------------------------------------------------------------------- /docs/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/_static/basic.css -------------------------------------------------------------------------------- /docs/html/_static/custom.css: -------------------------------------------------------------------------------- 1 | /* This file intentionally left blank. */ 2 | -------------------------------------------------------------------------------- /docs/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/_static/doctools.js -------------------------------------------------------------------------------- /docs/html/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/_static/file.png -------------------------------------------------------------------------------- /docs/html/_static/github-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/_static/github-banner.svg -------------------------------------------------------------------------------- /docs/html/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/_static/language_data.js -------------------------------------------------------------------------------- /docs/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/_static/minus.png -------------------------------------------------------------------------------- /docs/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/_static/plus.png -------------------------------------------------------------------------------- /docs/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/_static/pygments.css -------------------------------------------------------------------------------- /docs/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/_static/searchtools.js -------------------------------------------------------------------------------- /docs/html/_static/sphinx_highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/_static/sphinx_highlight.js -------------------------------------------------------------------------------- /docs/html/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/api.html -------------------------------------------------------------------------------- /docs/html/cakedLisa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/cakedLisa.html -------------------------------------------------------------------------------- /docs/html/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/examples.html -------------------------------------------------------------------------------- /docs/html/features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/features.html -------------------------------------------------------------------------------- /docs/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/genindex.html -------------------------------------------------------------------------------- /docs/html/gettingstarted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/gettingstarted.html -------------------------------------------------------------------------------- /docs/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/index.html -------------------------------------------------------------------------------- /docs/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/objects.inv -------------------------------------------------------------------------------- /docs/html/palette.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/palette.html -------------------------------------------------------------------------------- /docs/html/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/py-modindex.html -------------------------------------------------------------------------------- /docs/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/search.html -------------------------------------------------------------------------------- /docs/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/html/searchindex.js -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/palette.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/palette.rst -------------------------------------------------------------------------------- /docs/pyaesthetics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/pyaesthetics.png -------------------------------------------------------------------------------- /docs/pyaesthetics_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/pyaesthetics_small.png -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /paper/QTDsample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/paper/QTDsample.png -------------------------------------------------------------------------------- /paper/palettes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/paper/palettes.png -------------------------------------------------------------------------------- /paper/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/paper/paper.bib -------------------------------------------------------------------------------- /paper/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/paper/paper.md -------------------------------------------------------------------------------- /pyaesthetics.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics.egg-info/PKG-INFO -------------------------------------------------------------------------------- /pyaesthetics.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /pyaesthetics.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pyaesthetics.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pyaesthetics.egg-info/requires.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics.egg-info/requires.txt -------------------------------------------------------------------------------- /pyaesthetics.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pyaesthetics 2 | -------------------------------------------------------------------------------- /pyaesthetics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics/__init__.py -------------------------------------------------------------------------------- /pyaesthetics/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /pyaesthetics/__pycache__/analysis.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics/__pycache__/analysis.cpython-310.pyc -------------------------------------------------------------------------------- /pyaesthetics/__pycache__/brightness.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics/__pycache__/brightness.cpython-310.pyc -------------------------------------------------------------------------------- /pyaesthetics/__pycache__/colordetection.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics/__pycache__/colordetection.cpython-310.pyc -------------------------------------------------------------------------------- /pyaesthetics/__pycache__/colorfulness.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics/__pycache__/colorfulness.cpython-310.pyc -------------------------------------------------------------------------------- /pyaesthetics/__pycache__/contrast.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics/__pycache__/contrast.cpython-310.pyc -------------------------------------------------------------------------------- /pyaesthetics/__pycache__/facedetection.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics/__pycache__/facedetection.cpython-310.pyc -------------------------------------------------------------------------------- /pyaesthetics/__pycache__/linesdetection.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics/__pycache__/linesdetection.cpython-310.pyc -------------------------------------------------------------------------------- /pyaesthetics/__pycache__/quadtreedecomposition.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics/__pycache__/quadtreedecomposition.cpython-310.pyc -------------------------------------------------------------------------------- /pyaesthetics/__pycache__/saturation.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics/__pycache__/saturation.cpython-310.pyc -------------------------------------------------------------------------------- /pyaesthetics/__pycache__/selfsimilarity.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics/__pycache__/selfsimilarity.cpython-310.pyc -------------------------------------------------------------------------------- /pyaesthetics/__pycache__/spacebaseddecomposition.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics/__pycache__/spacebaseddecomposition.cpython-310.pyc -------------------------------------------------------------------------------- /pyaesthetics/__pycache__/symmetry.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics/__pycache__/symmetry.cpython-310.pyc -------------------------------------------------------------------------------- /pyaesthetics/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /pyaesthetics/__pycache__/visualcomplexity.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics/__pycache__/visualcomplexity.cpython-310.pyc -------------------------------------------------------------------------------- /pyaesthetics/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics/analysis.py -------------------------------------------------------------------------------- /pyaesthetics/brightness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics/brightness.py -------------------------------------------------------------------------------- /pyaesthetics/colordetection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics/colordetection.py -------------------------------------------------------------------------------- /pyaesthetics/colorfulness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics/colorfulness.py -------------------------------------------------------------------------------- /pyaesthetics/contrast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics/contrast.py -------------------------------------------------------------------------------- /pyaesthetics/data/face1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics/data/face1.png -------------------------------------------------------------------------------- /pyaesthetics/data/haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics/data/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /pyaesthetics/facedetection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics/facedetection.py -------------------------------------------------------------------------------- /pyaesthetics/linesdetection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics/linesdetection.py -------------------------------------------------------------------------------- /pyaesthetics/quadtreedecomposition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics/quadtreedecomposition.py -------------------------------------------------------------------------------- /pyaesthetics/saturation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics/saturation.py -------------------------------------------------------------------------------- /pyaesthetics/selfsimilarity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics/selfsimilarity.py -------------------------------------------------------------------------------- /pyaesthetics/spacebaseddecomposition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics/spacebaseddecomposition.py -------------------------------------------------------------------------------- /pyaesthetics/symmetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics/symmetry.py -------------------------------------------------------------------------------- /pyaesthetics/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics/utils.py -------------------------------------------------------------------------------- /pyaesthetics/visualcomplexity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyaesthetics/visualcomplexity.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/requirements.txt -------------------------------------------------------------------------------- /tutorial/MonaLisaVsCakedLisa-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/tutorial/MonaLisaVsCakedLisa-checkpoint.ipynb -------------------------------------------------------------------------------- /tutorial/MonaLisaVsCakedLisa.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabrock94/pyaesthetics/HEAD/tutorial/MonaLisaVsCakedLisa.ipynb --------------------------------------------------------------------------------