人脸pts文件检查及人脸框输出
function output()
outtxt = fopen('D:\AR database\kz.txt','wt');
:
imgpath= strcat('D:\AR database\kz\',int2str(i) , '.jpg');
img = im2uint8(imread(imgpath));
shapepath = strcat(imgpath(:end-), 'pts');
shape = double(loadshape(shapepath));
bbox = getbbox(shape);
region = enlargingbbox(bbox, 1.25);
out(outtxt, imgpath, region, shape);
%drawshapes(img, shape);
%rectangle(),bbox(),bbox(),bbox()]);
%rectangle(),region(),region(),region()]);
%i
%w = waitforbuttonpress;
end
fclose(outtxt);
end
function out(outtxt, imgpath, region, shape)
fprintf(outtxt, '%s ', imgpath);
fprintf(outtxt, ),region(),region(),region());
fprintf(outtxt, , );
:
shapes2(i, ) = shape(i, ) - region();
shapes2(i, ) = shape(i, ) - region();
fprintf(outtxt, ), shapes2(i, ));
end
fprintf(outtxt, '\n');
end
function shape = loadshape(path)
% function: load shape from pts file
file = fopen(path);
if ~isempty(strfind(path, 'COFW'))
shape = textscan(file, , );
else
shape = textscan(file, , );
end
fclose(file);
shape = shape{};
end
function drawshapes(img, shapes)
%DRAWSHAPE Summary of this function goes here
% Function: draw face landmarks on img
% Detailed explanation goes here
% Input:
% img: input image
% shapes: given face shapes
imshow(img);
hold on;
colors = {'r.' 'g.' 'b.' 'c.' 'm.' 'y.' 'k.'};
:size(shapes, )/ %
:size(shapes, ) %
scatter(shapes(*(s-) + ), shapes(*s),'w.');
scatter(shapes(*(s-) + ), shapes(*s),'k');
%text(shapes(*(s-) + ),shapes(*s),{is},'color','r');
end
end
end
function bbox = getbbox(shape)
%GETBBOX Summary of this function goes here
% Function: get the bounding box of given shape
% Detailed explanation goes here
% Input:
% shape: the shape of face
% Output:
% bbox: the bounding box of given face shape
bbox = zeros(, );
left_x = min(shape(:, ));
right_x = max(shape(:, ));
top_y = min(shape(:, ));
bottom_y = max(shape(:, ));
bbox() = left_x;
bbox() = top_y;
bbox() = right_x - left_x + ;
bbox() = bottom_y - top_y + ;
end
function region = enlargingbbox(bbox, scale)
region() = floor(bbox() - (scale - )/*bbox());
region() = floor(bbox() - (scale - )/*bbox());
region() = floor(scale*bbox());
region() = floor(scale*bbox());
% region.right_x = floor(region.left_x + region.width - );
% region.bottom_y = floor(region.top_y + region.height - );
end
人脸pts文件检查及人脸框输出的更多相关文章
- 将Mat类型坐标数据生成pts文件
前言 获取人脸特征点的坐标信息之后,想要将坐标信息shape保存为pts/asf/txt等文件格式,本文就对此进行实现. 实现过程 1.确定pts文件的书写格式: 以要生成的文件为例,书写格式如下: ...
- 百度人脸识别api及face++人脸识别api测试(python)
一.百度人脸识别服务 1.官方网址:http://apistore.baidu.com/apiworks/servicedetail/464.html 2.提供的接口包括: 2.1 多人脸比对:请求多 ...
- ASP.NET MVC 4 (十一) Bundles和显示模式--asp.net mvc中 @Scripts.Render("~/bundles/jquery")是什么意思? 在布局文件中使用Scripts.Render()输出脚本包,Styles.Render()输出风格包:
ASP.NET MVC 4 (十一) Bundles和显示模式 ASP.NET MVC 4 引入的js打包压缩功能.打包压缩jquery目录下的文件,在布局文件中使用Scripts.Render()输 ...
- opencv实现人脸识别(二) 人脸图像采集模块
这一步我们开始搭建第一个模块,用来检测到图像中的人脸位置,并将它拍下来保存在指定路径 流程图: 代码实现: import cv2 def pic(cam): # 调用笔记本内置摄像头,所以参数为0,如 ...
- .gho文件检查
虽然目前windows10的接受程度越来越广泛,但我接触到的一些非IT人士还是钟爱于windows7系统,本文记录一下在使用ghost还原系统遇到的问题. gho还原失败 在还原ghost系统过程中, ...
- jQuery检查复选框是否被选
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content ...
- 转《trackingjs+websocket+百度人脸识别API,实现人脸签到》流程
先用websocket与后台建立通讯:用trackingjs在页面调用电脑摄像头,监听人脸,发现有人脸进入屏幕了,就把图片转成base64字符串,通过websocket发送到后端:后端拿到图片,调用百 ...
- python工具 - alert弹框输出姓名年龄、求和
使用python自带的tkinter库进行GUI编程,完成两个功能: (1)要求用户输入姓名和年龄然后打印出来 (2)要求用户输入一个数字,然后计算1到该数字之间的和 代码部分: # 导入tkinte ...
- python筛选特定文件的信息按照格式输出到txt
最近搞数据库,为了把图片文件的信息导入数据库表中,我开始研究python列出图片文件,其中发现因为IE临时文件里有非常多的不需要的图片,就需要筛选掉一些文件. 最终用python输出了所有需要的图片文 ...
随机推荐
- 【POJ】1062 昂贵的聘礼(spfa)
http://poj.org/problem?id=1062 此题一开始果断想到暴力.. 但是n<=100果断不行. 一看题解,噗!最短路... 构图很巧妙. 每一个物品对应的所需物品相当于一个 ...
- Javascript Math ceil()、floor()、round()三个函数的区别
Round是四舍五入的...Ceiling是向上取整..float是向下取整. ceil():将小数部分一律向整数部分进位. 如: Math.ceil(12.2)//返回13 Math.ceil(12 ...
- CSS实现样式布局
使用CSS建站时,您肯定遇到过形形色色的布局问题,最后可能被搞得焦头烂额.本文的目的是让您的设计过程更为容易,当您遇到困难时为您提供快速参考. 1.有疑问,先验证 在调试时,先对您的代码进行验证往往能 ...
- Add SSH Key to GitLab on Windows
Download Git for windows Open Git Bash Type in "ssh-keygen -t rsa", and then press Enter b ...
- Qt make clickable label 制作可点击的Label控件
Qt中的Label标签控件的作用绝不仅仅限于显示静态文本,其实它的功能很强大,由于其有setPixmap()成员函数,故而可以当显示图片窗口使用,而且还可以实时显示摄像头捕获的图片,然后它对鼠标事件的 ...
- JBoss错误
jboss进程在启动时碰到Address already in use: JVM_Bind /0.0.0.0:8080错误. 这个错误的含义是8080端口被占用了. 解决方法: 方法1: 开始--运行 ...
- metasploit 常用命令汇总
1.连接数据并显示一些信息 db_connet username:password@ip address/database name db_destroy 同上 db_import 文件名字 db_h ...
- ERROR com.opensymphony.xwork2.interceptor.ParametersInterceptor.error:34 - Developer Notification
We are trying to migrate from Struts 2.2 to Struts 2.3, after getting to run the project I am seeing ...
- FZU 2124 bfs+vis记录
第一次团队训练赛的题 自己看完题没看到不能用舌头吃道具..以为是什么贪心混合bfs..果断放弃..悄悄的背锅了 然后其实比较简单 只是利用vis记录的时候要分两种状态记录 有没有道具 每到一个地方 就 ...
- 使用php作linux自动执行脚本
使用php作linux自动执行脚本 [来源] 达内 [编辑] 达内 [时间]2013-03-21 在作社区时, 时常需要统计上线人数等数据. 一般做法是, 把这段代码放在用户 login或者 ...