├── .gitignore ├── CMakeLists.txt ├── Python └── Subsense.py ├── README.md ├── Subsense.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata └── Subsense ├── API.cpp ├── API.h ├── BackgroundSubtractorLBSP.cpp ├── BackgroundSubtractorLBSP.h ├── BackgroundSubtractorLOBSTER.cpp ├── BackgroundSubtractorLOBSTER.h ├── BackgroundSubtractorSuBSENSE.cpp ├── BackgroundSubtractorSuBSENSE.h ├── DistanceUtils.h ├── LBSP.cpp ├── LBSP.h ├── LBSP_16bits_dbcross_1ch.i ├── LBSP_16bits_dbcross_3ch1t.i ├── LBSP_16bits_dbcross_3ch3t.i ├── LBSP_16bits_dbcross_s3ch.i ├── LICENSE.txt ├── README.txt └── RandUtils.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereon/subsense/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereon/subsense/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Python/Subsense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereon/subsense/HEAD/Python/Subsense.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereon/subsense/HEAD/README.md -------------------------------------------------------------------------------- /Subsense.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereon/subsense/HEAD/Subsense.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Subsense.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereon/subsense/HEAD/Subsense.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Subsense/API.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereon/subsense/HEAD/Subsense/API.cpp -------------------------------------------------------------------------------- /Subsense/API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereon/subsense/HEAD/Subsense/API.h -------------------------------------------------------------------------------- /Subsense/BackgroundSubtractorLBSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereon/subsense/HEAD/Subsense/BackgroundSubtractorLBSP.cpp -------------------------------------------------------------------------------- /Subsense/BackgroundSubtractorLBSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereon/subsense/HEAD/Subsense/BackgroundSubtractorLBSP.h -------------------------------------------------------------------------------- /Subsense/BackgroundSubtractorLOBSTER.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereon/subsense/HEAD/Subsense/BackgroundSubtractorLOBSTER.cpp -------------------------------------------------------------------------------- /Subsense/BackgroundSubtractorLOBSTER.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereon/subsense/HEAD/Subsense/BackgroundSubtractorLOBSTER.h -------------------------------------------------------------------------------- /Subsense/BackgroundSubtractorSuBSENSE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereon/subsense/HEAD/Subsense/BackgroundSubtractorSuBSENSE.cpp -------------------------------------------------------------------------------- /Subsense/BackgroundSubtractorSuBSENSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereon/subsense/HEAD/Subsense/BackgroundSubtractorSuBSENSE.h -------------------------------------------------------------------------------- /Subsense/DistanceUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereon/subsense/HEAD/Subsense/DistanceUtils.h -------------------------------------------------------------------------------- /Subsense/LBSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereon/subsense/HEAD/Subsense/LBSP.cpp -------------------------------------------------------------------------------- /Subsense/LBSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereon/subsense/HEAD/Subsense/LBSP.h -------------------------------------------------------------------------------- /Subsense/LBSP_16bits_dbcross_1ch.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereon/subsense/HEAD/Subsense/LBSP_16bits_dbcross_1ch.i -------------------------------------------------------------------------------- /Subsense/LBSP_16bits_dbcross_3ch1t.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereon/subsense/HEAD/Subsense/LBSP_16bits_dbcross_3ch1t.i -------------------------------------------------------------------------------- /Subsense/LBSP_16bits_dbcross_3ch3t.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereon/subsense/HEAD/Subsense/LBSP_16bits_dbcross_3ch3t.i -------------------------------------------------------------------------------- /Subsense/LBSP_16bits_dbcross_s3ch.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereon/subsense/HEAD/Subsense/LBSP_16bits_dbcross_s3ch.i -------------------------------------------------------------------------------- /Subsense/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereon/subsense/HEAD/Subsense/LICENSE.txt -------------------------------------------------------------------------------- /Subsense/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereon/subsense/HEAD/Subsense/README.txt -------------------------------------------------------------------------------- /Subsense/RandUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereon/subsense/HEAD/Subsense/RandUtils.h --------------------------------------------------------------------------------