How to port Desktop trained SVM model to OpenCV4Android?
Can someone please tell me how can I use a SVM model trained in OpenCV C++ environment into an Android app.
Asked: 2015-07-06 17:24:57 -0600
Seen: 302 times
Last updated: Jul 06 '15
svm.save("mysvm.yml.gz");
on your pc, put the yml.gz file onto your sdcard (no, not the assets or inside the apk), and usesvm.load("mysvm.yml.gz");
in java.