gpt4 book ai didi

c++ - 序列化人脸特征以在 DLIB 中进行识别

转载 作者:行者123 更新时间:2023-12-03 12:48:27 54 4
gpt4 key购买 nike

我正在编写一个 dlib 代码来进行一对一的人脸识别。

我遵循 dlib samples 中的代码示例并执行了以下操作:

std::vector<matrix<rgb_pixel>> faces;
for (auto face : detector(img1))
{
auto shape = sp(img1, face);
matrix<rgb_pixel> face_chip;
extract_image_chip(img1, get_face_chip_details(shape, 150, 0.25), face_chip);
faces.push_back(move(face_chip));
}

这是针对第一张图像的,然后对第二张图像执行相同的操作:

for (auto face : detector(img2))
{
auto shape = sp(img2, face);
matrix<rgb_pixel> face_chip;
extract_image_chip(img2, get_face_chip_details(shape, 150, 0.25), face_chip);
faces.push_back(move(face_chip));
}

然后我按照提到的链接继续:

std::vector<matrix<float, 0, 1>> face_descriptors = net(faces);
std::vector<sample_pair> edges;
for (size_t i = 0; i < face_descriptors.size(); ++i)
{
for (size_t j = i; j < face_descriptors.size(); ++j)
{
if (length(face_descriptors[i] - face_descriptors[j]) < threshold)
edges.push_back(sample_pair(i, j));
}
}
std::vector<unsigned long> labels;
const int num_clusters = chinese_whispers(edges, labels);
//etc

现在我的问题来了。 img1 是一个已经可供代码读取的图像,当我需要匹配特定的人时。 (即,如果我想对 personX 进行处理,则使用

读取 img1
load_image(img1, "personX.jpg");

我没有保存图像,而是尝试保存特征并加载它们以减少提取特征所花费的时间。所以我所做的是将第一个 for 循环移至不同的函数(例如注册),并使其类似于以下内容:

std::vector<matrix<rgb_pixel>> faces;
for (auto face : detector(img1))
{
auto shape = sp(img1, face);
matrix<rgb_pixel> face_chip;
extract_image_chip(img1, get_face_chip_details(shape, 150, 0.25), face_chip);
serialize("personX.dat") <<face_chip;
}

然后在识别处而不是我使用的循环

matrix<rgb_pixel> face_chip;
deserialize("personX.dat")>>face_chip;
faces.push_back(move(face_chip));

从提取 img2 开始的其余代码保持不变。编译的代码。但在执行过程中,当我达到识别时,我最终出现以下错误:

**************************** 检测到 fatal error **************** **********

在第 216 行检测到错误。在文件/usr/local/include/dlib/dnn/input.h 中检测到错误。函数中检测到错误 void dlib::input_rgb_image_sized::to_tensor(forward_iterator,forward_iterator, dlib::ressized_tensor&) const [withforward_iterator = __gnu_cxx::__normal_iterator*, std::vector >>;长无符号整型 NR = 150ul;长无符号整型 NC = 150ul]。

失败的表达式是 i->nr()==NR && i->nc()==NC input_rgb_image_sized::to_tensor()

所有输入图像必须有 150 行和 150 列,但我们得到的图像有 0 行和 0 列。

序列化/反序列化有问题吗?或者我应该使用其他方法将功能写入文件?

完整功能的代码:

try
{
load_image(img1, check_image);
}
catch (...)
{
cout<<"Name: "<<uname<<" doesn't exist"<<endl;
return;
}

else
{
QElapsedTimer timer;
timer.start();


dlib::assign_image(img2, dlib::cv_image<bgr_pixel>(colorImage));
std::vector<matrix<rgb_pixel>> faces;

for (auto face : detector(img1))
{
auto shape = sp(img1, face);
matrix<rgb_pixel> face_chip;
extract_image_chip(img1, get_face_chip_details(shape, 150, 0.25), face_chip);
faces.push_back(move(face_chip));
// serialize("out.dat")<<face_chip; //used whin i dont need to read image
}

// matrix<rgb_pixel> face_chip; //used whin i dont need to read image
// deserialize("out.dat")>>face_chip; //used whin i dont need to read image
// faces.push_back(move(face_chip)); //used whin i dont need to read image

cout<<"Time to extract features for enroled image: "<<timer.elapsed()<<endl;
timer.restart();

for (auto face : detector(img2))
{
auto shape = sp(img2, face);
matrix<rgb_pixel> face_chip;
extract_image_chip(img2, get_face_chip_details(shape, 150, 0.25), face_chip);
faces.push_back(move(face_chip));
}

cout<<"Time to extract features for new image: "<<timer.elapsed()<<endl;
timer.restart();

if (faces.size() < 2)
{
cout<<"No Face"<<endl;
}

else
{
std::vector<matrix<float, 0, 1>> face_descriptors = net(faces);
std::vector<sample_pair> edges;
for (size_t i = 0; i < face_descriptors.size(); ++i)
{
for (size_t j = i; j < face_descriptors.size(); ++j)
{
if (length(face_descriptors[i] - face_descriptors[j]) < threshold)
edges.push_back(sample_pair(i, j));
}
}
std::vector<unsigned long> labels;
const int num_clusters = chinese_whispers(edges, labels);

if (num_clusters == 1)
{
cout<<"Recognized"<<endl;
}
else
{
cout<<"Faces don't match";
}
}

cout<<"Needed time is: "<<timer.elapsed()<<" ms"<<endl;
}

最佳答案

我没有序列化矩阵,而是序列化输出 vector (面)。

serialize("personX.dat")<<faces;

然后在进行识别时,我反序列化了 dat 文件并使用了生成的 vector :

std::vector<matrix<rgb_pixel>> faces;
deserialize("out.dat")>>faces;
for (auto face : detector(img2))
{
auto shape = sp(img2, face);
matrix<rgb_pixel> face_chip;
extract_image_chip(img2, get_face_chip_details(shape, 150, 0.25), face_chip);
faces.push_back(move(face_chip));
}

我按照问题中提到的继续。

我不知道这是否是最好的方法......但它有效。

关于c++ - 序列化人脸特征以在 DLIB 中进行识别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50606403/

54 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com