摘要: C++中set用法详解 #include<set> #include<iostream> using namespace std; int main() { set<int>s; int n; cin>>n; for(int i=1;i<=n;i++) { int x; cin>>x; s.inse 阅读全文
posted @ 2020-12-04 20:19 简单男孩LB 阅读(145) 评论(0) 推荐(0)
摘要: EasyPR--开发详解 我正在做一个开源的中文车牌识别系统,Git地址为:https://github.com/liuruoze/EasyPR。 我给它取的名字为EasyPR,也就是Easy to do Plate Recognition的意思。我开发这套系统的主要原因是因为我希望能够锻炼我在这方 阅读全文
posted @ 2020-12-04 17:01 简单男孩LB 阅读(681) 评论(0) 推荐(0)