├── CITATION.cff ├── LICENSE ├── Load tiff.ipynb ├── README.MD ├── Run compactness.ipynb ├── codemeta.json ├── pydescriptors ├── __init__.py ├── compactness.py ├── cubeness.py ├── helpers.py └── moments.py ├── setup.py └── tests ├── __init__.py ├── test_cubeness.py └── test_moments.py /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-martinez/pydescriptors/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-martinez/pydescriptors/HEAD/LICENSE -------------------------------------------------------------------------------- /Load tiff.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-martinez/pydescriptors/HEAD/Load tiff.ipynb -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-martinez/pydescriptors/HEAD/README.MD -------------------------------------------------------------------------------- /Run compactness.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-martinez/pydescriptors/HEAD/Run compactness.ipynb -------------------------------------------------------------------------------- /codemeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-martinez/pydescriptors/HEAD/codemeta.json -------------------------------------------------------------------------------- /pydescriptors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-martinez/pydescriptors/HEAD/pydescriptors/__init__.py -------------------------------------------------------------------------------- /pydescriptors/compactness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-martinez/pydescriptors/HEAD/pydescriptors/compactness.py -------------------------------------------------------------------------------- /pydescriptors/cubeness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-martinez/pydescriptors/HEAD/pydescriptors/cubeness.py -------------------------------------------------------------------------------- /pydescriptors/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-martinez/pydescriptors/HEAD/pydescriptors/helpers.py -------------------------------------------------------------------------------- /pydescriptors/moments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-martinez/pydescriptors/HEAD/pydescriptors/moments.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-martinez/pydescriptors/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_cubeness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-martinez/pydescriptors/HEAD/tests/test_cubeness.py -------------------------------------------------------------------------------- /tests/test_moments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-martinez/pydescriptors/HEAD/tests/test_moments.py --------------------------------------------------------------------------------