├── README.md ├── flatcam_calibdata.mat ├── matlab ├── bayer2rgb.m ├── demo.m ├── makeSeparable.m ├── raw_to_bayer.m ├── reconstruct_flatcam.m ├── simulate_flatcam.m └── simulate_flatcam.m~ ├── python ├── .idea │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ ├── python.iml │ ├── vcs.xml │ └── workspace.xml ├── __pycache__ │ └── flatcam.cpython-36.pyc ├── demo.py └── flatcam.py ├── sample_capture.png ├── test_pairs_subj1-60.txt └── test_pairs_subj61-87.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjasper/flatcam/HEAD/README.md -------------------------------------------------------------------------------- /flatcam_calibdata.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjasper/flatcam/HEAD/flatcam_calibdata.mat -------------------------------------------------------------------------------- /matlab/bayer2rgb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjasper/flatcam/HEAD/matlab/bayer2rgb.m -------------------------------------------------------------------------------- /matlab/demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjasper/flatcam/HEAD/matlab/demo.m -------------------------------------------------------------------------------- /matlab/makeSeparable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjasper/flatcam/HEAD/matlab/makeSeparable.m -------------------------------------------------------------------------------- /matlab/raw_to_bayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjasper/flatcam/HEAD/matlab/raw_to_bayer.m -------------------------------------------------------------------------------- /matlab/reconstruct_flatcam.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjasper/flatcam/HEAD/matlab/reconstruct_flatcam.m -------------------------------------------------------------------------------- /matlab/simulate_flatcam.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjasper/flatcam/HEAD/matlab/simulate_flatcam.m -------------------------------------------------------------------------------- /matlab/simulate_flatcam.m~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjasper/flatcam/HEAD/matlab/simulate_flatcam.m~ -------------------------------------------------------------------------------- /python/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjasper/flatcam/HEAD/python/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /python/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjasper/flatcam/HEAD/python/.idea/misc.xml -------------------------------------------------------------------------------- /python/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjasper/flatcam/HEAD/python/.idea/modules.xml -------------------------------------------------------------------------------- /python/.idea/python.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjasper/flatcam/HEAD/python/.idea/python.iml -------------------------------------------------------------------------------- /python/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjasper/flatcam/HEAD/python/.idea/vcs.xml -------------------------------------------------------------------------------- /python/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjasper/flatcam/HEAD/python/.idea/workspace.xml -------------------------------------------------------------------------------- /python/__pycache__/flatcam.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjasper/flatcam/HEAD/python/__pycache__/flatcam.cpython-36.pyc -------------------------------------------------------------------------------- /python/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjasper/flatcam/HEAD/python/demo.py -------------------------------------------------------------------------------- /python/flatcam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjasper/flatcam/HEAD/python/flatcam.py -------------------------------------------------------------------------------- /sample_capture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjasper/flatcam/HEAD/sample_capture.png -------------------------------------------------------------------------------- /test_pairs_subj1-60.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjasper/flatcam/HEAD/test_pairs_subj1-60.txt -------------------------------------------------------------------------------- /test_pairs_subj61-87.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjasper/flatcam/HEAD/test_pairs_subj61-87.txt --------------------------------------------------------------------------------