↧
Answer by pklab for I want to develop a database of face image detected by...
Doesn't look and OpenCV question... agree ? Anyway: - DBMS is a way. SQLite works very good also for large record count and it can easily enclosed in your C++ application. Binary blob is supported too...
View ArticleComment by berak for I want to develop a database of face image detected by...
are you trying to collect train data for a face-recognition later ?
View ArticleComment by berak for I want to develop a database of face image detected by...
store the images on disk, filenames and id's in a csv file. it's easy to convert/load this into any rdbm like sqlite. storing train images in a db is imho a bad idea, since you always need *all* of...
View ArticleSave the detected face with ID
I want to develop a database of face image detected by camera. When camera detect a face, system will ask user to key in the person identity and save it in the database. Which means, my database...
View Article