
caffe
weixin_44152895
Fear of death is what keeps us alive.
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
qt+opencv+caffe 在开发板上显示
挂载:mount -t nfs -o nolock,nfsvers=3,vers=3 172.16.10.214:/home/xxp/linux/nfs/mount /mnt关闭现有界面:/etc/init.d/psplash.sh加载挂载文件夹的lib文件:cp -r /mnt/lib/. /lib代码:xxx.proQT += cor...原创 2020-04-21 16:38:28 · 212 阅读 · 0 评论 -
人脸特征点检测opencv+dlib+caffe
#include <iostream> #include <cstdlib> #include <stdio.h>#include <opencv2/opencv.hpp>#include <opencv2/dnn.hpp>#include <opencv2/dnn/shape_utils.hpp>#incl...原创 2020-04-07 23:51:09 · 371 阅读 · 0 评论 -
在嵌入式开发板上用caffe进行人脸识别
再Ubuntu上交叉编译opencv到嵌入式开发板。再用opencv调用caffe模型进行人脸识别并截图。#include <iostream> #include <cstdlib> #include <stdio.h>#include <opencv2/opencv.hpp>#include <opencv2/dnn.h...原创 2020-03-26 15:00:17 · 806 阅读 · 0 评论 -
用opencv和caffe模型来进行人脸识别。
图片识别:#include <iostream>#include <opencv2/opencv.hpp>#include <opencv2/dnn.hpp>using namespace std;using namespace cv;using namespace cv::dnn;// Set the size of image and...原创 2020-03-19 21:23:11 · 672 阅读 · 0 评论 -
Ubuntu 转换生成增加旋转图片 python
run_augmentation.py#!/usr/bin/env python3# -*- coding: utf-8 -*-import osimport argparseimport randomimport mathfrom multiprocessing import Process, cpu_countimport cv2import image_augme...原创 2020-03-02 17:09:53 · 233 阅读 · 0 评论