C++人臉去重後的人臉特徵128維向量寫入CSV文件操作

補充知識:

代碼如下: 

ofstream outFile;
outFile.open("face_data.csv", ios::out); 

outFile << "ID"<< m <<": "<<trans(face_descriptors[g]) ;
outFile.close();

運行結果:

 128維向量寫入的CSV文件

參考鏈接: 

https://www.cnblogs.com/alazalazalaz/p/4060258.html
https://blog.csdn.net/weixin_40583386/article/details/78540749?depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromBaidu-10&utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromBaidu-10

https://blog.csdn.net/CSDN_dzh/article/details/80804274

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章