├── .cproject ├── .gitignore ├── .project ├── BOWAssigner.cpp ├── BOWAssigner.h ├── Combined.model ├── FPFH.model ├── FPFHVocab.dat ├── HOG.model ├── HOGVocab.dat ├── LicensePreamble.txt ├── OCLCommon.cpp ├── OCLCommon.h ├── OCLMain.cpp ├── OCLPose3D.cpp ├── OCLPose3D.h ├── OCLUtils.cpp ├── OCLUtils.h ├── ObjectClassification.vcxproj ├── ObjectClassification.vcxproj.filters ├── ObjectClassification.vcxproj.user ├── ObjectClassifier.cpp ├── ObjectClassifier.h ├── ObjectDescription.cpp ├── ObjectDescription.h ├── README.md ├── SIFT.model ├── SIFTVocab.dat ├── SVMUtils.hpp ├── TestClouds ├── Axe.ply ├── CartoonCup.ply ├── MinuteMaid.ply └── OrangeJuice.ply ├── svm.cpp └── svm.h /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkduncan/RGBDObjectClassification/HEAD/.cproject -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Disregard certain folders 2 | .svn/ 3 | Release/ 4 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkduncan/RGBDObjectClassification/HEAD/.project -------------------------------------------------------------------------------- /BOWAssigner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkduncan/RGBDObjectClassification/HEAD/BOWAssigner.cpp -------------------------------------------------------------------------------- /BOWAssigner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkduncan/RGBDObjectClassification/HEAD/BOWAssigner.h -------------------------------------------------------------------------------- /Combined.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkduncan/RGBDObjectClassification/HEAD/Combined.model -------------------------------------------------------------------------------- /FPFH.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkduncan/RGBDObjectClassification/HEAD/FPFH.model -------------------------------------------------------------------------------- /FPFHVocab.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkduncan/RGBDObjectClassification/HEAD/FPFHVocab.dat -------------------------------------------------------------------------------- /HOG.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkduncan/RGBDObjectClassification/HEAD/HOG.model -------------------------------------------------------------------------------- /HOGVocab.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkduncan/RGBDObjectClassification/HEAD/HOGVocab.dat -------------------------------------------------------------------------------- /LicensePreamble.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkduncan/RGBDObjectClassification/HEAD/LicensePreamble.txt -------------------------------------------------------------------------------- /OCLCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkduncan/RGBDObjectClassification/HEAD/OCLCommon.cpp -------------------------------------------------------------------------------- /OCLCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkduncan/RGBDObjectClassification/HEAD/OCLCommon.h -------------------------------------------------------------------------------- /OCLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkduncan/RGBDObjectClassification/HEAD/OCLMain.cpp -------------------------------------------------------------------------------- /OCLPose3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkduncan/RGBDObjectClassification/HEAD/OCLPose3D.cpp -------------------------------------------------------------------------------- /OCLPose3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkduncan/RGBDObjectClassification/HEAD/OCLPose3D.h -------------------------------------------------------------------------------- /OCLUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkduncan/RGBDObjectClassification/HEAD/OCLUtils.cpp -------------------------------------------------------------------------------- /OCLUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkduncan/RGBDObjectClassification/HEAD/OCLUtils.h -------------------------------------------------------------------------------- /ObjectClassification.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkduncan/RGBDObjectClassification/HEAD/ObjectClassification.vcxproj -------------------------------------------------------------------------------- /ObjectClassification.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkduncan/RGBDObjectClassification/HEAD/ObjectClassification.vcxproj.filters -------------------------------------------------------------------------------- /ObjectClassification.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkduncan/RGBDObjectClassification/HEAD/ObjectClassification.vcxproj.user -------------------------------------------------------------------------------- /ObjectClassifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkduncan/RGBDObjectClassification/HEAD/ObjectClassifier.cpp -------------------------------------------------------------------------------- /ObjectClassifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkduncan/RGBDObjectClassification/HEAD/ObjectClassifier.h -------------------------------------------------------------------------------- /ObjectDescription.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkduncan/RGBDObjectClassification/HEAD/ObjectDescription.cpp -------------------------------------------------------------------------------- /ObjectDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkduncan/RGBDObjectClassification/HEAD/ObjectDescription.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkduncan/RGBDObjectClassification/HEAD/README.md -------------------------------------------------------------------------------- /SIFT.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkduncan/RGBDObjectClassification/HEAD/SIFT.model -------------------------------------------------------------------------------- /SIFTVocab.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkduncan/RGBDObjectClassification/HEAD/SIFTVocab.dat -------------------------------------------------------------------------------- /SVMUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkduncan/RGBDObjectClassification/HEAD/SVMUtils.hpp -------------------------------------------------------------------------------- /TestClouds/Axe.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkduncan/RGBDObjectClassification/HEAD/TestClouds/Axe.ply -------------------------------------------------------------------------------- /TestClouds/CartoonCup.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkduncan/RGBDObjectClassification/HEAD/TestClouds/CartoonCup.ply -------------------------------------------------------------------------------- /TestClouds/MinuteMaid.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkduncan/RGBDObjectClassification/HEAD/TestClouds/MinuteMaid.ply -------------------------------------------------------------------------------- /TestClouds/OrangeJuice.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkduncan/RGBDObjectClassification/HEAD/TestClouds/OrangeJuice.ply -------------------------------------------------------------------------------- /svm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkduncan/RGBDObjectClassification/HEAD/svm.cpp -------------------------------------------------------------------------------- /svm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkduncan/RGBDObjectClassification/HEAD/svm.h --------------------------------------------------------------------------------