【OpenCV】Switching Eds: Face swapping

2024-03-11 06:48

本文主要是介绍【OpenCV】Switching Eds: Face swapping,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Switching Eds: Face swapping with Python, dlib, and OpenCV

Face Swap using OpenCV ( C++ / Python )


肤色变换:

void specifiyHistogram(const cv::Mat source_image, cv::Mat target_image, cv::Mat mask)
{int source_hist_int[3][256];int target_hist_int[3][256];float source_histogram[3][256];float target_histogram[3][256];std::memset(source_hist_int, 0, sizeof(int) * 3 * 256);std::memset(target_hist_int, 0, sizeof(int) * 3 * 256);for (size_t i = 0; i < mask.rows; i++){auto current_mask_pixel = mask.row(i).data;auto current_source_pixel = source_image.row(i).data;auto current_target_pixel = target_image.row(i).data;for (size_t j = 0; j < mask.cols; j++){if (*current_mask_pixel != 0) {source_hist_int[0][*current_source_pixel]++;source_hist_int[1][*(current_source_pixel + 1)]++;source_hist_int[2][*(current_source_pixel + 2)]++;target_hist_int[0][*current_target_pixel]++;target_hist_int[1][*(current_target_pixel + 1)]++;target_hist_int[2][*(current_target_pixel + 2)]++;}// Advance to next pixelcurrent_source_pixel += 3;current_target_pixel += 3;current_mask_pixel++;}}// Calc CDFfor (size_t i = 1; i < 256; i++){source_hist_int[0][i] += source_hist_int[0][i - 1];source_hist_int[1][i] += source_hist_int[1][i - 1];source_hist_int[2][i] += source_hist_int[2][i - 1];target_hist_int[0][i] += target_hist_int[0][i - 1];target_hist_int[1][i] += target_hist_int[1][i - 1];target_hist_int[2][i] += target_hist_int[2][i - 1];}// Normalize CDFfor (size_t i = 0; i < 256; i++){source_histogram[0][i] = (source_hist_int[0][i] ? (float)source_hist_int[0][i] / source_hist_int[0][255] : 0);source_histogram[1][i] = (source_hist_int[1][i] ? (float)source_hist_int[1][i] / source_hist_int[1][255] : 0);source_histogram[2][i] = (source_hist_int[2][i] ? (float)source_hist_int[2][i] / source_hist_int[2][255] : 0);target_histogram[0][i] = (target_hist_int[0][i] ? (float)target_hist_int[0][i] / target_hist_int[0][255] : 0);target_histogram[1][i] = (target_hist_int[1][i] ? (float)target_hist_int[1][i] / target_hist_int[1][255] : 0);target_histogram[2][i] = (target_hist_int[2][i] ? (float)target_hist_int[2][i] / target_hist_int[2][255] : 0);}// Create lookup tableauto binary_search = [&](const float needle, const float haystack[]) -> uint8_t{uint8_t l = 0, r = 255, m;while (l < r){m = (l + r) / 2;if (needle > haystack[m])l = m + 1;elser = m - 1;}// TODO check closest valuereturn m;};uint8_t LUT[3][256];for (size_t i = 0; i < 256; i++){LUT[0][i] = binary_search(target_histogram[0][i], source_histogram[0]);LUT[1][i] = binary_search(target_histogram[1][i], source_histogram[1]);LUT[2][i] = binary_search(target_histogram[2][i], source_histogram[2]);}// repaint pixelsfor (size_t i = 0; i < mask.rows; i++){auto current_mask_pixel = mask.row(i).data;auto current_target_pixel = target_image.row(i).data;for (size_t j = 0; j < mask.cols; j++){if (*current_mask_pixel != 0){*current_target_pixel = LUT[0][*current_target_pixel];*(current_target_pixel + 1) = LUT[1][*(current_target_pixel + 1)];*(current_target_pixel + 2) = LUT[2][*(current_target_pixel + 2)];}// Advance to next pixelcurrent_target_pixel += 3;current_mask_pixel++;}}
}


这篇关于【OpenCV】Switching Eds: Face swapping的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/796984

相关文章

使用Python和OpenCV库实现实时颜色识别系统

《使用Python和OpenCV库实现实时颜色识别系统》:本文主要介绍使用Python和OpenCV库实现的实时颜色识别系统,这个系统能够通过摄像头捕捉视频流,并在视频中指定区域内识别主要颜色(红... 目录一、引言二、系统概述三、代码解析1. 导入库2. 颜色识别函数3. 主程序循环四、HSV色彩空间详解

OpenCV实现实时颜色检测的示例

《OpenCV实现实时颜色检测的示例》本文主要介绍了OpenCV实现实时颜色检测的示例,通过HSV色彩空间转换和色调范围判断实现红黄绿蓝颜色检测,包含视频捕捉、区域标记、颜色分析等功能,具有一定的参考... 目录一、引言二、系统概述三、代码解析1. 导入库2. 颜色识别函数3. 主程序循环四、HSV色彩空间

Python中OpenCV与Matplotlib的图像操作入门指南

《Python中OpenCV与Matplotlib的图像操作入门指南》:本文主要介绍Python中OpenCV与Matplotlib的图像操作指南,本文通过实例代码给大家介绍的非常详细,对大家的学... 目录一、环境准备二、图像的基本操作1. 图像读取、显示与保存 使用OpenCV操作2. 像素级操作3.

C/C++中OpenCV 矩阵运算的实现

《C/C++中OpenCV矩阵运算的实现》本文主要介绍了C/C++中OpenCV矩阵运算的实现,包括基本算术运算(标量与矩阵)、矩阵乘法、转置、逆矩阵、行列式、迹、范数等操作,感兴趣的可以了解一下... 目录矩阵的创建与初始化创建矩阵访问矩阵元素基本的算术运算 ➕➖✖️➗矩阵与标量运算矩阵与矩阵运算 (逐元

C/C++的OpenCV 进行图像梯度提取的几种实现

《C/C++的OpenCV进行图像梯度提取的几种实现》本文主要介绍了C/C++的OpenCV进行图像梯度提取的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的... 目录预www.chinasem.cn备知识1. 图像加载与预处理2. Sobel 算子计算 X 和 Y

C/C++和OpenCV实现调用摄像头

《C/C++和OpenCV实现调用摄像头》本文主要介绍了C/C++和OpenCV实现调用摄像头,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一... 目录准备工作1. 打开摄像头2. 读取视频帧3. 显示视频帧4. 释放资源5. 获取和设置摄像头属性

c/c++的opencv图像金字塔缩放实现

《c/c++的opencv图像金字塔缩放实现》本文主要介绍了c/c++的opencv图像金字塔缩放实现,通过对原始图像进行连续的下采样或上采样操作,生成一系列不同分辨率的图像,具有一定的参考价值,感兴... 目录图像金字塔简介图像下采样 (cv::pyrDown)图像上采样 (cv::pyrUp)C++ O

c/c++的opencv实现图片膨胀

《c/c++的opencv实现图片膨胀》图像膨胀是形态学操作,通过结构元素扩张亮区填充孔洞、连接断开部分、加粗物体,OpenCV的cv::dilate函数实现该操作,本文就来介绍一下opencv图片... 目录什么是图像膨胀?结构元素 (KerChina编程nel)OpenCV 中的 cv::dilate() 函

qtcreater配置opencv遇到的坑及实践记录

《qtcreater配置opencv遇到的坑及实践记录》我配置opencv不管是按照网上的教程还是deepseek发现都有些问题,下面是我的配置方法以及实践成功的心得,感兴趣的朋友跟随小编一起看看吧... 目录电脑环境下载环境变量配置qmake加入外部库测试配置我配置opencv不管是按照网上的教程还是de

python+OpenCV反投影图像的实现示例详解

《python+OpenCV反投影图像的实现示例详解》:本文主要介绍python+OpenCV反投影图像的实现示例详解,本文通过实例代码图文并茂的形式给大家介绍的非常详细,感兴趣的朋友一起看看吧... 目录一、前言二、什么是反投影图像三、反投影图像的概念四、反向投影的工作原理一、利用反向投影backproj