• 大小: 1KB
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2021-05-13
  • 语言: Python
  • 标签: python  特征提取  

资源简介

基于python3.0实现人脸特征的提取,提取获取到的人脸图像的特征

资源截图

代码片段和文件信息

#coding=utf-8

“““
Author:wepon
Code:https://github.com/wepe

File: get_feature_map.py
1.  visualize feature map of Convolution layer Fully Connected layer
2.  rewrite the code so you can treat CNN as feature extractor see file: cnn-svm.py

--
2016.06.06更新:
keras的API已经发生变化,现在可视化特征图可以直接调用接口,具体请参考:http://keras.io/visualization/


“““
from __future__ import print_function
import pickletheano
import matplotlib.pyplot as plt
import matplotlib.cm as cm
import cv2
import sys
import gc
from face_train_use_keras import Model
#load the saved model
model = Model()
model.load_model(file_path=‘F:/wget/FaceDetectionAndRecognition-master/me.face.model.h5‘)


#define theano funtion to get output of  FC layer
get_feature = theano.funct

评论

共有 条评论