├── .gitignore ├── LICENSE ├── README.md ├── generate.py ├── input └── example.png ├── output ├── example_Displacement.png ├── example_Normal.png └── example_Roughness.png └── utils ├── architecture ├── architecture.py └── block.py ├── imgops.py └── models ├── 1x_FrankenMapGenerator-CX-Lite_215000_G.pth └── 1x_NormalMapGenerator-CX-Lite_200000_G.pth /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyballentine/Material-Map-Generator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyballentine/Material-Map-Generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyballentine/Material-Map-Generator/HEAD/README.md -------------------------------------------------------------------------------- /generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyballentine/Material-Map-Generator/HEAD/generate.py -------------------------------------------------------------------------------- /input/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyballentine/Material-Map-Generator/HEAD/input/example.png -------------------------------------------------------------------------------- /output/example_Displacement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyballentine/Material-Map-Generator/HEAD/output/example_Displacement.png -------------------------------------------------------------------------------- /output/example_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyballentine/Material-Map-Generator/HEAD/output/example_Normal.png -------------------------------------------------------------------------------- /output/example_Roughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyballentine/Material-Map-Generator/HEAD/output/example_Roughness.png -------------------------------------------------------------------------------- /utils/architecture/architecture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyballentine/Material-Map-Generator/HEAD/utils/architecture/architecture.py -------------------------------------------------------------------------------- /utils/architecture/block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyballentine/Material-Map-Generator/HEAD/utils/architecture/block.py -------------------------------------------------------------------------------- /utils/imgops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyballentine/Material-Map-Generator/HEAD/utils/imgops.py -------------------------------------------------------------------------------- /utils/models/1x_FrankenMapGenerator-CX-Lite_215000_G.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyballentine/Material-Map-Generator/HEAD/utils/models/1x_FrankenMapGenerator-CX-Lite_215000_G.pth -------------------------------------------------------------------------------- /utils/models/1x_NormalMapGenerator-CX-Lite_200000_G.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyballentine/Material-Map-Generator/HEAD/utils/models/1x_NormalMapGenerator-CX-Lite_200000_G.pth --------------------------------------------------------------------------------