├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── doc ├── final_trees.jpg ├── final_workflow.png └── watershed_workflow.png ├── run.bat ├── settings └── settings.json ├── setup.py ├── treedetection.py └── treedetection ├── __init__.py ├── assignments.py ├── exporter.py ├── processing.py ├── settings.py └── tiles.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrian-kuhn/tree-detection/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # v1.0.0 2 | - Initial version -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrian-kuhn/tree-detection/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrian-kuhn/tree-detection/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrian-kuhn/tree-detection/HEAD/README.md -------------------------------------------------------------------------------- /doc/final_trees.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrian-kuhn/tree-detection/HEAD/doc/final_trees.jpg -------------------------------------------------------------------------------- /doc/final_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrian-kuhn/tree-detection/HEAD/doc/final_workflow.png -------------------------------------------------------------------------------- /doc/watershed_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrian-kuhn/tree-detection/HEAD/doc/watershed_workflow.png -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrian-kuhn/tree-detection/HEAD/run.bat -------------------------------------------------------------------------------- /settings/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrian-kuhn/tree-detection/HEAD/settings/settings.json -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrian-kuhn/tree-detection/HEAD/setup.py -------------------------------------------------------------------------------- /treedetection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrian-kuhn/tree-detection/HEAD/treedetection.py -------------------------------------------------------------------------------- /treedetection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /treedetection/assignments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrian-kuhn/tree-detection/HEAD/treedetection/assignments.py -------------------------------------------------------------------------------- /treedetection/exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrian-kuhn/tree-detection/HEAD/treedetection/exporter.py -------------------------------------------------------------------------------- /treedetection/processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrian-kuhn/tree-detection/HEAD/treedetection/processing.py -------------------------------------------------------------------------------- /treedetection/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrian-kuhn/tree-detection/HEAD/treedetection/settings.py -------------------------------------------------------------------------------- /treedetection/tiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrian-kuhn/tree-detection/HEAD/treedetection/tiles.py --------------------------------------------------------------------------------