├── 3rdparty └── .gitkeep ├── Data ├── .gitkeep └── Cone │ ├── left.png │ ├── option.xml │ └── right.png ├── FasterStereoConsole ├── FasterStereoConsole.cpp ├── FasterStereoConsole.vcxproj ├── FasterStereoConsole.vcxproj.administrator.nvuser ├── FasterStereoConsole.vcxproj.filters ├── FasterStereoConsole.vcxproj.lys.nvuser ├── FasterStereoConsole.vcxproj.user ├── option_manager.cpp ├── option_manager.h ├── tinyxml2.cpp └── tinyxml2.h ├── FasterStereoCuda-v19.sln ├── FasterStereoCuda ├── FasterStereoCuda.cpp ├── FasterStereoCuda.h ├── FasterStereoCuda.rc ├── FasterStereoCuda.vcxproj ├── FasterStereoCuda.vcxproj.user ├── Timer.h ├── resource.h ├── resource1.h └── types.h ├── README.md ├── SgmStereoCuda ├── SgmStereoCuda.aps ├── SgmStereoCuda.rc ├── SgmStereoCuda.vcxproj ├── SgmStereoCuda.vcxproj.lys.nvuser ├── SgmStereoCuda.vcxproj.user ├── StereoCuda.cpp ├── StereoCuda.h ├── StereoCudaImpl.cpp ├── StereoCudaImpl.h ├── Timer.h ├── cusgm_ca.cu ├── cusgm_ca.cuh ├── cusgm_cc.cu ├── cusgm_cc.cuh ├── cusgm_df.cu ├── cusgm_df.h ├── cusgm_types.h ├── cusgm_util.cu ├── cusgm_util.cuh ├── kernel.cu ├── resource.h ├── sgm_types.h └── types.h ├── common ├── semaphore.h ├── thread.h └── trial │ └── trial_check.h ├── library ├── FasterStereoCuda │ ├── dll │ │ └── .gitkeep │ ├── include │ │ └── .gitkeep │ └── lib │ │ └── .gitkeep └── StereoCuda │ ├── dll │ └── .gitkeep │ ├── include │ └── .gitkeep │ └── lib │ └── .gitkeep └── x64 └── Debug └── fasterstereocuda.a /3rdparty/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data/Cone/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/Data/Cone/left.png -------------------------------------------------------------------------------- /Data/Cone/option.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/Data/Cone/option.xml -------------------------------------------------------------------------------- /Data/Cone/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/Data/Cone/right.png -------------------------------------------------------------------------------- /FasterStereoConsole/FasterStereoConsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/FasterStereoConsole/FasterStereoConsole.cpp -------------------------------------------------------------------------------- /FasterStereoConsole/FasterStereoConsole.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/FasterStereoConsole/FasterStereoConsole.vcxproj -------------------------------------------------------------------------------- /FasterStereoConsole/FasterStereoConsole.vcxproj.administrator.nvuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/FasterStereoConsole/FasterStereoConsole.vcxproj.administrator.nvuser -------------------------------------------------------------------------------- /FasterStereoConsole/FasterStereoConsole.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/FasterStereoConsole/FasterStereoConsole.vcxproj.filters -------------------------------------------------------------------------------- /FasterStereoConsole/FasterStereoConsole.vcxproj.lys.nvuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/FasterStereoConsole/FasterStereoConsole.vcxproj.lys.nvuser -------------------------------------------------------------------------------- /FasterStereoConsole/FasterStereoConsole.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/FasterStereoConsole/FasterStereoConsole.vcxproj.user -------------------------------------------------------------------------------- /FasterStereoConsole/option_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/FasterStereoConsole/option_manager.cpp -------------------------------------------------------------------------------- /FasterStereoConsole/option_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/FasterStereoConsole/option_manager.h -------------------------------------------------------------------------------- /FasterStereoConsole/tinyxml2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/FasterStereoConsole/tinyxml2.cpp -------------------------------------------------------------------------------- /FasterStereoConsole/tinyxml2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/FasterStereoConsole/tinyxml2.h -------------------------------------------------------------------------------- /FasterStereoCuda-v19.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/FasterStereoCuda-v19.sln -------------------------------------------------------------------------------- /FasterStereoCuda/FasterStereoCuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/FasterStereoCuda/FasterStereoCuda.cpp -------------------------------------------------------------------------------- /FasterStereoCuda/FasterStereoCuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/FasterStereoCuda/FasterStereoCuda.h -------------------------------------------------------------------------------- /FasterStereoCuda/FasterStereoCuda.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/FasterStereoCuda/FasterStereoCuda.rc -------------------------------------------------------------------------------- /FasterStereoCuda/FasterStereoCuda.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/FasterStereoCuda/FasterStereoCuda.vcxproj -------------------------------------------------------------------------------- /FasterStereoCuda/FasterStereoCuda.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/FasterStereoCuda/FasterStereoCuda.vcxproj.user -------------------------------------------------------------------------------- /FasterStereoCuda/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/FasterStereoCuda/Timer.h -------------------------------------------------------------------------------- /FasterStereoCuda/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/FasterStereoCuda/resource.h -------------------------------------------------------------------------------- /FasterStereoCuda/resource1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/FasterStereoCuda/resource1.h -------------------------------------------------------------------------------- /FasterStereoCuda/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/FasterStereoCuda/types.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/README.md -------------------------------------------------------------------------------- /SgmStereoCuda/SgmStereoCuda.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/SgmStereoCuda/SgmStereoCuda.aps -------------------------------------------------------------------------------- /SgmStereoCuda/SgmStereoCuda.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/SgmStereoCuda/SgmStereoCuda.rc -------------------------------------------------------------------------------- /SgmStereoCuda/SgmStereoCuda.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/SgmStereoCuda/SgmStereoCuda.vcxproj -------------------------------------------------------------------------------- /SgmStereoCuda/SgmStereoCuda.vcxproj.lys.nvuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/SgmStereoCuda/SgmStereoCuda.vcxproj.lys.nvuser -------------------------------------------------------------------------------- /SgmStereoCuda/SgmStereoCuda.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/SgmStereoCuda/SgmStereoCuda.vcxproj.user -------------------------------------------------------------------------------- /SgmStereoCuda/StereoCuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/SgmStereoCuda/StereoCuda.cpp -------------------------------------------------------------------------------- /SgmStereoCuda/StereoCuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/SgmStereoCuda/StereoCuda.h -------------------------------------------------------------------------------- /SgmStereoCuda/StereoCudaImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/SgmStereoCuda/StereoCudaImpl.cpp -------------------------------------------------------------------------------- /SgmStereoCuda/StereoCudaImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/SgmStereoCuda/StereoCudaImpl.h -------------------------------------------------------------------------------- /SgmStereoCuda/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/SgmStereoCuda/Timer.h -------------------------------------------------------------------------------- /SgmStereoCuda/cusgm_ca.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/SgmStereoCuda/cusgm_ca.cu -------------------------------------------------------------------------------- /SgmStereoCuda/cusgm_ca.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/SgmStereoCuda/cusgm_ca.cuh -------------------------------------------------------------------------------- /SgmStereoCuda/cusgm_cc.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/SgmStereoCuda/cusgm_cc.cu -------------------------------------------------------------------------------- /SgmStereoCuda/cusgm_cc.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/SgmStereoCuda/cusgm_cc.cuh -------------------------------------------------------------------------------- /SgmStereoCuda/cusgm_df.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/SgmStereoCuda/cusgm_df.cu -------------------------------------------------------------------------------- /SgmStereoCuda/cusgm_df.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/SgmStereoCuda/cusgm_df.h -------------------------------------------------------------------------------- /SgmStereoCuda/cusgm_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/SgmStereoCuda/cusgm_types.h -------------------------------------------------------------------------------- /SgmStereoCuda/cusgm_util.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/SgmStereoCuda/cusgm_util.cu -------------------------------------------------------------------------------- /SgmStereoCuda/cusgm_util.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/SgmStereoCuda/cusgm_util.cuh -------------------------------------------------------------------------------- /SgmStereoCuda/kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/SgmStereoCuda/kernel.cu -------------------------------------------------------------------------------- /SgmStereoCuda/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/SgmStereoCuda/resource.h -------------------------------------------------------------------------------- /SgmStereoCuda/sgm_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/SgmStereoCuda/sgm_types.h -------------------------------------------------------------------------------- /SgmStereoCuda/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/SgmStereoCuda/types.h -------------------------------------------------------------------------------- /common/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/common/semaphore.h -------------------------------------------------------------------------------- /common/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/common/thread.h -------------------------------------------------------------------------------- /common/trial/trial_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/common/trial/trial_check.h -------------------------------------------------------------------------------- /library/FasterStereoCuda/dll/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /library/FasterStereoCuda/include/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /library/FasterStereoCuda/lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /library/StereoCuda/dll/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /library/StereoCuda/include/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /library/StereoCuda/lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /x64/Debug/fasterstereocuda.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethan-li-coding/FasterStereoCuda/HEAD/x64/Debug/fasterstereocuda.a --------------------------------------------------------------------------------