├── .gitattributes ├── .idea ├── .gitignore ├── cc-TreeAIBox-plugin.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE ├── README.md ├── TreeAIBox.py ├── data └── 280_T2_486.laz ├── form.ui ├── img ├── branchreconstruction.png ├── logo.png ├── woodcls_branch.png └── woodcls_stem.png ├── model_zoo.json ├── models └── woodcls_branch_tls_segformer3D_112_4cm(GPU8GB).pth └── modules ├── qsm ├── __pycache__ │ └── applyQSM.cpython-310.pyc └── applyQSM.py └── woodcls ├── __init__.py ├── __pycache__ ├── __init__.cpython-310.pyc ├── vox3DSegFormer.cpython-310.pyc └── woodCls.cpython-310.pyc ├── vox3DSegFormer.py ├── woodCls.py ├── woodcls_branch_tls_segformer3D_112_4cm(GPU8GB).json ├── woodcls_stem_tls_segformer3D_112_20cm(GPU8GB).json └── woodcls_stem_tls_segformer3D_112_4cm(GPU12GB).json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truebelief/cc-TreeAIBox-plugin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truebelief/cc-TreeAIBox-plugin/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/cc-TreeAIBox-plugin.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truebelief/cc-TreeAIBox-plugin/HEAD/.idea/cc-TreeAIBox-plugin.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truebelief/cc-TreeAIBox-plugin/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truebelief/cc-TreeAIBox-plugin/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truebelief/cc-TreeAIBox-plugin/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truebelief/cc-TreeAIBox-plugin/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truebelief/cc-TreeAIBox-plugin/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truebelief/cc-TreeAIBox-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truebelief/cc-TreeAIBox-plugin/HEAD/README.md -------------------------------------------------------------------------------- /TreeAIBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truebelief/cc-TreeAIBox-plugin/HEAD/TreeAIBox.py -------------------------------------------------------------------------------- /data/280_T2_486.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truebelief/cc-TreeAIBox-plugin/HEAD/data/280_T2_486.laz -------------------------------------------------------------------------------- /form.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truebelief/cc-TreeAIBox-plugin/HEAD/form.ui -------------------------------------------------------------------------------- /img/branchreconstruction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truebelief/cc-TreeAIBox-plugin/HEAD/img/branchreconstruction.png -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truebelief/cc-TreeAIBox-plugin/HEAD/img/logo.png -------------------------------------------------------------------------------- /img/woodcls_branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truebelief/cc-TreeAIBox-plugin/HEAD/img/woodcls_branch.png -------------------------------------------------------------------------------- /img/woodcls_stem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truebelief/cc-TreeAIBox-plugin/HEAD/img/woodcls_stem.png -------------------------------------------------------------------------------- /model_zoo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truebelief/cc-TreeAIBox-plugin/HEAD/model_zoo.json -------------------------------------------------------------------------------- /models/woodcls_branch_tls_segformer3D_112_4cm(GPU8GB).pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truebelief/cc-TreeAIBox-plugin/HEAD/models/woodcls_branch_tls_segformer3D_112_4cm(GPU8GB).pth -------------------------------------------------------------------------------- /modules/qsm/__pycache__/applyQSM.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truebelief/cc-TreeAIBox-plugin/HEAD/modules/qsm/__pycache__/applyQSM.cpython-310.pyc -------------------------------------------------------------------------------- /modules/qsm/applyQSM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truebelief/cc-TreeAIBox-plugin/HEAD/modules/qsm/applyQSM.py -------------------------------------------------------------------------------- /modules/woodcls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truebelief/cc-TreeAIBox-plugin/HEAD/modules/woodcls/__init__.py -------------------------------------------------------------------------------- /modules/woodcls/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truebelief/cc-TreeAIBox-plugin/HEAD/modules/woodcls/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /modules/woodcls/__pycache__/vox3DSegFormer.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truebelief/cc-TreeAIBox-plugin/HEAD/modules/woodcls/__pycache__/vox3DSegFormer.cpython-310.pyc -------------------------------------------------------------------------------- /modules/woodcls/__pycache__/woodCls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truebelief/cc-TreeAIBox-plugin/HEAD/modules/woodcls/__pycache__/woodCls.cpython-310.pyc -------------------------------------------------------------------------------- /modules/woodcls/vox3DSegFormer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truebelief/cc-TreeAIBox-plugin/HEAD/modules/woodcls/vox3DSegFormer.py -------------------------------------------------------------------------------- /modules/woodcls/woodCls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truebelief/cc-TreeAIBox-plugin/HEAD/modules/woodcls/woodCls.py -------------------------------------------------------------------------------- /modules/woodcls/woodcls_branch_tls_segformer3D_112_4cm(GPU8GB).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truebelief/cc-TreeAIBox-plugin/HEAD/modules/woodcls/woodcls_branch_tls_segformer3D_112_4cm(GPU8GB).json -------------------------------------------------------------------------------- /modules/woodcls/woodcls_stem_tls_segformer3D_112_20cm(GPU8GB).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truebelief/cc-TreeAIBox-plugin/HEAD/modules/woodcls/woodcls_stem_tls_segformer3D_112_20cm(GPU8GB).json -------------------------------------------------------------------------------- /modules/woodcls/woodcls_stem_tls_segformer3D_112_4cm(GPU12GB).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truebelief/cc-TreeAIBox-plugin/HEAD/modules/woodcls/woodcls_stem_tls_segformer3D_112_4cm(GPU12GB).json --------------------------------------------------------------------------------