当前位置: 首页 > news >正文

平面设计最常用的网站百度关键词排名联系方式

平面设计最常用的网站,百度关键词排名联系方式,青岛做网站的公司哪家好,百度网站开发语言文章目录 0 前言1 技术介绍1.1 技术概括1.2 目前表情识别实现技术 2 实现效果3 深度学习表情识别实现过程3.1 网络架构3.2 数据3.3 实现流程3.4 部分实现代码 4 最后 0 前言 #x1f525; 优质竞赛项目系列#xff0c;今天要分享的是 基于深度学习的人脸表情识别 该项目较… 文章目录 0 前言1 技术介绍1.1 技术概括1.2 目前表情识别实现技术 2 实现效果3 深度学习表情识别实现过程3.1 网络架构3.2 数据3.3 实现流程3.4 部分实现代码 4 最后 0 前言 优质竞赛项目系列今天要分享的是 基于深度学习的人脸表情识别 该项目较为新颖适合作为竞赛课题方向学长非常推荐 更多资料, 项目分享 https://gitee.com/dancheng-senior/postgraduate 1 技术介绍 1.1 技术概括 面部表情识别技术源于1971年心理学家Ekman和Friesen的一项研究他们提出人类主要有六种基本情感每种情感以唯一的表情来反映当时的心理活动这六种情感分别是愤怒anger、高兴(happiness)、悲伤 (sadness)、惊讶(surprise)、厌恶(disgust)和恐惧(fear)。 尽管人类的情感维度和表情复杂度远不是数字6可以量化的但总体而言这6种也差不多够描述了。 1.2 目前表情识别实现技术 2 实现效果 废话不多说先上实现效果 3 深度学习表情识别实现过程 3.1 网络架构 面部表情识别CNN架构改编自 埃因霍芬理工大学PARsE结构图 其中通过卷积操作来创建特征映射将卷积核挨个与图像进行卷积从而创建一组要素图并在其后通过池化pooling操作来降维。 3.2 数据 主要来源于kaggle比赛下载地址。 有七种表情类别 (0Angry, 1Disgust, 2Fear, 3Happy, 4Sad, 5Surprise, 6Neutral). 数据是48x48 灰度图格式比较奇葩。 第一列是情绪分类第二列是图像的numpy第三列是train or test。 3.3 实现流程 3.4 部分实现代码 ​ import cv2import sysimport jsonimport numpy as npfrom keras.models import model_from_jsonemotions [angry, fear, happy, sad, surprise, neutral]cascPath sys.argv[1]faceCascade cv2.CascadeClassifier(cascPath)noseCascade cv2.CascadeClassifier(cascPath)# load json and create model archjson_file open(model.json,r)loaded_model_json json_file.read()json_file.close()model model_from_json(loaded_model_json)# load weights into new modelmodel.load_weights(model.h5)# overlay meme facedef overlay_memeface(probs):if max(probs) 0.8:emotion emotions[np.argmax(probs)]return meme_faces/{}-{}.png.format(emotion, emotion)else:index1, index2 np.argsort(probs)[::-1][:2]emotion1 emotions[index1]emotion2 emotions[index2]return meme_faces/{}-{}.png.format(emotion1, emotion2)def predict_emotion(face_image_gray): # a single cropped faceresized_img cv2.resize(face_image_gray, (48,48), interpolation cv2.INTER_AREA)# cv2.imwrite(str(index).png, resized_img)image resized_img.reshape(1, 1, 48, 48)list_of_list model.predict(image, batch_size1, verbose1)angry, fear, happy, sad, surprise, neutral [prob for lst in list_of_list for prob in lst]return [angry, fear, happy, sad, surprise, neutral]video_capture cv2.VideoCapture(0)while True:# Capture frame-by-frameret, frame video_capture.read()img_gray cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY,1)faces faceCascade.detectMultiScale(img_gray,scaleFactor1.1,minNeighbors5,minSize(30, 30),flagscv2.cv.CV_HAAR_SCALE_IMAGE)# Draw a rectangle around the facesfor (x, y, w, h) in faces:face_image_gray img_gray[y:yh, x:xw]filename overlay_memeface(predict_emotion(face_image_gray))print filenamememe cv2.imread(filename,-1)# meme (meme/256).astype(uint8)try:meme.shape[2]except:meme meme.reshape(meme.shape[0], meme.shape[1], 1)# print meme.dtype# print meme.shapeorig_mask meme[:,:,3]# print orig_mask.shape# memegray cv2.cvtColor(orig_mask, cv2.COLOR_BGR2GRAY)ret1, orig_mask cv2.threshold(orig_mask, 10, 255, cv2.THRESH_BINARY)orig_mask_inv cv2.bitwise_not(orig_mask)meme meme[:,:,0:3]origMustacheHeight, origMustacheWidth meme.shape[:2]roi_gray img_gray[y:yh, x:xw]roi_color frame[y:yh, x:xw]# Detect a nose within the region bounded by each face (the ROI)nose noseCascade.detectMultiScale(roi_gray)for (nx,ny,nw,nh) in nose:# Un-comment the next line for debug (draw box around the nose)#cv2.rectangle(roi_color,(nx,ny),(nxnw,nynh),(255,0,0),2)# The mustache should be three times the width of the nosemustacheWidth 20 * nwmustacheHeight mustacheWidth * origMustacheHeight / origMustacheWidth# Center the mustache on the bottom of the nosex1 nx - (mustacheWidth/4)x2 nx nw (mustacheWidth/4)y1 ny nh - (mustacheHeight/2)y2 ny nh (mustacheHeight/2)# Check for clippingif x1 0:x1 0if y1 0:y1 0if x2 w:x2 wif y2 h:y2 h# Re-calculate the width and height of the mustache imagemustacheWidth (x2 - x1)mustacheHeight (y2 - y1)# Re-size the original image and the masks to the mustache sizes# calcualted abovemustache cv2.resize(meme, (mustacheWidth,mustacheHeight), interpolation cv2.INTER_AREA)mask cv2.resize(orig_mask, (mustacheWidth,mustacheHeight), interpolation cv2.INTER_AREA)mask_inv cv2.resize(orig_mask_inv, (mustacheWidth,mustacheHeight), interpolation cv2.INTER_AREA)# take ROI for mustache from background equal to size of mustache imageroi roi_color[y1:y2, x1:x2]# roi_bg contains the original image only where the mustache is not# in the region that is the size of the mustache.roi_bg cv2.bitwise_and(roi,roi,mask mask_inv)# roi_fg contains the image of the mustache only where the mustache isroi_fg cv2.bitwise_and(mustache,mustache,mask mask)# join the roi_bg and roi_fgdst cv2.add(roi_bg,roi_fg)# place the joined image, saved to dst back over the original imageroi_color[y1:y2, x1:x2] dstbreak# cv2.rectangle(frame, (x, y), (xw, yh), (0, 255, 0), 2)# angry, fear, happy, sad, surprise, neutral predict_emotion(face_image_gray)# text1 Angry: {} Fear: {} Happy: {}.format(angry, fear, happy)# text2 Sad: {} Surprise: {} Neutral: {}.format(sad, surprise, neutral)## cv2.putText(frame, text1, (50, 50), cv2.FONT_HERSHEY_SIMPLEX, 2, (255, 0, 0), 3)# cv2.putText(frame, text2, (50, 150), cv2.FONT_HERSHEY_SIMPLEX, 2, (255, 0, 0), 3)# Display the resulting framecv2.imshow(Video, frame)if cv2.waitKey(1) 0xFF ord(q):break# When everything is done, release the capturevideo_capture.release()cv2.destroyAllWindows() 4 最后 更多资料, 项目分享 https://gitee.com/dancheng-senior/postgraduate
http://www.w-s-a.com/news/606724/

