├── Makefile ├── README.md ├── cam_test.cpp ├── generate_fringe.py ├── images └── setup.png ├── pattern ├── fringe1.png ├── fringe2.png └── fringe3.png ├── point_cloud.cpp ├── praesentation.odp ├── praesentation.pdf ├── slapp ├── capturedialog.cpp ├── capturedialog.h ├── capturedialog.ui ├── glpointcloud.cpp ├── glpointcloud.h ├── main.cpp ├── slapp.cpp ├── slapp.h ├── slapp.pro └── slapp.ui ├── three_step_phase_shift.cpp ├── three_step_phase_shift.h └── three_step_phase_shift_test.cpp /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreax/structured_light/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreax/structured_light/HEAD/README.md -------------------------------------------------------------------------------- /cam_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreax/structured_light/HEAD/cam_test.cpp -------------------------------------------------------------------------------- /generate_fringe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreax/structured_light/HEAD/generate_fringe.py -------------------------------------------------------------------------------- /images/setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreax/structured_light/HEAD/images/setup.png -------------------------------------------------------------------------------- /pattern/fringe1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreax/structured_light/HEAD/pattern/fringe1.png -------------------------------------------------------------------------------- /pattern/fringe2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreax/structured_light/HEAD/pattern/fringe2.png -------------------------------------------------------------------------------- /pattern/fringe3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreax/structured_light/HEAD/pattern/fringe3.png -------------------------------------------------------------------------------- /point_cloud.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreax/structured_light/HEAD/point_cloud.cpp -------------------------------------------------------------------------------- /praesentation.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreax/structured_light/HEAD/praesentation.odp -------------------------------------------------------------------------------- /praesentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreax/structured_light/HEAD/praesentation.pdf -------------------------------------------------------------------------------- /slapp/capturedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreax/structured_light/HEAD/slapp/capturedialog.cpp -------------------------------------------------------------------------------- /slapp/capturedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreax/structured_light/HEAD/slapp/capturedialog.h -------------------------------------------------------------------------------- /slapp/capturedialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreax/structured_light/HEAD/slapp/capturedialog.ui -------------------------------------------------------------------------------- /slapp/glpointcloud.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreax/structured_light/HEAD/slapp/glpointcloud.cpp -------------------------------------------------------------------------------- /slapp/glpointcloud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreax/structured_light/HEAD/slapp/glpointcloud.h -------------------------------------------------------------------------------- /slapp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreax/structured_light/HEAD/slapp/main.cpp -------------------------------------------------------------------------------- /slapp/slapp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreax/structured_light/HEAD/slapp/slapp.cpp -------------------------------------------------------------------------------- /slapp/slapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreax/structured_light/HEAD/slapp/slapp.h -------------------------------------------------------------------------------- /slapp/slapp.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreax/structured_light/HEAD/slapp/slapp.pro -------------------------------------------------------------------------------- /slapp/slapp.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreax/structured_light/HEAD/slapp/slapp.ui -------------------------------------------------------------------------------- /three_step_phase_shift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreax/structured_light/HEAD/three_step_phase_shift.cpp -------------------------------------------------------------------------------- /three_step_phase_shift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreax/structured_light/HEAD/three_step_phase_shift.h -------------------------------------------------------------------------------- /three_step_phase_shift_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreax/structured_light/HEAD/three_step_phase_shift_test.cpp --------------------------------------------------------------------------------