摘要: 1.这篇文章究竟讲了什么问题? 这篇文章讨论了试图通过VR刺激情感在当前的可能性以及作者的经验。探讨了如何使用不同的设计方面和功能,描述了它们在情感虚拟现实体验开发中的贡献和好处。探索VR工具提供的广阔设计空间,将其与情感机制和情感方面联系起来,为VR设计师提供基本提示。 2.这是否是一个新的问题? 阅读全文
posted @ 2022-02-11 10:57 快乐码小农 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 混淆矩阵: predicted and groundtruth: 2 0 0 0 2 0 0 2 2 2 4 4 1 1 2 0 4 4 4 1 1 4 0 1 1 1 4 1 1 1 得到: 0 1 2 4 0 0 0 2 0 1 1 2 4 1 2 0 0 0 0 4 3 0 0 1 第一行为预 阅读全文
posted @ 2021-10-03 18:22 快乐码小农 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 字体样式: 链接:https://pan.baidu.com/s/12mEsq6HXNgX1kVIx9UAcZA 提取码:573z 阅读全文
posted @ 2021-09-13 14:11 快乐码小农 阅读(640) 评论(0) 推荐(0) 编辑
摘要: c++复现数据集预处理过程,参考源码: https://github.com/genbing99/SoftNet-SpotME extraction_preprocess.py #include <opencv2/opencv.hpp> #include <direct.h> #include <i 阅读全文
posted @ 2021-07-29 15:58 快乐码小农 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 计算optical flow以及strain,作为微表情识别的输入 #include <iostream> #include <opencv2/opencv.hpp> class OptFlowStrain { public: typedef struct _flow_strain { cv::Ma 阅读全文
posted @ 2021-07-29 02:38 快乐码小农 阅读(199) 评论(0) 推荐(0) 编辑
摘要: opencv cvMat 彩色图像转为dlibarray2d #include <dlib/image_processing/frontal_face_detector.h> #include <dlib/gui_widgets.h> #include <dlib/image_io.h> #incl 阅读全文
posted @ 2021-07-26 18:27 快乐码小农 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 根据landmark,标记出人脸左右眼,和嘴巴, 环境windows7 64位。 根据测试,左眼的点为:36至41,最左边位36,上面37,38,右边39,下边41,40 右眼,最左边42,上面43,44,右边45,下边47,46 嘴巴,最左边48,右边54,上边 49至53,下边,55至58. # 阅读全文
posted @ 2021-07-18 20:08 快乐码小农 阅读(732) 评论(0) 推荐(0) 编辑
摘要: 三线表 \begin{table}[htbp] \centering \caption{\label{tab:test}table test.} \begin{tabular}{lcl} \toprule .. & .. & .. \\ \midrule .. & .. & .. \\ .. & . 阅读全文
posted @ 2021-06-24 07:52 快乐码小农 阅读(40) 评论(0) 推荐(0) 编辑
摘要: vot配置红外数据集时,需要修改以下几点: 1. [state, ~] = ncc_initialize(imread(image), region); 改为 [state, ~] = ncc_initialize(imread(image{1}), region); 2. [state, regi 阅读全文
posted @ 2021-04-21 20:22 快乐码小农 阅读(136) 评论(0) 推荐(0) 编辑
摘要: python继承 class parent(object): def __init__(self): super(parent, self).__init__() self.func = None def func_hand(self): self.func() def printf(): prin 阅读全文
posted @ 2021-03-06 10:12 快乐码小农 阅读(44) 评论(0) 推荐(0) 编辑