├── LICENSE ├── README.md ├── data ├── x_0_0.png └── y_0_0.png ├── datagen.py ├── figs └── overview.png ├── input ├── demo1.png └── demo2.png ├── model1.py ├── model2.py ├── model3.py ├── model4.py ├── model5.py ├── output ├── demo1.png └── demo2.png ├── predict.py ├── predict_block.py ├── pytorch_model1.py ├── pytorch_model2.py ├── pytorch_predict.py ├── pytorch_predict_block.py └── weight └── .gitkeep /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hepesu/LineNormalizer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hepesu/LineNormalizer/HEAD/README.md -------------------------------------------------------------------------------- /data/x_0_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hepesu/LineNormalizer/HEAD/data/x_0_0.png -------------------------------------------------------------------------------- /data/y_0_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hepesu/LineNormalizer/HEAD/data/y_0_0.png -------------------------------------------------------------------------------- /datagen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hepesu/LineNormalizer/HEAD/datagen.py -------------------------------------------------------------------------------- /figs/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hepesu/LineNormalizer/HEAD/figs/overview.png -------------------------------------------------------------------------------- /input/demo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hepesu/LineNormalizer/HEAD/input/demo1.png -------------------------------------------------------------------------------- /input/demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hepesu/LineNormalizer/HEAD/input/demo2.png -------------------------------------------------------------------------------- /model1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hepesu/LineNormalizer/HEAD/model1.py -------------------------------------------------------------------------------- /model2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hepesu/LineNormalizer/HEAD/model2.py -------------------------------------------------------------------------------- /model3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hepesu/LineNormalizer/HEAD/model3.py -------------------------------------------------------------------------------- /model4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hepesu/LineNormalizer/HEAD/model4.py -------------------------------------------------------------------------------- /model5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hepesu/LineNormalizer/HEAD/model5.py -------------------------------------------------------------------------------- /output/demo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hepesu/LineNormalizer/HEAD/output/demo1.png -------------------------------------------------------------------------------- /output/demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hepesu/LineNormalizer/HEAD/output/demo2.png -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hepesu/LineNormalizer/HEAD/predict.py -------------------------------------------------------------------------------- /predict_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hepesu/LineNormalizer/HEAD/predict_block.py -------------------------------------------------------------------------------- /pytorch_model1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hepesu/LineNormalizer/HEAD/pytorch_model1.py -------------------------------------------------------------------------------- /pytorch_model2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hepesu/LineNormalizer/HEAD/pytorch_model2.py -------------------------------------------------------------------------------- /pytorch_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hepesu/LineNormalizer/HEAD/pytorch_predict.py -------------------------------------------------------------------------------- /pytorch_predict_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hepesu/LineNormalizer/HEAD/pytorch_predict_block.py -------------------------------------------------------------------------------- /weight/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------