├── .gitignore ├── BaseStructuredForests.py ├── LICENSE ├── README.md ├── RandomForests.py ├── RobustPCA.py ├── StructuredForests.py ├── _RandomForests.pyx ├── _RandomForests.pyxbld ├── _StructuredForests.pyx ├── _random_forests.cpp ├── _random_forests.h ├── _utils.pyx ├── model └── forests │ └── forest.h5 ├── toy └── BSDS500 │ └── data │ ├── groundTruth │ ├── test │ │ ├── 16068.mat │ │ ├── 196062.mat │ │ ├── 296028.mat │ │ └── 335094.mat │ └── train │ │ ├── 12003.mat │ │ ├── 2092.mat │ │ ├── 8049.mat │ │ └── 8143.mat │ └── images │ ├── test │ ├── 16068.jpg │ ├── 196062.jpg │ ├── 296028.jpg │ └── 335094.jpg │ └── train │ ├── 12003.jpg │ ├── 2092.jpg │ ├── 8049.jpg │ └── 8143.jpg └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtanisCV/StructuredForests/HEAD/.gitignore -------------------------------------------------------------------------------- /BaseStructuredForests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtanisCV/StructuredForests/HEAD/BaseStructuredForests.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtanisCV/StructuredForests/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtanisCV/StructuredForests/HEAD/README.md -------------------------------------------------------------------------------- /RandomForests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtanisCV/StructuredForests/HEAD/RandomForests.py -------------------------------------------------------------------------------- /RobustPCA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtanisCV/StructuredForests/HEAD/RobustPCA.py -------------------------------------------------------------------------------- /StructuredForests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtanisCV/StructuredForests/HEAD/StructuredForests.py -------------------------------------------------------------------------------- /_RandomForests.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtanisCV/StructuredForests/HEAD/_RandomForests.pyx -------------------------------------------------------------------------------- /_RandomForests.pyxbld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtanisCV/StructuredForests/HEAD/_RandomForests.pyxbld -------------------------------------------------------------------------------- /_StructuredForests.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtanisCV/StructuredForests/HEAD/_StructuredForests.pyx -------------------------------------------------------------------------------- /_random_forests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtanisCV/StructuredForests/HEAD/_random_forests.cpp -------------------------------------------------------------------------------- /_random_forests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtanisCV/StructuredForests/HEAD/_random_forests.h -------------------------------------------------------------------------------- /_utils.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtanisCV/StructuredForests/HEAD/_utils.pyx -------------------------------------------------------------------------------- /model/forests/forest.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtanisCV/StructuredForests/HEAD/model/forests/forest.h5 -------------------------------------------------------------------------------- /toy/BSDS500/data/groundTruth/test/16068.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtanisCV/StructuredForests/HEAD/toy/BSDS500/data/groundTruth/test/16068.mat -------------------------------------------------------------------------------- /toy/BSDS500/data/groundTruth/test/196062.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtanisCV/StructuredForests/HEAD/toy/BSDS500/data/groundTruth/test/196062.mat -------------------------------------------------------------------------------- /toy/BSDS500/data/groundTruth/test/296028.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtanisCV/StructuredForests/HEAD/toy/BSDS500/data/groundTruth/test/296028.mat -------------------------------------------------------------------------------- /toy/BSDS500/data/groundTruth/test/335094.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtanisCV/StructuredForests/HEAD/toy/BSDS500/data/groundTruth/test/335094.mat -------------------------------------------------------------------------------- /toy/BSDS500/data/groundTruth/train/12003.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtanisCV/StructuredForests/HEAD/toy/BSDS500/data/groundTruth/train/12003.mat -------------------------------------------------------------------------------- /toy/BSDS500/data/groundTruth/train/2092.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtanisCV/StructuredForests/HEAD/toy/BSDS500/data/groundTruth/train/2092.mat -------------------------------------------------------------------------------- /toy/BSDS500/data/groundTruth/train/8049.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtanisCV/StructuredForests/HEAD/toy/BSDS500/data/groundTruth/train/8049.mat -------------------------------------------------------------------------------- /toy/BSDS500/data/groundTruth/train/8143.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtanisCV/StructuredForests/HEAD/toy/BSDS500/data/groundTruth/train/8143.mat -------------------------------------------------------------------------------- /toy/BSDS500/data/images/test/16068.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtanisCV/StructuredForests/HEAD/toy/BSDS500/data/images/test/16068.jpg -------------------------------------------------------------------------------- /toy/BSDS500/data/images/test/196062.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtanisCV/StructuredForests/HEAD/toy/BSDS500/data/images/test/196062.jpg -------------------------------------------------------------------------------- /toy/BSDS500/data/images/test/296028.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtanisCV/StructuredForests/HEAD/toy/BSDS500/data/images/test/296028.jpg -------------------------------------------------------------------------------- /toy/BSDS500/data/images/test/335094.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtanisCV/StructuredForests/HEAD/toy/BSDS500/data/images/test/335094.jpg -------------------------------------------------------------------------------- /toy/BSDS500/data/images/train/12003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtanisCV/StructuredForests/HEAD/toy/BSDS500/data/images/train/12003.jpg -------------------------------------------------------------------------------- /toy/BSDS500/data/images/train/2092.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtanisCV/StructuredForests/HEAD/toy/BSDS500/data/images/train/2092.jpg -------------------------------------------------------------------------------- /toy/BSDS500/data/images/train/8049.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtanisCV/StructuredForests/HEAD/toy/BSDS500/data/images/train/8049.jpg -------------------------------------------------------------------------------- /toy/BSDS500/data/images/train/8143.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtanisCV/StructuredForests/HEAD/toy/BSDS500/data/images/train/8143.jpg -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtanisCV/StructuredForests/HEAD/utils.py --------------------------------------------------------------------------------