├── Matlab ├── multipass.m ├── phases.m ├── singlepass.m ├── skewfromref.m └── structuredlight.m ├── OpenCV ├── Global.h ├── Makefile ├── R3DCamera.cpp ├── R3DCamera.h ├── R3DScene.cpp ├── R3DScene.h ├── R3DSceneWindow.cpp ├── R3DSceneWindow.h ├── R3DUtil.cpp ├── R3DUtil.h ├── RApp.cpp ├── RApp.h ├── RCalibUtil.cpp ├── RCalibUtil.h ├── RCalibWindow.cpp ├── RCalibWindow.h ├── RCaptWindow.cpp ├── RCaptWindow.h ├── RCvCamera.cpp ├── RCvCamera.h ├── RExporter.cpp ├── RExporter.h ├── RImageWindow.cpp ├── RImageWindow.h ├── RPixelQueue.cpp ├── RPixelQueue.h ├── RReconstWindow.cpp ├── RReconstWindow.h ├── RScanUtil.cpp ├── RScanUtil.h ├── nbproject │ ├── Makefile-Debug.mk │ ├── Makefile-Release.mk │ ├── Makefile-impl.mk │ ├── Makefile-variables.mk │ ├── Package-Debug.bash │ ├── Package-Release.bash │ ├── configurations.xml │ ├── private │ │ ├── configurations.xml │ │ ├── private.properties │ │ └── private.xml │ ├── project.properties │ └── project.xml └── readme ├── OpenFrameworks ├── addons │ ├── ofxControlPanel │ │ └── src │ │ │ ├── guiBaseObject.h │ │ │ ├── guiColor.h │ │ │ ├── guiCustomImpl.h │ │ │ ├── guiIncludes.h │ │ │ ├── guiTextBase.h │ │ │ ├── guiType2DSlider.h │ │ │ ├── guiTypeCustom.h │ │ │ ├── guiTypeDrawable.h │ │ │ ├── guiTypeFileLister.h │ │ │ ├── guiTypeLogger.h │ │ │ ├── guiTypeMultiToggle.h │ │ │ ├── guiTypePanel.h │ │ │ ├── guiTypeSlider.h │ │ │ ├── guiTypeText.h │ │ │ ├── guiTypeToggle.h │ │ │ ├── guiValue.h │ │ │ ├── guiXmlValue.h │ │ │ ├── ofxControlPanel.cpp │ │ │ ├── ofxControlPanel.h │ │ │ ├── simpleColor.h │ │ │ ├── simpleFileLister.h │ │ │ └── simpleLogger.h │ ├── ofxQtVideoSaver │ │ └── src │ │ │ ├── ofxQtVideoSaver.cpp │ │ │ └── ofxQtVideoSaver.h │ └── ofxStructuredLight │ │ └── src │ │ ├── DepthDecoder.cpp │ │ ├── DepthDecoder.h │ │ ├── DepthExporter.cpp │ │ ├── DepthExporter.h │ │ ├── FastBlur.h │ │ ├── FloodFillDecoder.cpp │ │ ├── FloodFillDecoder.h │ │ ├── GradientGenerator.cpp │ │ ├── GradientGenerator.h │ │ ├── GrayCodeGenerator.cpp │ │ ├── GrayCodeGenerator.h │ │ ├── PatternGenerator.cpp │ │ ├── PatternGenerator.h │ │ ├── PhaseConstants.h │ │ ├── PhaseDecoder.cpp │ │ ├── PhaseDecoder.h │ │ ├── PriorityDecoder.cpp │ │ ├── PriorityDecoder.h │ │ ├── ThreePhaseDecoder.cpp │ │ ├── ThreePhaseDecoder.h │ │ ├── ThreePhaseGenerator.cpp │ │ ├── ThreePhaseGenerator.h │ │ ├── TwoPlusOneDecoder.cpp │ │ ├── TwoPlusOneDecoder.h │ │ ├── TwoPlusOneGenerator.cpp │ │ ├── TwoPlusOneGenerator.h │ │ └── ofxStructuredLight.h └── apps │ ├── earlyDemos │ ├── BasicGrayDecoder │ │ ├── BasicGrayDecoder.cbp │ │ └── src │ │ │ ├── GrayDecoder.h │ │ │ ├── StructuredLightDecoder.h │ │ │ ├── main.cpp │ │ │ ├── testApp.cpp │ │ │ └── testApp.h │ ├── slCapture │ │ ├── GlobalLogger.cpp │ │ ├── GlobalLogger.h │ │ ├── PatternGenerator.h │ │ ├── ThreadedImageCapture.h │ │ ├── ThreadedImageSaver.h │ │ ├── ThreePhaseGenerator.h │ │ ├── main.cpp │ │ ├── slCapture.cbp │ │ ├── testApp.cpp │ │ └── testApp.h │ └── slDecode │ │ ├── FastQueue.h │ │ ├── FastTimer.h │ │ ├── ThreePhaseDecoder.cpp │ │ ├── ThreePhaseDecoder.h │ │ ├── bin │ │ └── data │ │ │ ├── phase1.jpg │ │ │ ├── phase2.jpg │ │ │ └── phase3.jpg │ │ ├── main.cpp │ │ ├── slDecode.cbp │ │ ├── testApp.cpp │ │ └── testApp.h │ └── structuredLight │ ├── FastThreePhase │ ├── FastThreePhase.cbp │ ├── FastThreePhase.workspace │ ├── FastThreePhase.xcodeproj │ │ └── project.pbxproj │ ├── bin │ │ └── data │ │ │ ├── kyle │ │ │ ├── phase1.png │ │ │ ├── phase2.png │ │ │ └── phase3.png │ │ │ └── zhang │ │ │ ├── phase1.png │ │ │ ├── phase2.png │ │ │ └── phase3.png │ └── src │ │ ├── ImageUtility.cpp │ │ ├── ImageUtility.h │ │ ├── PartialQualityMap.cpp │ │ ├── PartialQualityMap.h │ │ ├── ScanlineOffset.cpp │ │ ├── ScanlineOffset.h │ │ ├── Shared.h │ │ ├── ThreePhaseWrap.cpp │ │ ├── ThreePhaseWrap.h │ │ ├── Unwrap.cpp │ │ ├── Unwrap.h │ │ ├── main.cpp │ │ ├── testApp.cpp │ │ └── testApp.h │ ├── GammaCalibrate │ ├── GammaCalibrate.cbp │ ├── GammaCalibrate.workspace │ ├── bin │ │ └── data │ │ │ ├── firefly-lut.csv │ │ │ └── ps3eye-lut.csv │ └── src │ │ ├── GammaCalibration.cpp │ │ ├── GammaCalibration.h │ │ ├── LutFilter.cpp │ │ ├── LutFilter.h │ │ ├── ThreadedSolver.cpp │ │ ├── ThreadedSolver.h │ │ ├── main.cpp │ │ ├── testApp.cpp │ │ └── testApp.h │ ├── capture │ ├── bin │ │ ├── data │ │ │ └── projector-lut.tsv │ │ └── readme.txt │ ├── capture.cbp │ ├── capture.workspace │ ├── capture.xcodeproj │ │ └── project.pbxproj │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofxAutoControlPanel.h │ │ ├── ofxImageSaver.h │ │ ├── ofxThreadedVideoGrabber.h │ │ ├── testApp.cpp │ │ └── testApp.h │ ├── decode │ ├── bin │ │ └── data │ │ │ ├── control.xml │ │ │ └── input │ │ │ └── example │ │ │ ├── 0.jpg │ │ │ ├── 1.jpg │ │ │ └── 2.jpg │ ├── decode.cbp │ ├── decode.workspace │ ├── decode.xcodeproj │ │ └── project.pbxproj │ ├── openFrameworks-Info.plist │ └── src │ │ ├── main.cpp │ │ ├── ofxAutoControlPanel.h │ │ ├── ofxNumericalDirList.h │ │ ├── testApp.cpp │ │ └── testApp.h │ └── preview │ ├── openFrameworks-Info.plist │ ├── preview.cbp │ ├── preview.workspace │ ├── preview.xcodeproj │ └── project.pbxproj │ └── src │ ├── main.cpp │ ├── ofxAutoControlPanel.h │ ├── ofxThreadedVideoGrabber.h │ ├── testApp.cpp │ └── testApp.h ├── Processing ├── GrayDecoderDemo │ ├── Camera.pde │ ├── GrayDecoder.pde │ ├── GrayDecoderDemo.pde │ ├── data │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 11.jpg │ │ ├── 12.jpg │ │ ├── 13.jpg │ │ ├── 14.jpg │ │ ├── 15.jpg │ │ ├── 16.jpg │ │ ├── 17.jpg │ │ ├── 18.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ └── 9.jpg │ ├── lineLineAverage.pde │ └── toxiExtra.pde ├── Renderer │ ├── Camera.pde │ ├── Controls.pde │ ├── DepthFrame.pde │ ├── GLHelper.pde │ ├── LoadInput.pde │ ├── Renderer.pde │ ├── SuperTri.pde │ ├── TrackingDraw.pde │ ├── TrackingParse.pde │ └── input │ │ ├── depth │ │ ├── 0.png │ │ ├── 1.png │ │ └── 2.png │ │ ├── texture │ │ ├── 0.png │ │ ├── 1.png │ │ └── 2.png │ │ └── tracking.txt ├── SimThreePhase │ ├── ObjLoader.pde │ ├── SimThreePhase.pde │ ├── XPatternGen.pde │ ├── cube.mtl │ ├── cube.obj │ ├── data │ │ ├── 1000phase1000.png │ │ ├── 1000phase1001.png │ │ ├── 1000phase1002.png │ │ ├── 1001phase1000.png │ │ ├── 1001phase1001.png │ │ ├── 1001phase1002.png │ │ ├── 1002phase1000.png │ │ ├── 1002phase1001.png │ │ └── 1002phase1002.png │ ├── heightdata.dat │ ├── phase1001.jpg │ ├── phase1002.jpg │ ├── phase1003.jpg │ ├── phase1004.jpg │ ├── phase1005.jpg │ ├── phase1006.jpg │ ├── phase1007.jpg │ ├── phase1008.jpg │ ├── phase1009.jpg │ ├── phase1010.jpg │ ├── phase1011.jpg │ ├── phase1012.jpg │ ├── phase1013.jpg │ ├── phase1014.jpg │ ├── phase1015.jpg │ ├── ref1001.jpg │ ├── ref1002.jpg │ ├── ref1003.jpg │ ├── test2.mtl │ ├── test2.obj │ ├── weird_01.mtl │ └── weird_01.obj ├── TPS_extended_I │ ├── DecodeData.pde │ ├── PhaseUnwrap.pde │ ├── PhaseUnwrapAll.pde │ ├── PropagatePhases.pde │ ├── TPS_extended_I.pde │ ├── YFilters.pde │ ├── ZControlComands.pde │ └── data │ │ ├── mat.png │ │ ├── phase1.png │ │ ├── phase2.png │ │ ├── phase3.png │ │ └── tex.png ├── ThreePhase │ ├── Controls.pde │ ├── Export.pde │ ├── PhaseUnwrap.pde │ ├── PhaseWrap.pde │ ├── ThreePhase.pde │ ├── img │ │ ├── phase1.jpg │ │ ├── phase2.jpg │ │ └── phase3.jpg │ └── pattern │ │ ├── horizontal │ │ ├── i1.png │ │ ├── i2.png │ │ └── i3.png │ │ └── vertical │ │ ├── i1.png │ │ ├── i2.png │ │ └── i3.png ├── ThreePhaseScan_24_05 │ ├── DecodeData.pde │ ├── PhaseUnwrap.pde │ ├── PhaseUnwrapAll.pde │ ├── PropagatePhases.pde │ ├── ThreePhaseScan_24_05.pde │ ├── XPatternGen.pde │ ├── YFilters.pde │ ├── ZControlComands.pde │ └── data │ │ ├── Thumbs.db │ │ ├── phase1.png │ │ ├── phase2.png │ │ ├── phase3.png │ │ └── tex.png └── ThreePhaseScan_JMF │ ├── DecodeData.pde │ ├── PhaseUnwrap.pde │ ├── PhaseUnwrapAll.pde │ ├── PropagatePhases.pde │ ├── README.txt │ ├── Screenshots │ ├── image-2-0046.jpg │ ├── image-2-0524.jpg │ └── image-2-1672.jpg │ ├── ThreePhaseScan_JMF.pde │ ├── XPatternGen.pde │ ├── YFilters.pde │ ├── ZControlComands.pde │ └── data │ ├── phase1.png │ ├── phase2.png │ ├── phase3.png │ └── tex.png ├── README.md └── vvvv └── 3PhaseAproach ├── 01-3Phase-wrap.fx ├── Readme.txt ├── images ├── 01-image+gradient.png ├── 02-image_witjhout_light.png ├── 03-image+0,5light.png ├── 04-image+1light.png └── readme.txt ├── root3PhaseDecode.v4p └── root3PhaseDecode~.xml /Matlab/multipass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Matlab/multipass.m -------------------------------------------------------------------------------- /Matlab/phases.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Matlab/phases.m -------------------------------------------------------------------------------- /Matlab/singlepass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Matlab/singlepass.m -------------------------------------------------------------------------------- /Matlab/skewfromref.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Matlab/skewfromref.m -------------------------------------------------------------------------------- /Matlab/structuredlight.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Matlab/structuredlight.m -------------------------------------------------------------------------------- /OpenCV/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/Global.h -------------------------------------------------------------------------------- /OpenCV/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/Makefile -------------------------------------------------------------------------------- /OpenCV/R3DCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/R3DCamera.cpp -------------------------------------------------------------------------------- /OpenCV/R3DCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/R3DCamera.h -------------------------------------------------------------------------------- /OpenCV/R3DScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/R3DScene.cpp -------------------------------------------------------------------------------- /OpenCV/R3DScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/R3DScene.h -------------------------------------------------------------------------------- /OpenCV/R3DSceneWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/R3DSceneWindow.cpp -------------------------------------------------------------------------------- /OpenCV/R3DSceneWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/R3DSceneWindow.h -------------------------------------------------------------------------------- /OpenCV/R3DUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/R3DUtil.cpp -------------------------------------------------------------------------------- /OpenCV/R3DUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/R3DUtil.h -------------------------------------------------------------------------------- /OpenCV/RApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/RApp.cpp -------------------------------------------------------------------------------- /OpenCV/RApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/RApp.h -------------------------------------------------------------------------------- /OpenCV/RCalibUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/RCalibUtil.cpp -------------------------------------------------------------------------------- /OpenCV/RCalibUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/RCalibUtil.h -------------------------------------------------------------------------------- /OpenCV/RCalibWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/RCalibWindow.cpp -------------------------------------------------------------------------------- /OpenCV/RCalibWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/RCalibWindow.h -------------------------------------------------------------------------------- /OpenCV/RCaptWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/RCaptWindow.cpp -------------------------------------------------------------------------------- /OpenCV/RCaptWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/RCaptWindow.h -------------------------------------------------------------------------------- /OpenCV/RCvCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/RCvCamera.cpp -------------------------------------------------------------------------------- /OpenCV/RCvCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/RCvCamera.h -------------------------------------------------------------------------------- /OpenCV/RExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/RExporter.cpp -------------------------------------------------------------------------------- /OpenCV/RExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/RExporter.h -------------------------------------------------------------------------------- /OpenCV/RImageWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/RImageWindow.cpp -------------------------------------------------------------------------------- /OpenCV/RImageWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/RImageWindow.h -------------------------------------------------------------------------------- /OpenCV/RPixelQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/RPixelQueue.cpp -------------------------------------------------------------------------------- /OpenCV/RPixelQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/RPixelQueue.h -------------------------------------------------------------------------------- /OpenCV/RReconstWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/RReconstWindow.cpp -------------------------------------------------------------------------------- /OpenCV/RReconstWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/RReconstWindow.h -------------------------------------------------------------------------------- /OpenCV/RScanUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/RScanUtil.cpp -------------------------------------------------------------------------------- /OpenCV/RScanUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/RScanUtil.h -------------------------------------------------------------------------------- /OpenCV/nbproject/Makefile-Debug.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/nbproject/Makefile-Debug.mk -------------------------------------------------------------------------------- /OpenCV/nbproject/Makefile-Release.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/nbproject/Makefile-Release.mk -------------------------------------------------------------------------------- /OpenCV/nbproject/Makefile-impl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/nbproject/Makefile-impl.mk -------------------------------------------------------------------------------- /OpenCV/nbproject/Makefile-variables.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/nbproject/Makefile-variables.mk -------------------------------------------------------------------------------- /OpenCV/nbproject/Package-Debug.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/nbproject/Package-Debug.bash -------------------------------------------------------------------------------- /OpenCV/nbproject/Package-Release.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/nbproject/Package-Release.bash -------------------------------------------------------------------------------- /OpenCV/nbproject/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/nbproject/configurations.xml -------------------------------------------------------------------------------- /OpenCV/nbproject/private/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/nbproject/private/configurations.xml -------------------------------------------------------------------------------- /OpenCV/nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenCV/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/nbproject/private/private.xml -------------------------------------------------------------------------------- /OpenCV/nbproject/project.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenCV/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/nbproject/project.xml -------------------------------------------------------------------------------- /OpenCV/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenCV/readme -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxControlPanel/src/guiBaseObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxControlPanel/src/guiBaseObject.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxControlPanel/src/guiColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxControlPanel/src/guiColor.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxControlPanel/src/guiCustomImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxControlPanel/src/guiCustomImpl.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxControlPanel/src/guiIncludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxControlPanel/src/guiIncludes.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxControlPanel/src/guiTextBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxControlPanel/src/guiTextBase.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxControlPanel/src/guiType2DSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxControlPanel/src/guiType2DSlider.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxControlPanel/src/guiTypeCustom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxControlPanel/src/guiTypeCustom.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxControlPanel/src/guiTypeDrawable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxControlPanel/src/guiTypeDrawable.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxControlPanel/src/guiTypeFileLister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxControlPanel/src/guiTypeFileLister.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxControlPanel/src/guiTypeLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxControlPanel/src/guiTypeLogger.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxControlPanel/src/guiTypeMultiToggle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxControlPanel/src/guiTypeMultiToggle.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxControlPanel/src/guiTypePanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxControlPanel/src/guiTypePanel.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxControlPanel/src/guiTypeSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxControlPanel/src/guiTypeSlider.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxControlPanel/src/guiTypeText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxControlPanel/src/guiTypeText.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxControlPanel/src/guiTypeToggle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxControlPanel/src/guiTypeToggle.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxControlPanel/src/guiValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxControlPanel/src/guiValue.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxControlPanel/src/guiXmlValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxControlPanel/src/guiXmlValue.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxControlPanel/src/ofxControlPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxControlPanel/src/ofxControlPanel.cpp -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxControlPanel/src/ofxControlPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxControlPanel/src/ofxControlPanel.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxControlPanel/src/simpleColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxControlPanel/src/simpleColor.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxControlPanel/src/simpleFileLister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxControlPanel/src/simpleFileLister.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxControlPanel/src/simpleLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxControlPanel/src/simpleLogger.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxQtVideoSaver/src/ofxQtVideoSaver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxQtVideoSaver/src/ofxQtVideoSaver.cpp -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxQtVideoSaver/src/ofxQtVideoSaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxQtVideoSaver/src/ofxQtVideoSaver.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxStructuredLight/src/DepthDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxStructuredLight/src/DepthDecoder.cpp -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxStructuredLight/src/DepthDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxStructuredLight/src/DepthDecoder.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxStructuredLight/src/DepthExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxStructuredLight/src/DepthExporter.cpp -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxStructuredLight/src/DepthExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxStructuredLight/src/DepthExporter.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxStructuredLight/src/FastBlur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxStructuredLight/src/FastBlur.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxStructuredLight/src/FloodFillDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxStructuredLight/src/FloodFillDecoder.cpp -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxStructuredLight/src/FloodFillDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxStructuredLight/src/FloodFillDecoder.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxStructuredLight/src/GradientGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxStructuredLight/src/GradientGenerator.cpp -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxStructuredLight/src/GradientGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxStructuredLight/src/GradientGenerator.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxStructuredLight/src/GrayCodeGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxStructuredLight/src/GrayCodeGenerator.cpp -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxStructuredLight/src/GrayCodeGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxStructuredLight/src/GrayCodeGenerator.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxStructuredLight/src/PatternGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxStructuredLight/src/PatternGenerator.cpp -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxStructuredLight/src/PatternGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxStructuredLight/src/PatternGenerator.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxStructuredLight/src/PhaseConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxStructuredLight/src/PhaseConstants.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxStructuredLight/src/PhaseDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxStructuredLight/src/PhaseDecoder.cpp -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxStructuredLight/src/PhaseDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxStructuredLight/src/PhaseDecoder.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxStructuredLight/src/PriorityDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxStructuredLight/src/PriorityDecoder.cpp -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxStructuredLight/src/PriorityDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxStructuredLight/src/PriorityDecoder.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxStructuredLight/src/ThreePhaseDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxStructuredLight/src/ThreePhaseDecoder.cpp -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxStructuredLight/src/ThreePhaseDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxStructuredLight/src/ThreePhaseDecoder.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxStructuredLight/src/ThreePhaseGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxStructuredLight/src/ThreePhaseGenerator.cpp -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxStructuredLight/src/ThreePhaseGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxStructuredLight/src/ThreePhaseGenerator.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxStructuredLight/src/TwoPlusOneDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxStructuredLight/src/TwoPlusOneDecoder.cpp -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxStructuredLight/src/TwoPlusOneDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxStructuredLight/src/TwoPlusOneDecoder.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxStructuredLight/src/TwoPlusOneGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxStructuredLight/src/TwoPlusOneGenerator.cpp -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxStructuredLight/src/TwoPlusOneGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxStructuredLight/src/TwoPlusOneGenerator.h -------------------------------------------------------------------------------- /OpenFrameworks/addons/ofxStructuredLight/src/ofxStructuredLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/addons/ofxStructuredLight/src/ofxStructuredLight.h -------------------------------------------------------------------------------- /OpenFrameworks/apps/earlyDemos/BasicGrayDecoder/BasicGrayDecoder.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/earlyDemos/BasicGrayDecoder/BasicGrayDecoder.cbp -------------------------------------------------------------------------------- /OpenFrameworks/apps/earlyDemos/BasicGrayDecoder/src/GrayDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/earlyDemos/BasicGrayDecoder/src/GrayDecoder.h -------------------------------------------------------------------------------- /OpenFrameworks/apps/earlyDemos/BasicGrayDecoder/src/StructuredLightDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/earlyDemos/BasicGrayDecoder/src/StructuredLightDecoder.h -------------------------------------------------------------------------------- /OpenFrameworks/apps/earlyDemos/BasicGrayDecoder/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/earlyDemos/BasicGrayDecoder/src/main.cpp -------------------------------------------------------------------------------- /OpenFrameworks/apps/earlyDemos/BasicGrayDecoder/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/earlyDemos/BasicGrayDecoder/src/testApp.cpp -------------------------------------------------------------------------------- /OpenFrameworks/apps/earlyDemos/BasicGrayDecoder/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/earlyDemos/BasicGrayDecoder/src/testApp.h -------------------------------------------------------------------------------- /OpenFrameworks/apps/earlyDemos/slCapture/GlobalLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/earlyDemos/slCapture/GlobalLogger.cpp -------------------------------------------------------------------------------- /OpenFrameworks/apps/earlyDemos/slCapture/GlobalLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/earlyDemos/slCapture/GlobalLogger.h -------------------------------------------------------------------------------- /OpenFrameworks/apps/earlyDemos/slCapture/PatternGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/earlyDemos/slCapture/PatternGenerator.h -------------------------------------------------------------------------------- /OpenFrameworks/apps/earlyDemos/slCapture/ThreadedImageCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/earlyDemos/slCapture/ThreadedImageCapture.h -------------------------------------------------------------------------------- /OpenFrameworks/apps/earlyDemos/slCapture/ThreadedImageSaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/earlyDemos/slCapture/ThreadedImageSaver.h -------------------------------------------------------------------------------- /OpenFrameworks/apps/earlyDemos/slCapture/ThreePhaseGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/earlyDemos/slCapture/ThreePhaseGenerator.h -------------------------------------------------------------------------------- /OpenFrameworks/apps/earlyDemos/slCapture/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/earlyDemos/slCapture/main.cpp -------------------------------------------------------------------------------- /OpenFrameworks/apps/earlyDemos/slCapture/slCapture.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/earlyDemos/slCapture/slCapture.cbp -------------------------------------------------------------------------------- /OpenFrameworks/apps/earlyDemos/slCapture/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/earlyDemos/slCapture/testApp.cpp -------------------------------------------------------------------------------- /OpenFrameworks/apps/earlyDemos/slCapture/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/earlyDemos/slCapture/testApp.h -------------------------------------------------------------------------------- /OpenFrameworks/apps/earlyDemos/slDecode/FastQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/earlyDemos/slDecode/FastQueue.h -------------------------------------------------------------------------------- /OpenFrameworks/apps/earlyDemos/slDecode/FastTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/earlyDemos/slDecode/FastTimer.h -------------------------------------------------------------------------------- /OpenFrameworks/apps/earlyDemos/slDecode/ThreePhaseDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/earlyDemos/slDecode/ThreePhaseDecoder.cpp -------------------------------------------------------------------------------- /OpenFrameworks/apps/earlyDemos/slDecode/ThreePhaseDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/earlyDemos/slDecode/ThreePhaseDecoder.h -------------------------------------------------------------------------------- /OpenFrameworks/apps/earlyDemos/slDecode/bin/data/phase1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/earlyDemos/slDecode/bin/data/phase1.jpg -------------------------------------------------------------------------------- /OpenFrameworks/apps/earlyDemos/slDecode/bin/data/phase2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/earlyDemos/slDecode/bin/data/phase2.jpg -------------------------------------------------------------------------------- /OpenFrameworks/apps/earlyDemos/slDecode/bin/data/phase3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/earlyDemos/slDecode/bin/data/phase3.jpg -------------------------------------------------------------------------------- /OpenFrameworks/apps/earlyDemos/slDecode/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/earlyDemos/slDecode/main.cpp -------------------------------------------------------------------------------- /OpenFrameworks/apps/earlyDemos/slDecode/slDecode.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/earlyDemos/slDecode/slDecode.cbp -------------------------------------------------------------------------------- /OpenFrameworks/apps/earlyDemos/slDecode/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/earlyDemos/slDecode/testApp.cpp -------------------------------------------------------------------------------- /OpenFrameworks/apps/earlyDemos/slDecode/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/earlyDemos/slDecode/testApp.h -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/FastThreePhase/FastThreePhase.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/FastThreePhase/FastThreePhase.cbp -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/FastThreePhase/FastThreePhase.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/FastThreePhase/FastThreePhase.workspace -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/FastThreePhase/FastThreePhase.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/FastThreePhase/FastThreePhase.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/FastThreePhase/bin/data/kyle/phase1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/FastThreePhase/bin/data/kyle/phase1.png -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/FastThreePhase/bin/data/kyle/phase2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/FastThreePhase/bin/data/kyle/phase2.png -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/FastThreePhase/bin/data/kyle/phase3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/FastThreePhase/bin/data/kyle/phase3.png -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/FastThreePhase/bin/data/zhang/phase1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/FastThreePhase/bin/data/zhang/phase1.png -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/FastThreePhase/bin/data/zhang/phase2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/FastThreePhase/bin/data/zhang/phase2.png -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/FastThreePhase/bin/data/zhang/phase3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/FastThreePhase/bin/data/zhang/phase3.png -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/FastThreePhase/src/ImageUtility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/FastThreePhase/src/ImageUtility.cpp -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/FastThreePhase/src/ImageUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/FastThreePhase/src/ImageUtility.h -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/FastThreePhase/src/PartialQualityMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/FastThreePhase/src/PartialQualityMap.cpp -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/FastThreePhase/src/PartialQualityMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/FastThreePhase/src/PartialQualityMap.h -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/FastThreePhase/src/ScanlineOffset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/FastThreePhase/src/ScanlineOffset.cpp -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/FastThreePhase/src/ScanlineOffset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/FastThreePhase/src/ScanlineOffset.h -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/FastThreePhase/src/Shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/FastThreePhase/src/Shared.h -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/FastThreePhase/src/ThreePhaseWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/FastThreePhase/src/ThreePhaseWrap.cpp -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/FastThreePhase/src/ThreePhaseWrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/FastThreePhase/src/ThreePhaseWrap.h -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/FastThreePhase/src/Unwrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/FastThreePhase/src/Unwrap.cpp -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/FastThreePhase/src/Unwrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/FastThreePhase/src/Unwrap.h -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/FastThreePhase/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/FastThreePhase/src/main.cpp -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/FastThreePhase/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/FastThreePhase/src/testApp.cpp -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/FastThreePhase/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/FastThreePhase/src/testApp.h -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/GammaCalibrate/GammaCalibrate.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/GammaCalibrate/GammaCalibrate.cbp -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/GammaCalibrate/GammaCalibrate.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/GammaCalibrate/GammaCalibrate.workspace -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/GammaCalibrate/bin/data/firefly-lut.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/GammaCalibrate/bin/data/firefly-lut.csv -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/GammaCalibrate/bin/data/ps3eye-lut.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/GammaCalibrate/bin/data/ps3eye-lut.csv -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/GammaCalibrate/src/GammaCalibration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/GammaCalibrate/src/GammaCalibration.cpp -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/GammaCalibrate/src/GammaCalibration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/GammaCalibrate/src/GammaCalibration.h -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/GammaCalibrate/src/LutFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/GammaCalibrate/src/LutFilter.cpp -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/GammaCalibrate/src/LutFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/GammaCalibrate/src/LutFilter.h -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/GammaCalibrate/src/ThreadedSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/GammaCalibrate/src/ThreadedSolver.cpp -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/GammaCalibrate/src/ThreadedSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/GammaCalibrate/src/ThreadedSolver.h -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/GammaCalibrate/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/GammaCalibrate/src/main.cpp -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/GammaCalibrate/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/GammaCalibrate/src/testApp.cpp -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/GammaCalibrate/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/GammaCalibrate/src/testApp.h -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/capture/bin/data/projector-lut.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/capture/bin/data/projector-lut.tsv -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/capture/bin/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/capture/bin/readme.txt -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/capture/capture.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/capture/capture.cbp -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/capture/capture.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/capture/capture.workspace -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/capture/capture.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/capture/capture.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/capture/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/capture/openFrameworks-Info.plist -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/capture/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/capture/src/main.cpp -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/capture/src/ofxAutoControlPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/capture/src/ofxAutoControlPanel.h -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/capture/src/ofxImageSaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/capture/src/ofxImageSaver.h -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/capture/src/ofxThreadedVideoGrabber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/capture/src/ofxThreadedVideoGrabber.h -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/capture/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/capture/src/testApp.cpp -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/capture/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/capture/src/testApp.h -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/decode/bin/data/control.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/decode/bin/data/control.xml -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/decode/bin/data/input/example/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/decode/bin/data/input/example/0.jpg -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/decode/bin/data/input/example/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/decode/bin/data/input/example/1.jpg -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/decode/bin/data/input/example/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/decode/bin/data/input/example/2.jpg -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/decode/decode.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/decode/decode.cbp -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/decode/decode.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/decode/decode.workspace -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/decode/decode.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/decode/decode.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/decode/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/decode/openFrameworks-Info.plist -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/decode/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/decode/src/main.cpp -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/decode/src/ofxAutoControlPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/decode/src/ofxAutoControlPanel.h -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/decode/src/ofxNumericalDirList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/decode/src/ofxNumericalDirList.h -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/decode/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/decode/src/testApp.cpp -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/decode/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/decode/src/testApp.h -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/preview/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/preview/openFrameworks-Info.plist -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/preview/preview.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/preview/preview.cbp -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/preview/preview.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/preview/preview.workspace -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/preview/preview.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/preview/preview.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/preview/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/preview/src/main.cpp -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/preview/src/ofxAutoControlPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/preview/src/ofxAutoControlPanel.h -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/preview/src/ofxThreadedVideoGrabber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/preview/src/ofxThreadedVideoGrabber.h -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/preview/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/preview/src/testApp.cpp -------------------------------------------------------------------------------- /OpenFrameworks/apps/structuredLight/preview/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/OpenFrameworks/apps/structuredLight/preview/src/testApp.h -------------------------------------------------------------------------------- /Processing/GrayDecoderDemo/Camera.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/GrayDecoderDemo/Camera.pde -------------------------------------------------------------------------------- /Processing/GrayDecoderDemo/GrayDecoder.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/GrayDecoderDemo/GrayDecoder.pde -------------------------------------------------------------------------------- /Processing/GrayDecoderDemo/GrayDecoderDemo.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/GrayDecoderDemo/GrayDecoderDemo.pde -------------------------------------------------------------------------------- /Processing/GrayDecoderDemo/data/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/GrayDecoderDemo/data/1.jpg -------------------------------------------------------------------------------- /Processing/GrayDecoderDemo/data/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/GrayDecoderDemo/data/10.jpg -------------------------------------------------------------------------------- /Processing/GrayDecoderDemo/data/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/GrayDecoderDemo/data/11.jpg -------------------------------------------------------------------------------- /Processing/GrayDecoderDemo/data/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/GrayDecoderDemo/data/12.jpg -------------------------------------------------------------------------------- /Processing/GrayDecoderDemo/data/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/GrayDecoderDemo/data/13.jpg -------------------------------------------------------------------------------- /Processing/GrayDecoderDemo/data/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/GrayDecoderDemo/data/14.jpg -------------------------------------------------------------------------------- /Processing/GrayDecoderDemo/data/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/GrayDecoderDemo/data/15.jpg -------------------------------------------------------------------------------- /Processing/GrayDecoderDemo/data/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/GrayDecoderDemo/data/16.jpg -------------------------------------------------------------------------------- /Processing/GrayDecoderDemo/data/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/GrayDecoderDemo/data/17.jpg -------------------------------------------------------------------------------- /Processing/GrayDecoderDemo/data/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/GrayDecoderDemo/data/18.jpg -------------------------------------------------------------------------------- /Processing/GrayDecoderDemo/data/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/GrayDecoderDemo/data/2.jpg -------------------------------------------------------------------------------- /Processing/GrayDecoderDemo/data/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/GrayDecoderDemo/data/3.jpg -------------------------------------------------------------------------------- /Processing/GrayDecoderDemo/data/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/GrayDecoderDemo/data/4.jpg -------------------------------------------------------------------------------- /Processing/GrayDecoderDemo/data/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/GrayDecoderDemo/data/5.jpg -------------------------------------------------------------------------------- /Processing/GrayDecoderDemo/data/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/GrayDecoderDemo/data/6.jpg -------------------------------------------------------------------------------- /Processing/GrayDecoderDemo/data/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/GrayDecoderDemo/data/7.jpg -------------------------------------------------------------------------------- /Processing/GrayDecoderDemo/data/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/GrayDecoderDemo/data/8.jpg -------------------------------------------------------------------------------- /Processing/GrayDecoderDemo/data/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/GrayDecoderDemo/data/9.jpg -------------------------------------------------------------------------------- /Processing/GrayDecoderDemo/lineLineAverage.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/GrayDecoderDemo/lineLineAverage.pde -------------------------------------------------------------------------------- /Processing/GrayDecoderDemo/toxiExtra.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/GrayDecoderDemo/toxiExtra.pde -------------------------------------------------------------------------------- /Processing/Renderer/Camera.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/Renderer/Camera.pde -------------------------------------------------------------------------------- /Processing/Renderer/Controls.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/Renderer/Controls.pde -------------------------------------------------------------------------------- /Processing/Renderer/DepthFrame.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/Renderer/DepthFrame.pde -------------------------------------------------------------------------------- /Processing/Renderer/GLHelper.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/Renderer/GLHelper.pde -------------------------------------------------------------------------------- /Processing/Renderer/LoadInput.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/Renderer/LoadInput.pde -------------------------------------------------------------------------------- /Processing/Renderer/Renderer.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/Renderer/Renderer.pde -------------------------------------------------------------------------------- /Processing/Renderer/SuperTri.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/Renderer/SuperTri.pde -------------------------------------------------------------------------------- /Processing/Renderer/TrackingDraw.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/Renderer/TrackingDraw.pde -------------------------------------------------------------------------------- /Processing/Renderer/TrackingParse.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/Renderer/TrackingParse.pde -------------------------------------------------------------------------------- /Processing/Renderer/input/depth/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/Renderer/input/depth/0.png -------------------------------------------------------------------------------- /Processing/Renderer/input/depth/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/Renderer/input/depth/1.png -------------------------------------------------------------------------------- /Processing/Renderer/input/depth/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/Renderer/input/depth/2.png -------------------------------------------------------------------------------- /Processing/Renderer/input/texture/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/Renderer/input/texture/0.png -------------------------------------------------------------------------------- /Processing/Renderer/input/texture/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/Renderer/input/texture/1.png -------------------------------------------------------------------------------- /Processing/Renderer/input/texture/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/Renderer/input/texture/2.png -------------------------------------------------------------------------------- /Processing/Renderer/input/tracking.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/Renderer/input/tracking.txt -------------------------------------------------------------------------------- /Processing/SimThreePhase/ObjLoader.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/ObjLoader.pde -------------------------------------------------------------------------------- /Processing/SimThreePhase/SimThreePhase.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/SimThreePhase.pde -------------------------------------------------------------------------------- /Processing/SimThreePhase/XPatternGen.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/XPatternGen.pde -------------------------------------------------------------------------------- /Processing/SimThreePhase/cube.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/cube.mtl -------------------------------------------------------------------------------- /Processing/SimThreePhase/cube.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/cube.obj -------------------------------------------------------------------------------- /Processing/SimThreePhase/data/1000phase1000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/data/1000phase1000.png -------------------------------------------------------------------------------- /Processing/SimThreePhase/data/1000phase1001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/data/1000phase1001.png -------------------------------------------------------------------------------- /Processing/SimThreePhase/data/1000phase1002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/data/1000phase1002.png -------------------------------------------------------------------------------- /Processing/SimThreePhase/data/1001phase1000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/data/1001phase1000.png -------------------------------------------------------------------------------- /Processing/SimThreePhase/data/1001phase1001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/data/1001phase1001.png -------------------------------------------------------------------------------- /Processing/SimThreePhase/data/1001phase1002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/data/1001phase1002.png -------------------------------------------------------------------------------- /Processing/SimThreePhase/data/1002phase1000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/data/1002phase1000.png -------------------------------------------------------------------------------- /Processing/SimThreePhase/data/1002phase1001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/data/1002phase1001.png -------------------------------------------------------------------------------- /Processing/SimThreePhase/data/1002phase1002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/data/1002phase1002.png -------------------------------------------------------------------------------- /Processing/SimThreePhase/heightdata.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/heightdata.dat -------------------------------------------------------------------------------- /Processing/SimThreePhase/phase1001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/phase1001.jpg -------------------------------------------------------------------------------- /Processing/SimThreePhase/phase1002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/phase1002.jpg -------------------------------------------------------------------------------- /Processing/SimThreePhase/phase1003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/phase1003.jpg -------------------------------------------------------------------------------- /Processing/SimThreePhase/phase1004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/phase1004.jpg -------------------------------------------------------------------------------- /Processing/SimThreePhase/phase1005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/phase1005.jpg -------------------------------------------------------------------------------- /Processing/SimThreePhase/phase1006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/phase1006.jpg -------------------------------------------------------------------------------- /Processing/SimThreePhase/phase1007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/phase1007.jpg -------------------------------------------------------------------------------- /Processing/SimThreePhase/phase1008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/phase1008.jpg -------------------------------------------------------------------------------- /Processing/SimThreePhase/phase1009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/phase1009.jpg -------------------------------------------------------------------------------- /Processing/SimThreePhase/phase1010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/phase1010.jpg -------------------------------------------------------------------------------- /Processing/SimThreePhase/phase1011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/phase1011.jpg -------------------------------------------------------------------------------- /Processing/SimThreePhase/phase1012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/phase1012.jpg -------------------------------------------------------------------------------- /Processing/SimThreePhase/phase1013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/phase1013.jpg -------------------------------------------------------------------------------- /Processing/SimThreePhase/phase1014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/phase1014.jpg -------------------------------------------------------------------------------- /Processing/SimThreePhase/phase1015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/phase1015.jpg -------------------------------------------------------------------------------- /Processing/SimThreePhase/ref1001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/ref1001.jpg -------------------------------------------------------------------------------- /Processing/SimThreePhase/ref1002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/ref1002.jpg -------------------------------------------------------------------------------- /Processing/SimThreePhase/ref1003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/ref1003.jpg -------------------------------------------------------------------------------- /Processing/SimThreePhase/test2.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/test2.mtl -------------------------------------------------------------------------------- /Processing/SimThreePhase/test2.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/test2.obj -------------------------------------------------------------------------------- /Processing/SimThreePhase/weird_01.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/weird_01.mtl -------------------------------------------------------------------------------- /Processing/SimThreePhase/weird_01.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/SimThreePhase/weird_01.obj -------------------------------------------------------------------------------- /Processing/TPS_extended_I/DecodeData.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/TPS_extended_I/DecodeData.pde -------------------------------------------------------------------------------- /Processing/TPS_extended_I/PhaseUnwrap.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/TPS_extended_I/PhaseUnwrap.pde -------------------------------------------------------------------------------- /Processing/TPS_extended_I/PhaseUnwrapAll.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/TPS_extended_I/PhaseUnwrapAll.pde -------------------------------------------------------------------------------- /Processing/TPS_extended_I/PropagatePhases.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/TPS_extended_I/PropagatePhases.pde -------------------------------------------------------------------------------- /Processing/TPS_extended_I/TPS_extended_I.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/TPS_extended_I/TPS_extended_I.pde -------------------------------------------------------------------------------- /Processing/TPS_extended_I/YFilters.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/TPS_extended_I/YFilters.pde -------------------------------------------------------------------------------- /Processing/TPS_extended_I/ZControlComands.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/TPS_extended_I/ZControlComands.pde -------------------------------------------------------------------------------- /Processing/TPS_extended_I/data/mat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/TPS_extended_I/data/mat.png -------------------------------------------------------------------------------- /Processing/TPS_extended_I/data/phase1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/TPS_extended_I/data/phase1.png -------------------------------------------------------------------------------- /Processing/TPS_extended_I/data/phase2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/TPS_extended_I/data/phase2.png -------------------------------------------------------------------------------- /Processing/TPS_extended_I/data/phase3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/TPS_extended_I/data/phase3.png -------------------------------------------------------------------------------- /Processing/TPS_extended_I/data/tex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/TPS_extended_I/data/tex.png -------------------------------------------------------------------------------- /Processing/ThreePhase/Controls.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhase/Controls.pde -------------------------------------------------------------------------------- /Processing/ThreePhase/Export.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhase/Export.pde -------------------------------------------------------------------------------- /Processing/ThreePhase/PhaseUnwrap.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhase/PhaseUnwrap.pde -------------------------------------------------------------------------------- /Processing/ThreePhase/PhaseWrap.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhase/PhaseWrap.pde -------------------------------------------------------------------------------- /Processing/ThreePhase/ThreePhase.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhase/ThreePhase.pde -------------------------------------------------------------------------------- /Processing/ThreePhase/img/phase1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhase/img/phase1.jpg -------------------------------------------------------------------------------- /Processing/ThreePhase/img/phase2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhase/img/phase2.jpg -------------------------------------------------------------------------------- /Processing/ThreePhase/img/phase3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhase/img/phase3.jpg -------------------------------------------------------------------------------- /Processing/ThreePhase/pattern/horizontal/i1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhase/pattern/horizontal/i1.png -------------------------------------------------------------------------------- /Processing/ThreePhase/pattern/horizontal/i2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhase/pattern/horizontal/i2.png -------------------------------------------------------------------------------- /Processing/ThreePhase/pattern/horizontal/i3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhase/pattern/horizontal/i3.png -------------------------------------------------------------------------------- /Processing/ThreePhase/pattern/vertical/i1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhase/pattern/vertical/i1.png -------------------------------------------------------------------------------- /Processing/ThreePhase/pattern/vertical/i2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhase/pattern/vertical/i2.png -------------------------------------------------------------------------------- /Processing/ThreePhase/pattern/vertical/i3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhase/pattern/vertical/i3.png -------------------------------------------------------------------------------- /Processing/ThreePhaseScan_24_05/DecodeData.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhaseScan_24_05/DecodeData.pde -------------------------------------------------------------------------------- /Processing/ThreePhaseScan_24_05/PhaseUnwrap.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhaseScan_24_05/PhaseUnwrap.pde -------------------------------------------------------------------------------- /Processing/ThreePhaseScan_24_05/PhaseUnwrapAll.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhaseScan_24_05/PhaseUnwrapAll.pde -------------------------------------------------------------------------------- /Processing/ThreePhaseScan_24_05/PropagatePhases.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhaseScan_24_05/PropagatePhases.pde -------------------------------------------------------------------------------- /Processing/ThreePhaseScan_24_05/ThreePhaseScan_24_05.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhaseScan_24_05/ThreePhaseScan_24_05.pde -------------------------------------------------------------------------------- /Processing/ThreePhaseScan_24_05/XPatternGen.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhaseScan_24_05/XPatternGen.pde -------------------------------------------------------------------------------- /Processing/ThreePhaseScan_24_05/YFilters.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhaseScan_24_05/YFilters.pde -------------------------------------------------------------------------------- /Processing/ThreePhaseScan_24_05/ZControlComands.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhaseScan_24_05/ZControlComands.pde -------------------------------------------------------------------------------- /Processing/ThreePhaseScan_24_05/data/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhaseScan_24_05/data/Thumbs.db -------------------------------------------------------------------------------- /Processing/ThreePhaseScan_24_05/data/phase1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhaseScan_24_05/data/phase1.png -------------------------------------------------------------------------------- /Processing/ThreePhaseScan_24_05/data/phase2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhaseScan_24_05/data/phase2.png -------------------------------------------------------------------------------- /Processing/ThreePhaseScan_24_05/data/phase3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhaseScan_24_05/data/phase3.png -------------------------------------------------------------------------------- /Processing/ThreePhaseScan_24_05/data/tex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhaseScan_24_05/data/tex.png -------------------------------------------------------------------------------- /Processing/ThreePhaseScan_JMF/DecodeData.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhaseScan_JMF/DecodeData.pde -------------------------------------------------------------------------------- /Processing/ThreePhaseScan_JMF/PhaseUnwrap.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhaseScan_JMF/PhaseUnwrap.pde -------------------------------------------------------------------------------- /Processing/ThreePhaseScan_JMF/PhaseUnwrapAll.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhaseScan_JMF/PhaseUnwrapAll.pde -------------------------------------------------------------------------------- /Processing/ThreePhaseScan_JMF/PropagatePhases.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhaseScan_JMF/PropagatePhases.pde -------------------------------------------------------------------------------- /Processing/ThreePhaseScan_JMF/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhaseScan_JMF/README.txt -------------------------------------------------------------------------------- /Processing/ThreePhaseScan_JMF/Screenshots/image-2-0046.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhaseScan_JMF/Screenshots/image-2-0046.jpg -------------------------------------------------------------------------------- /Processing/ThreePhaseScan_JMF/Screenshots/image-2-0524.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhaseScan_JMF/Screenshots/image-2-0524.jpg -------------------------------------------------------------------------------- /Processing/ThreePhaseScan_JMF/Screenshots/image-2-1672.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhaseScan_JMF/Screenshots/image-2-1672.jpg -------------------------------------------------------------------------------- /Processing/ThreePhaseScan_JMF/ThreePhaseScan_JMF.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhaseScan_JMF/ThreePhaseScan_JMF.pde -------------------------------------------------------------------------------- /Processing/ThreePhaseScan_JMF/XPatternGen.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhaseScan_JMF/XPatternGen.pde -------------------------------------------------------------------------------- /Processing/ThreePhaseScan_JMF/YFilters.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhaseScan_JMF/YFilters.pde -------------------------------------------------------------------------------- /Processing/ThreePhaseScan_JMF/ZControlComands.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhaseScan_JMF/ZControlComands.pde -------------------------------------------------------------------------------- /Processing/ThreePhaseScan_JMF/data/phase1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhaseScan_JMF/data/phase1.png -------------------------------------------------------------------------------- /Processing/ThreePhaseScan_JMF/data/phase2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhaseScan_JMF/data/phase2.png -------------------------------------------------------------------------------- /Processing/ThreePhaseScan_JMF/data/phase3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhaseScan_JMF/data/phase3.png -------------------------------------------------------------------------------- /Processing/ThreePhaseScan_JMF/data/tex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/Processing/ThreePhaseScan_JMF/data/tex.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/README.md -------------------------------------------------------------------------------- /vvvv/3PhaseAproach/01-3Phase-wrap.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/vvvv/3PhaseAproach/01-3Phase-wrap.fx -------------------------------------------------------------------------------- /vvvv/3PhaseAproach/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/vvvv/3PhaseAproach/Readme.txt -------------------------------------------------------------------------------- /vvvv/3PhaseAproach/images/01-image+gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/vvvv/3PhaseAproach/images/01-image+gradient.png -------------------------------------------------------------------------------- /vvvv/3PhaseAproach/images/02-image_witjhout_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/vvvv/3PhaseAproach/images/02-image_witjhout_light.png -------------------------------------------------------------------------------- /vvvv/3PhaseAproach/images/03-image+0,5light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/vvvv/3PhaseAproach/images/03-image+0,5light.png -------------------------------------------------------------------------------- /vvvv/3PhaseAproach/images/04-image+1light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/vvvv/3PhaseAproach/images/04-image+1light.png -------------------------------------------------------------------------------- /vvvv/3PhaseAproach/images/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/vvvv/3PhaseAproach/images/readme.txt -------------------------------------------------------------------------------- /vvvv/3PhaseAproach/root3PhaseDecode.v4p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/vvvv/3PhaseAproach/root3PhaseDecode.v4p -------------------------------------------------------------------------------- /vvvv/3PhaseAproach/root3PhaseDecode~.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/structured-light/HEAD/vvvv/3PhaseAproach/root3PhaseDecode~.xml --------------------------------------------------------------------------------