├── .gitignore ├── CLI.jl ├── ImageReconstructor.jl ├── LICENSE.md ├── Project.toml ├── README.md ├── ReconstructionArguments.jl ├── ResourceManager.jl ├── StaticInterface.jl ├── Stencil.jl ├── header.png ├── result.png ├── shrek.jpg └── stencils ├── blue.bmp ├── cat.png ├── desktop.ini ├── dog.png ├── green.png ├── grey.jpg ├── hat.png ├── white.bmp └── yellow.png /.gitignore: -------------------------------------------------------------------------------- 1 | Manifest.toml 2 | -------------------------------------------------------------------------------- /CLI.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STulling/ImageReconstructor/HEAD/CLI.jl -------------------------------------------------------------------------------- /ImageReconstructor.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STulling/ImageReconstructor/HEAD/ImageReconstructor.jl -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STulling/ImageReconstructor/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STulling/ImageReconstructor/HEAD/Project.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STulling/ImageReconstructor/HEAD/README.md -------------------------------------------------------------------------------- /ReconstructionArguments.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STulling/ImageReconstructor/HEAD/ReconstructionArguments.jl -------------------------------------------------------------------------------- /ResourceManager.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STulling/ImageReconstructor/HEAD/ResourceManager.jl -------------------------------------------------------------------------------- /StaticInterface.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STulling/ImageReconstructor/HEAD/StaticInterface.jl -------------------------------------------------------------------------------- /Stencil.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STulling/ImageReconstructor/HEAD/Stencil.jl -------------------------------------------------------------------------------- /header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STulling/ImageReconstructor/HEAD/header.png -------------------------------------------------------------------------------- /result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STulling/ImageReconstructor/HEAD/result.png -------------------------------------------------------------------------------- /shrek.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STulling/ImageReconstructor/HEAD/shrek.jpg -------------------------------------------------------------------------------- /stencils/blue.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STulling/ImageReconstructor/HEAD/stencils/blue.bmp -------------------------------------------------------------------------------- /stencils/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STulling/ImageReconstructor/HEAD/stencils/cat.png -------------------------------------------------------------------------------- /stencils/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STulling/ImageReconstructor/HEAD/stencils/desktop.ini -------------------------------------------------------------------------------- /stencils/dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STulling/ImageReconstructor/HEAD/stencils/dog.png -------------------------------------------------------------------------------- /stencils/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STulling/ImageReconstructor/HEAD/stencils/green.png -------------------------------------------------------------------------------- /stencils/grey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STulling/ImageReconstructor/HEAD/stencils/grey.jpg -------------------------------------------------------------------------------- /stencils/hat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STulling/ImageReconstructor/HEAD/stencils/hat.png -------------------------------------------------------------------------------- /stencils/white.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STulling/ImageReconstructor/HEAD/stencils/white.bmp -------------------------------------------------------------------------------- /stencils/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STulling/ImageReconstructor/HEAD/stencils/yellow.png --------------------------------------------------------------------------------