├── .gitattributes ├── .gitignore ├── README.md ├── evaluation ├── evaluation-tabula.py └── evaluation.py ├── examples ├── csv prediction │ ├── 15664-Table1-1.csv │ ├── 15664-Table2-1.csv │ ├── 15664-Table3-1.csv │ ├── 15665-Table2-1.csv │ ├── 15665-Table3-1.csv │ ├── 15999-Table1-1.csv │ ├── 15999-Table2-1.csv │ └── 15999-Table3-1.csv ├── original │ ├── 15664-Table1-1.png │ ├── 15664-Table2-1.png │ ├── 15664-Table3-1.png │ ├── 15665-Table2-1.png │ ├── 15665-Table3-1.png │ ├── 15999-Table1-1.png │ ├── 15999-Table2-1.png │ └── 15999-Table3-1.png └── prediction │ ├── 15664-Table1-1.png │ ├── 15664-Table2-1.png │ ├── 15664-Table3-1.png │ ├── 15665-Table2-1.png │ ├── 15665-Table3-1.png │ ├── 15999-Table1-1.png │ ├── 15999-Table2-1.png │ └── 15999-Table3-1.png ├── models ├── pix2pix-model │ ├── 50_net_D.pth │ └── 50_net_G.pth └── segment-model │ ├── model.ckpt.data-00000-of-00001 │ ├── model.ckpt.index │ └── model.ckpt.meta ├── pipeline ├── batch-own.py ├── batch-tabula-papers.py ├── batch-tabula.py ├── batch.py ├── json2csv.py ├── json2png.py ├── options.py ├── pad.py ├── pdffigures2.jar ├── pipeline.job ├── pix2pixHD │ ├── LICENSE.txt │ ├── README.md │ ├── _config.yml │ ├── data │ │ ├── __init__.py │ │ ├── aligned_dataset.py │ │ ├── aligned_dataset_predict.py │ │ ├── base_data_loader.py │ │ ├── base_dataset.py │ │ ├── custom_dataset_data_loader.py │ │ ├── data_loader.py │ │ └── image_folder.py │ ├── encode_features.py │ ├── models │ │ ├── __init__.py │ │ ├── base_model.py │ │ ├── models.py │ │ ├── networks.py │ │ ├── pix2pixHD_model.py │ │ └── ui_model.py │ ├── options │ │ ├── __init__.py │ │ ├── base_options.py │ │ ├── predict_options.py │ │ ├── test_options.py │ │ └── train_options.py │ ├── precompute_feature_maps.py │ ├── predict.py │ ├── run_engine.py │ ├── scripts │ │ ├── predict.sh │ │ ├── test_1024p.sh │ │ ├── test_1024p_feat.sh │ │ ├── test_512p.sh │ │ ├── test_512p_feat.sh │ │ ├── train_1024p_12G.sh │ │ ├── train_1024p_24G.sh │ │ ├── train_1024p_feat_12G.sh │ │ ├── train_1024p_feat_24G.sh │ │ ├── train_512p.sh │ │ ├── train_512p_feat.sh │ │ ├── train_512p_fp16.sh │ │ ├── train_512p_fp16_multigpu.sh │ │ └── train_512p_multigpu.sh │ ├── test.py │ ├── train.py │ └── util │ │ ├── __init__.py │ │ ├── html.py │ │ ├── image_pool.py │ │ ├── util.py │ │ └── visualizer.py ├── pixpred.sh ├── rulers.py ├── segmentation │ ├── builders │ │ ├── __init__.py │ │ ├── frontend_builder.py │ │ └── model_builder.py │ ├── bulk_predict.py │ ├── class_dict.csv │ ├── frontends │ │ ├── __init__.py │ │ ├── conv_blocks.py │ │ ├── inception_utils.py │ │ ├── inception_v4.py │ │ ├── mobilenet_base.py │ │ ├── mobilenet_v2.py │ │ ├── resnet_utils.py │ │ ├── resnet_v1.py │ │ ├── resnet_v2.py │ │ └── se_resnext.py │ ├── gen-tables │ │ └── class_dict.csv │ ├── models │ │ ├── AdapNet.py │ │ ├── BiSeNet.py │ │ ├── DDSC.py │ │ ├── DeepLabV3.py │ │ ├── DeepLabV3_plus.py │ │ ├── DenseASPP.py │ │ ├── Encoder_Decoder.py │ │ ├── FC_DenseNet_Tiramisu.py │ │ ├── FRRN.py │ │ ├── GCN.py │ │ ├── ICNet.py │ │ ├── MobileUNet.py │ │ ├── PSPNet.py │ │ ├── RefineNet.py │ │ ├── __init__.py │ │ └── custom_model.py │ ├── predict.py │ ├── test.py │ ├── train.py │ └── utils │ │ ├── __init__.py │ │ ├── get_pretrained_checkpoints.py │ │ ├── helpers.py │ │ └── utils.py ├── segpred.sh ├── tabulaOptions.py ├── tabulaOptions.pyc ├── test.py ├── textboxtract.py └── utils.py ├── requirements.txt └── tablegenerator ├── README.md ├── multirow-transform.py ├── pad.py ├── table.py ├── tablegen.py ├── tabletypes.json ├── texgen.py ├── texput.log └── textboxtract.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/README.md -------------------------------------------------------------------------------- /evaluation/evaluation-tabula.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/evaluation/evaluation-tabula.py -------------------------------------------------------------------------------- /evaluation/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/evaluation/evaluation.py -------------------------------------------------------------------------------- /examples/csv prediction/15664-Table1-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/examples/csv prediction/15664-Table1-1.csv -------------------------------------------------------------------------------- /examples/csv prediction/15664-Table2-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/examples/csv prediction/15664-Table2-1.csv -------------------------------------------------------------------------------- /examples/csv prediction/15664-Table3-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/examples/csv prediction/15664-Table3-1.csv -------------------------------------------------------------------------------- /examples/csv prediction/15665-Table2-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/examples/csv prediction/15665-Table2-1.csv -------------------------------------------------------------------------------- /examples/csv prediction/15665-Table3-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/examples/csv prediction/15665-Table3-1.csv -------------------------------------------------------------------------------- /examples/csv prediction/15999-Table1-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/examples/csv prediction/15999-Table1-1.csv -------------------------------------------------------------------------------- /examples/csv prediction/15999-Table2-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/examples/csv prediction/15999-Table2-1.csv -------------------------------------------------------------------------------- /examples/csv prediction/15999-Table3-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/examples/csv prediction/15999-Table3-1.csv -------------------------------------------------------------------------------- /examples/original/15664-Table1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/examples/original/15664-Table1-1.png -------------------------------------------------------------------------------- /examples/original/15664-Table2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/examples/original/15664-Table2-1.png -------------------------------------------------------------------------------- /examples/original/15664-Table3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/examples/original/15664-Table3-1.png -------------------------------------------------------------------------------- /examples/original/15665-Table2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/examples/original/15665-Table2-1.png -------------------------------------------------------------------------------- /examples/original/15665-Table3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/examples/original/15665-Table3-1.png -------------------------------------------------------------------------------- /examples/original/15999-Table1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/examples/original/15999-Table1-1.png -------------------------------------------------------------------------------- /examples/original/15999-Table2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/examples/original/15999-Table2-1.png -------------------------------------------------------------------------------- /examples/original/15999-Table3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/examples/original/15999-Table3-1.png -------------------------------------------------------------------------------- /examples/prediction/15664-Table1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/examples/prediction/15664-Table1-1.png -------------------------------------------------------------------------------- /examples/prediction/15664-Table2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/examples/prediction/15664-Table2-1.png -------------------------------------------------------------------------------- /examples/prediction/15664-Table3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/examples/prediction/15664-Table3-1.png -------------------------------------------------------------------------------- /examples/prediction/15665-Table2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/examples/prediction/15665-Table2-1.png -------------------------------------------------------------------------------- /examples/prediction/15665-Table3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/examples/prediction/15665-Table3-1.png -------------------------------------------------------------------------------- /examples/prediction/15999-Table1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/examples/prediction/15999-Table1-1.png -------------------------------------------------------------------------------- /examples/prediction/15999-Table2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/examples/prediction/15999-Table2-1.png -------------------------------------------------------------------------------- /examples/prediction/15999-Table3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/examples/prediction/15999-Table3-1.png -------------------------------------------------------------------------------- /models/pix2pix-model/50_net_D.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/models/pix2pix-model/50_net_D.pth -------------------------------------------------------------------------------- /models/pix2pix-model/50_net_G.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/models/pix2pix-model/50_net_G.pth -------------------------------------------------------------------------------- /models/segment-model/model.ckpt.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/models/segment-model/model.ckpt.data-00000-of-00001 -------------------------------------------------------------------------------- /models/segment-model/model.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/models/segment-model/model.ckpt.index -------------------------------------------------------------------------------- /models/segment-model/model.ckpt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/models/segment-model/model.ckpt.meta -------------------------------------------------------------------------------- /pipeline/batch-own.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/batch-own.py -------------------------------------------------------------------------------- /pipeline/batch-tabula-papers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/batch-tabula-papers.py -------------------------------------------------------------------------------- /pipeline/batch-tabula.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/batch-tabula.py -------------------------------------------------------------------------------- /pipeline/batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/batch.py -------------------------------------------------------------------------------- /pipeline/json2csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/json2csv.py -------------------------------------------------------------------------------- /pipeline/json2png.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/json2png.py -------------------------------------------------------------------------------- /pipeline/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/options.py -------------------------------------------------------------------------------- /pipeline/pad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pad.py -------------------------------------------------------------------------------- /pipeline/pdffigures2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pdffigures2.jar -------------------------------------------------------------------------------- /pipeline/pipeline.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pipeline.job -------------------------------------------------------------------------------- /pipeline/pix2pixHD/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/LICENSE.txt -------------------------------------------------------------------------------- /pipeline/pix2pixHD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/README.md -------------------------------------------------------------------------------- /pipeline/pix2pixHD/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/_config.yml -------------------------------------------------------------------------------- /pipeline/pix2pixHD/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pipeline/pix2pixHD/data/aligned_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/data/aligned_dataset.py -------------------------------------------------------------------------------- /pipeline/pix2pixHD/data/aligned_dataset_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/data/aligned_dataset_predict.py -------------------------------------------------------------------------------- /pipeline/pix2pixHD/data/base_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/data/base_data_loader.py -------------------------------------------------------------------------------- /pipeline/pix2pixHD/data/base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/data/base_dataset.py -------------------------------------------------------------------------------- /pipeline/pix2pixHD/data/custom_dataset_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/data/custom_dataset_data_loader.py -------------------------------------------------------------------------------- /pipeline/pix2pixHD/data/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/data/data_loader.py -------------------------------------------------------------------------------- /pipeline/pix2pixHD/data/image_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/data/image_folder.py -------------------------------------------------------------------------------- /pipeline/pix2pixHD/encode_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/encode_features.py -------------------------------------------------------------------------------- /pipeline/pix2pixHD/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pipeline/pix2pixHD/models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/models/base_model.py -------------------------------------------------------------------------------- /pipeline/pix2pixHD/models/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/models/models.py -------------------------------------------------------------------------------- /pipeline/pix2pixHD/models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/models/networks.py -------------------------------------------------------------------------------- /pipeline/pix2pixHD/models/pix2pixHD_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/models/pix2pixHD_model.py -------------------------------------------------------------------------------- /pipeline/pix2pixHD/models/ui_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/models/ui_model.py -------------------------------------------------------------------------------- /pipeline/pix2pixHD/options/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pipeline/pix2pixHD/options/base_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/options/base_options.py -------------------------------------------------------------------------------- /pipeline/pix2pixHD/options/predict_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/options/predict_options.py -------------------------------------------------------------------------------- /pipeline/pix2pixHD/options/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/options/test_options.py -------------------------------------------------------------------------------- /pipeline/pix2pixHD/options/train_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/options/train_options.py -------------------------------------------------------------------------------- /pipeline/pix2pixHD/precompute_feature_maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/precompute_feature_maps.py -------------------------------------------------------------------------------- /pipeline/pix2pixHD/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/predict.py -------------------------------------------------------------------------------- /pipeline/pix2pixHD/run_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/run_engine.py -------------------------------------------------------------------------------- /pipeline/pix2pixHD/scripts/predict.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/scripts/predict.sh -------------------------------------------------------------------------------- /pipeline/pix2pixHD/scripts/test_1024p.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/scripts/test_1024p.sh -------------------------------------------------------------------------------- /pipeline/pix2pixHD/scripts/test_1024p_feat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/scripts/test_1024p_feat.sh -------------------------------------------------------------------------------- /pipeline/pix2pixHD/scripts/test_512p.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/scripts/test_512p.sh -------------------------------------------------------------------------------- /pipeline/pix2pixHD/scripts/test_512p_feat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/scripts/test_512p_feat.sh -------------------------------------------------------------------------------- /pipeline/pix2pixHD/scripts/train_1024p_12G.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/scripts/train_1024p_12G.sh -------------------------------------------------------------------------------- /pipeline/pix2pixHD/scripts/train_1024p_24G.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/scripts/train_1024p_24G.sh -------------------------------------------------------------------------------- /pipeline/pix2pixHD/scripts/train_1024p_feat_12G.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/scripts/train_1024p_feat_12G.sh -------------------------------------------------------------------------------- /pipeline/pix2pixHD/scripts/train_1024p_feat_24G.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/scripts/train_1024p_feat_24G.sh -------------------------------------------------------------------------------- /pipeline/pix2pixHD/scripts/train_512p.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/scripts/train_512p.sh -------------------------------------------------------------------------------- /pipeline/pix2pixHD/scripts/train_512p_feat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/scripts/train_512p_feat.sh -------------------------------------------------------------------------------- /pipeline/pix2pixHD/scripts/train_512p_fp16.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/scripts/train_512p_fp16.sh -------------------------------------------------------------------------------- /pipeline/pix2pixHD/scripts/train_512p_fp16_multigpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/scripts/train_512p_fp16_multigpu.sh -------------------------------------------------------------------------------- /pipeline/pix2pixHD/scripts/train_512p_multigpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/scripts/train_512p_multigpu.sh -------------------------------------------------------------------------------- /pipeline/pix2pixHD/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/test.py -------------------------------------------------------------------------------- /pipeline/pix2pixHD/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/train.py -------------------------------------------------------------------------------- /pipeline/pix2pixHD/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pipeline/pix2pixHD/util/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/util/html.py -------------------------------------------------------------------------------- /pipeline/pix2pixHD/util/image_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/util/image_pool.py -------------------------------------------------------------------------------- /pipeline/pix2pixHD/util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/util/util.py -------------------------------------------------------------------------------- /pipeline/pix2pixHD/util/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pix2pixHD/util/visualizer.py -------------------------------------------------------------------------------- /pipeline/pixpred.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/pixpred.sh -------------------------------------------------------------------------------- /pipeline/rulers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/rulers.py -------------------------------------------------------------------------------- /pipeline/segmentation/builders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pipeline/segmentation/builders/frontend_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/builders/frontend_builder.py -------------------------------------------------------------------------------- /pipeline/segmentation/builders/model_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/builders/model_builder.py -------------------------------------------------------------------------------- /pipeline/segmentation/bulk_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/bulk_predict.py -------------------------------------------------------------------------------- /pipeline/segmentation/class_dict.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/class_dict.csv -------------------------------------------------------------------------------- /pipeline/segmentation/frontends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pipeline/segmentation/frontends/conv_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/frontends/conv_blocks.py -------------------------------------------------------------------------------- /pipeline/segmentation/frontends/inception_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/frontends/inception_utils.py -------------------------------------------------------------------------------- /pipeline/segmentation/frontends/inception_v4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/frontends/inception_v4.py -------------------------------------------------------------------------------- /pipeline/segmentation/frontends/mobilenet_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/frontends/mobilenet_base.py -------------------------------------------------------------------------------- /pipeline/segmentation/frontends/mobilenet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/frontends/mobilenet_v2.py -------------------------------------------------------------------------------- /pipeline/segmentation/frontends/resnet_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/frontends/resnet_utils.py -------------------------------------------------------------------------------- /pipeline/segmentation/frontends/resnet_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/frontends/resnet_v1.py -------------------------------------------------------------------------------- /pipeline/segmentation/frontends/resnet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/frontends/resnet_v2.py -------------------------------------------------------------------------------- /pipeline/segmentation/frontends/se_resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/frontends/se_resnext.py -------------------------------------------------------------------------------- /pipeline/segmentation/gen-tables/class_dict.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/gen-tables/class_dict.csv -------------------------------------------------------------------------------- /pipeline/segmentation/models/AdapNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/models/AdapNet.py -------------------------------------------------------------------------------- /pipeline/segmentation/models/BiSeNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/models/BiSeNet.py -------------------------------------------------------------------------------- /pipeline/segmentation/models/DDSC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/models/DDSC.py -------------------------------------------------------------------------------- /pipeline/segmentation/models/DeepLabV3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/models/DeepLabV3.py -------------------------------------------------------------------------------- /pipeline/segmentation/models/DeepLabV3_plus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/models/DeepLabV3_plus.py -------------------------------------------------------------------------------- /pipeline/segmentation/models/DenseASPP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/models/DenseASPP.py -------------------------------------------------------------------------------- /pipeline/segmentation/models/Encoder_Decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/models/Encoder_Decoder.py -------------------------------------------------------------------------------- /pipeline/segmentation/models/FC_DenseNet_Tiramisu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/models/FC_DenseNet_Tiramisu.py -------------------------------------------------------------------------------- /pipeline/segmentation/models/FRRN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/models/FRRN.py -------------------------------------------------------------------------------- /pipeline/segmentation/models/GCN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/models/GCN.py -------------------------------------------------------------------------------- /pipeline/segmentation/models/ICNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/models/ICNet.py -------------------------------------------------------------------------------- /pipeline/segmentation/models/MobileUNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/models/MobileUNet.py -------------------------------------------------------------------------------- /pipeline/segmentation/models/PSPNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/models/PSPNet.py -------------------------------------------------------------------------------- /pipeline/segmentation/models/RefineNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/models/RefineNet.py -------------------------------------------------------------------------------- /pipeline/segmentation/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pipeline/segmentation/models/custom_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/models/custom_model.py -------------------------------------------------------------------------------- /pipeline/segmentation/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/predict.py -------------------------------------------------------------------------------- /pipeline/segmentation/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/test.py -------------------------------------------------------------------------------- /pipeline/segmentation/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/train.py -------------------------------------------------------------------------------- /pipeline/segmentation/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pipeline/segmentation/utils/get_pretrained_checkpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/utils/get_pretrained_checkpoints.py -------------------------------------------------------------------------------- /pipeline/segmentation/utils/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/utils/helpers.py -------------------------------------------------------------------------------- /pipeline/segmentation/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segmentation/utils/utils.py -------------------------------------------------------------------------------- /pipeline/segpred.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/segpred.sh -------------------------------------------------------------------------------- /pipeline/tabulaOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/tabulaOptions.py -------------------------------------------------------------------------------- /pipeline/tabulaOptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/tabulaOptions.pyc -------------------------------------------------------------------------------- /pipeline/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/test.py -------------------------------------------------------------------------------- /pipeline/textboxtract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/textboxtract.py -------------------------------------------------------------------------------- /pipeline/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/pipeline/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/requirements.txt -------------------------------------------------------------------------------- /tablegenerator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/tablegenerator/README.md -------------------------------------------------------------------------------- /tablegenerator/multirow-transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/tablegenerator/multirow-transform.py -------------------------------------------------------------------------------- /tablegenerator/pad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/tablegenerator/pad.py -------------------------------------------------------------------------------- /tablegenerator/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/tablegenerator/table.py -------------------------------------------------------------------------------- /tablegenerator/tablegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/tablegenerator/tablegen.py -------------------------------------------------------------------------------- /tablegenerator/tabletypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/tablegenerator/tabletypes.json -------------------------------------------------------------------------------- /tablegenerator/texgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/tablegenerator/texgen.py -------------------------------------------------------------------------------- /tablegenerator/texput.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/tablegenerator/texput.log -------------------------------------------------------------------------------- /tablegenerator/textboxtract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rinkstiekema/table-structures/HEAD/tablegenerator/textboxtract.py --------------------------------------------------------------------------------