├── .gitignore ├── .gitignore~ ├── README.md ├── deflectometry.m ├── dither.m ├── fringe_gen.py ├── imcrop2.m ├── load_rescale.m ├── response_map.m ├── surface_reconstruction.m └── take_images.py /.gitignore: -------------------------------------------------------------------------------- 1 | images/* 2 | *~ 3 | output.png 4 | -------------------------------------------------------------------------------- /.gitignore~: -------------------------------------------------------------------------------- 1 | images/ 2 | *~ 3 | output.png 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomcatling/deflectometry/HEAD/README.md -------------------------------------------------------------------------------- /deflectometry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomcatling/deflectometry/HEAD/deflectometry.m -------------------------------------------------------------------------------- /dither.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomcatling/deflectometry/HEAD/dither.m -------------------------------------------------------------------------------- /fringe_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomcatling/deflectometry/HEAD/fringe_gen.py -------------------------------------------------------------------------------- /imcrop2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomcatling/deflectometry/HEAD/imcrop2.m -------------------------------------------------------------------------------- /load_rescale.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomcatling/deflectometry/HEAD/load_rescale.m -------------------------------------------------------------------------------- /response_map.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomcatling/deflectometry/HEAD/response_map.m -------------------------------------------------------------------------------- /surface_reconstruction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomcatling/deflectometry/HEAD/surface_reconstruction.m -------------------------------------------------------------------------------- /take_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomcatling/deflectometry/HEAD/take_images.py --------------------------------------------------------------------------------