├── README.md ├── dist ├── project_processamento-0.0.1-py3-none-any.whl └── project_processamento-0.0.1.tar.gz ├── image_processing ├── __init__.py ├── processing │ ├── __init__.py │ ├── combination.py │ └── transformation.py └── utils │ ├── __init__.py │ ├── io.py │ └── plot.py ├── project_processamento.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt └── top_level.txt ├── requirements.txt └── setup.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mauricio8583/Pacotes_processamento_python/HEAD/README.md -------------------------------------------------------------------------------- /dist/project_processamento-0.0.1-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mauricio8583/Pacotes_processamento_python/HEAD/dist/project_processamento-0.0.1-py3-none-any.whl -------------------------------------------------------------------------------- /dist/project_processamento-0.0.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mauricio8583/Pacotes_processamento_python/HEAD/dist/project_processamento-0.0.1.tar.gz -------------------------------------------------------------------------------- /image_processing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /image_processing/processing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /image_processing/processing/combination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mauricio8583/Pacotes_processamento_python/HEAD/image_processing/processing/combination.py -------------------------------------------------------------------------------- /image_processing/processing/transformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mauricio8583/Pacotes_processamento_python/HEAD/image_processing/processing/transformation.py -------------------------------------------------------------------------------- /image_processing/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /image_processing/utils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mauricio8583/Pacotes_processamento_python/HEAD/image_processing/utils/io.py -------------------------------------------------------------------------------- /image_processing/utils/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mauricio8583/Pacotes_processamento_python/HEAD/image_processing/utils/plot.py -------------------------------------------------------------------------------- /project_processamento.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mauricio8583/Pacotes_processamento_python/HEAD/project_processamento.egg-info/PKG-INFO -------------------------------------------------------------------------------- /project_processamento.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mauricio8583/Pacotes_processamento_python/HEAD/project_processamento.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /project_processamento.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /project_processamento.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | image_processing 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mauricio8583/Pacotes_processamento_python/HEAD/setup.py --------------------------------------------------------------------------------