├── LICENSE ├── README.md ├── documents ├── binary.gif ├── gray.gif ├── perpixel_thresholding.png ├── phaseshifting.gif ├── posinega_comparing.png ├── ramp.gif ├── simple_thresholding.png ├── stripe.gif └── xor.gif ├── examples ├── binarize_3methods.py ├── capture_x.py ├── capture_xy.py ├── correspondence_points.py ├── export_all.py └── measure_mtf.py ├── setup.py └── structuredlight ├── __init__.py ├── binary.py ├── checker.py ├── gray.py ├── lighttransport.py ├── phaseshifting.py ├── ramp.py ├── stripe.py ├── structuredlight.py ├── unstructured.py ├── util.py ├── xor.py └── zncc.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elerac/structuredlight/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elerac/structuredlight/HEAD/README.md -------------------------------------------------------------------------------- /documents/binary.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elerac/structuredlight/HEAD/documents/binary.gif -------------------------------------------------------------------------------- /documents/gray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elerac/structuredlight/HEAD/documents/gray.gif -------------------------------------------------------------------------------- /documents/perpixel_thresholding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elerac/structuredlight/HEAD/documents/perpixel_thresholding.png -------------------------------------------------------------------------------- /documents/phaseshifting.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elerac/structuredlight/HEAD/documents/phaseshifting.gif -------------------------------------------------------------------------------- /documents/posinega_comparing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elerac/structuredlight/HEAD/documents/posinega_comparing.png -------------------------------------------------------------------------------- /documents/ramp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elerac/structuredlight/HEAD/documents/ramp.gif -------------------------------------------------------------------------------- /documents/simple_thresholding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elerac/structuredlight/HEAD/documents/simple_thresholding.png -------------------------------------------------------------------------------- /documents/stripe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elerac/structuredlight/HEAD/documents/stripe.gif -------------------------------------------------------------------------------- /documents/xor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elerac/structuredlight/HEAD/documents/xor.gif -------------------------------------------------------------------------------- /examples/binarize_3methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elerac/structuredlight/HEAD/examples/binarize_3methods.py -------------------------------------------------------------------------------- /examples/capture_x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elerac/structuredlight/HEAD/examples/capture_x.py -------------------------------------------------------------------------------- /examples/capture_xy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elerac/structuredlight/HEAD/examples/capture_xy.py -------------------------------------------------------------------------------- /examples/correspondence_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elerac/structuredlight/HEAD/examples/correspondence_points.py -------------------------------------------------------------------------------- /examples/export_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elerac/structuredlight/HEAD/examples/export_all.py -------------------------------------------------------------------------------- /examples/measure_mtf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elerac/structuredlight/HEAD/examples/measure_mtf.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elerac/structuredlight/HEAD/setup.py -------------------------------------------------------------------------------- /structuredlight/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elerac/structuredlight/HEAD/structuredlight/__init__.py -------------------------------------------------------------------------------- /structuredlight/binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elerac/structuredlight/HEAD/structuredlight/binary.py -------------------------------------------------------------------------------- /structuredlight/checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elerac/structuredlight/HEAD/structuredlight/checker.py -------------------------------------------------------------------------------- /structuredlight/gray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elerac/structuredlight/HEAD/structuredlight/gray.py -------------------------------------------------------------------------------- /structuredlight/lighttransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elerac/structuredlight/HEAD/structuredlight/lighttransport.py -------------------------------------------------------------------------------- /structuredlight/phaseshifting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elerac/structuredlight/HEAD/structuredlight/phaseshifting.py -------------------------------------------------------------------------------- /structuredlight/ramp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elerac/structuredlight/HEAD/structuredlight/ramp.py -------------------------------------------------------------------------------- /structuredlight/stripe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elerac/structuredlight/HEAD/structuredlight/stripe.py -------------------------------------------------------------------------------- /structuredlight/structuredlight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elerac/structuredlight/HEAD/structuredlight/structuredlight.py -------------------------------------------------------------------------------- /structuredlight/unstructured.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elerac/structuredlight/HEAD/structuredlight/unstructured.py -------------------------------------------------------------------------------- /structuredlight/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elerac/structuredlight/HEAD/structuredlight/util.py -------------------------------------------------------------------------------- /structuredlight/xor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elerac/structuredlight/HEAD/structuredlight/xor.py -------------------------------------------------------------------------------- /structuredlight/zncc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elerac/structuredlight/HEAD/structuredlight/zncc.py --------------------------------------------------------------------------------