相关文章:

  • 高端网站建设wanghess网站开发售后服务承诺
  • 江西网站建设费用企业网站推广的方法有( )
  • 中国十大网站开发公司企业网站建设的要素有哪些
  • 网站防站做网站吉林
  • 嘉定区网站建设公司企业信息公示查询系统官网
  • 一个具体网站的seo优化产品介绍网站模板下载地址
  • 怎么做网站在网上能搜到你哈尔滨网站建立公司
  • 做家旅游的视频网站上海百度公司总部
  • 微信小程序公司网站怎么制作区块链平台定制开发
  • 网站资质优化ip地址域名解析
  • 如何搭建个人网站ps做网站首页怎么运用起来
  • 中小企业商务网站建设wordpress 安全加固
  • asp网站开发设计文档php建设网站怎么用
  • 服装公司网站建设需求分析报告seo搜索引擎优化实战
  • wordpress 扒站最近最新新闻
  • 手机wap网站开发与设计wordpress域名无法访问
  • 百度收录网站收费吗做网站用vs还是dw
  • 维度网络专业做网站嘉兴网站建设方案服务
  • 成品电影网站建设中国最顶尖设计师
  • 网站建设报价清单明细视频网站如何做营销
  • 建设农业网站的论文做国外网站有哪些
  • 怎么做网页 网站制作张家港网站制作哪家好
  • 创世网站建设公司书籍封面设计网站
  • 国外优秀网站设计欣赏小程序推广赚佣金
  • 徐州人才网官方网站邯郸seo优化公司
  • 海南响应式网站建设哪里好瑞安电影城网站建设
  • wordpress widgetkit济南优化网站厂家
  • 麦片网站建设佛山短视频推广渠道
  • 免费自助建网站销售的网络建设
  • 传媒大气的网站网站怎么做分类聚合