centos7 PaddleHub人像分割模型:AI人像抠图及图像合成

2023-10-25 10:59

本文主要是介绍centos7 PaddleHub人像分割模型:AI人像抠图及图像合成,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

centos 安装抠图环境:

#复制下面命令一条一条的在windows的命令行窗口里面执行,需要一些时间
#执行安装paddlehub第三步后可能会出现一些问题,解决方式在文章下方
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple matplotlib
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pillow
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple PaddlePaddle
pip install paddlehub==1.6.0 -i https://pypi.tuna.tsinghua.edu.cn/simple
hub install deeplabv3p_xception65_humanseg==1.0.0

问题1:在安装pip install -i https://pypi.tuna.tsinghua.edu.cn/simple PaddlePaddle 这一步之后,会自动安装opencv-python,这时候如果在centos环境下进入python,输入impot cv2会报错,windows环境应该没问题

ImportError: libSM.so.6: cannot open shared object file: No such file or directory
ImportError: libXrender.so.1: cannot open shared object file: No such file or directory
ImportError: libXext.so.6: cannot open shared object file: No such file or directory

原因是:缺少共享库,我们直接通过yum来安装libSM解决不了问题, 那是因为yum源默认提供的库是i686的, 如果我们的服务器系统是64位的,应该要安装的是x86_64版而非i686.

解决方式:

来查看一下yum默认提供的libSM, 结果如下

yum whatprovides libSM.so.6

在这里插入图片描述

可以看到默认提供的是i686的, 但是我们需要x86_64, 所以安装的时候把i686改成x86_64, 如下

sudo yum install libSM-1.2.2-2.el7.x86_64 --setopt=protected_multilib=false

剩下的就直接输入吧

sudo yum install libXrender-0.9.10-1.el7.x86_64 --setopt=protected_multilib=false
sudo yum install libXext-1.3.3-3.el7.x86_64 --setopt=protected_multilib=false

问题2:如果安装过程又出现问题,提示【SyntaxError: invalid syntax  由于用户取消而退出

解决方式: 

必须修改的两个yum配置文件

因为yum使用python2,因此替换为python3后可能无法正常工作,继续使用这个python2.7.5,因此需要修改yum相关配置文件。

(1)vi /usr/bin/yum

第一行:#!/usr/bin/python --> #!/usr/bin/python2.7

(2) vi /usr/libexec/urlgrabber-ext-down

第一行:#!/usr/bin/python --> #!/usr/bin/python2.7

完成上面两步,现在使用yum命令基本不会出现这样的错误:SyntaxError: invalid syntax  由于用户取消而退出

安装完成后,试一下可以成功导入cv2了
在这里插入图片描述

问题3: 执行 hub install deeplabv3p_xception65_humanseg==1.0.0 的时候可能会出现hub: command not found

解决方式:配置python3的环境变量,在 /etc/profile加入python的安装路径配置环境变量,具体操作可以看我的另一篇文章https://blog.csdn.net/clz979991314/article/details/107842982

代码片段: 

import matplotlib.pyplot as plt
import matplotlib.image as mpimg
from matplotlib import animation
import paddlehub as hub
from PIL import Image, ImageSequence
import numpy as np
import os
import flask, json
from flask import request# 创建一个服务,把当前这个python文件当做一个服务
server = flask.Flask(__name__)# 合成函数
def blend_images(fore_image, output_path, base_size, color):"""将抠出的人物图像换背景fore_image: 前景图片,抠出的人物图片base_size: 图片尺寸"""# 制作指定大小的背景色base_image = Image.new("RGBA", base_size, color)# 读入图片base_image = base_image.convert('RGB')fore_image = Image.open(fore_image).resize(base_image.size)# 图片加权合成scope_map = np.array(fore_image)[:,:,-1] / 255scope_map = scope_map[:,:,np.newaxis]scope_map = np.repeat(scope_map, repeats=3, axis=2)res_image = np.multiply(scope_map, np.array(fore_image)[:,:,:3]) + np.multiply((1-scope_map), np.array(base_image))#保存图片res_image = Image.fromarray(np.uint8(res_image))print(res_image)res_image.save(output_path)# 抠图@server.route('/matting', methods=['get', 'post'])
def matting():# 测试图片路径test_path = 'D:\\image\\'# 输出路径output_path = 'D:\\image\\test\\'# 背景图片地址base_image = (295, 413)# 白色(255,255,255) 红色(182,38,38) 蓝色(67,142,219)color = (67,142,219)# 待预测图片名称test_file_name = "5"# 待预测图片后缀test_file_suffix = ".jpg"# 输入文件名称output_file_name = test_file_name + test_file_suffixtest_img_path = [test_file_name + test_file_suffix]test_img_path = [test_path + img for img in test_img_path]img = mpimg.imread(test_img_path[0]) module = hub.Module(name="deeplabv3p_xception65_humanseg")input_dict = {"image": test_img_path}# execute predict and print the resultresults = module.segmentation(data=input_dict)print(results)output_path_img = output_path + output_file_nameblend_images('humanseg_output/'+test_file_name+'.png', output_path_img, base_image, color)return output_path_imgif __name__ == '__main__':server.run(debug=True, port=8888, host='0.0.0.0')# 指定端口、host,0.0.0.0代表不管几个网卡,任何ip都可以访问

如果安装的deeplabv3p_xception65_humanseg版本不是1.0.0,而是1.1.0或1.1.1

则使用下面的代码:

import matplotlib.pyplot as plt
import matplotlib.image as mpimg
from matplotlib import animation
import paddlehub as hub
from PIL import Image, ImageSequence
import numpy as np
import os
import flask, json
from flask import request
import cv2# 创建一个服务,把当前这个python文件当做一个服务
server = flask.Flask(__name__)# 合成函数
def blend_images(fore_image, output_path, base_size, color):"""将抠出的人物图像换背景fore_image: 前景图片,抠出的人物图片base_size: 图片尺寸"""# 制作指定大小的背景色base_image = Image.new("RGBA", base_size, color)# 读入图片base_image = base_image.convert('RGB')fore_image = Image.open(fore_image).resize(base_image.size)# 图片加权合成scope_map = np.array(fore_image)[:,:,-1] / 255scope_map = scope_map[:,:,np.newaxis]scope_map = np.repeat(scope_map, repeats=3, axis=2)res_image = np.multiply(scope_map, np.array(fore_image)[:,:,:3]) + np.multiply((1-scope_map), np.array(base_image))#保存图片res_image = Image.fromarray(np.uint8(res_image))print(res_image)res_image.save(output_path)# 抠图@server.route('/matting', methods=['get', 'post'])
def matting():# 测试图片路径test_path = 'D:/image/'# 输出路径output_path = 'D:/image/test/'# 背景图片地址base_image = (295, 413)# 白色(255,255,255) 红色(182,38,38) 蓝色(67,142,219)color = (255,255,255)colorType = flask.request.values.get('color_type')if colorType == '1':color = (182,38,38)if colorType == '2':color = (67,142,219)# 待预测图片名称# test_file_name = "5"test_file_name = flask.request.values.get('test_file_name')# 待预测图片后缀# test_file_suffix = ".jpg"test_file_suffix = flask.request.values.get('test_file_suffix')print(color)# 输入文件名称output_file_name = test_file_name + test_file_suffixtest_img_path = [test_file_name + test_file_suffix]test_img_path = [test_path + img for img in test_img_path]human_seg = hub.Module(name="deeplabv3p_xception65_humanseg")results = human_seg.segmentation(images=[cv2.imread(test_img_path[0])], visualization=True)print(results[0]['save_path'])save_path = results[0]['save_path']output_path_img = output_path + output_file_nameblend_images(save_path, output_path_img, base_image, color)return output_path_imgif __name__ == '__main__':server.run(debug=True, port=18778, host='0.0.0.0')# 指定端口、host,0.0.0.0代表不管几个网卡,任何ip都可以访问

通过请求访问: http://127.0.0.1:18778/matting?color_type=1&test_file_name=1&test_file_suffix=.jpg

 

这篇关于centos7 PaddleHub人像分割模型:AI人像抠图及图像合成的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

Java的IO模型、Netty原理解析

《Java的IO模型、Netty原理解析》Java的I/O是以流的方式进行数据输入输出的,Java的类库涉及很多领域的IO内容:标准的输入输出,文件的操作、网络上的数据传输流、字符串流、对象流等,这篇... 目录1.什么是IO2.同步与异步、阻塞与非阻塞3.三种IO模型BIO(blocking I/O)NI

基于Flask框架添加多个AI模型的API并进行交互

《基于Flask框架添加多个AI模型的API并进行交互》:本文主要介绍如何基于Flask框架开发AI模型API管理系统,允许用户添加、删除不同AI模型的API密钥,感兴趣的可以了解下... 目录1. 概述2. 后端代码说明2.1 依赖库导入2.2 应用初始化2.3 API 存储字典2.4 路由函数2.5 应

C++字符串提取和分割的多种方法

《C++字符串提取和分割的多种方法》在C++编程中,字符串处理是一个常见的任务,尤其是在需要从字符串中提取特定数据时,本文将详细探讨如何使用C++标准库中的工具来提取和分割字符串,并分析不同方法的适用... 目录1. 字符串提取的基本方法1.1 使用 std::istringstream 和 >> 操作符示

Spring AI ectorStore的使用流程

《SpringAIectorStore的使用流程》SpringAI中的VectorStore是一种用于存储和检索高维向量数据的数据库或存储解决方案,它在AI应用中发挥着至关重要的作用,本文给大家介... 目录一、VectorStore的基本概念二、VectorStore的核心接口三、VectorStore的

使用Python开发一个图像标注与OCR识别工具

《使用Python开发一个图像标注与OCR识别工具》:本文主要介绍一个使用Python开发的工具,允许用户在图像上进行矩形标注,使用OCR对标注区域进行文本识别,并将结果保存为Excel文件,感兴... 目录项目简介1. 图像加载与显示2. 矩形标注3. OCR识别4. 标注的保存与加载5. 裁剪与重置图像

Spring AI集成DeepSeek三步搞定Java智能应用的详细过程

《SpringAI集成DeepSeek三步搞定Java智能应用的详细过程》本文介绍了如何使用SpringAI集成DeepSeek,一个国内顶尖的多模态大模型,SpringAI提供了一套统一的接口,简... 目录DeepSeek 介绍Spring AI 是什么?Spring AI 的主要功能包括1、环境准备2

Spring AI集成DeepSeek实现流式输出的操作方法

《SpringAI集成DeepSeek实现流式输出的操作方法》本文介绍了如何在SpringBoot中使用Sse(Server-SentEvents)技术实现流式输出,后端使用SpringMVC中的S... 目录一、后端代码二、前端代码三、运行项目小天有话说题外话参考资料前面一篇文章我们实现了《Spring

Spring AI与DeepSeek实战一之快速打造智能对话应用

《SpringAI与DeepSeek实战一之快速打造智能对话应用》本文详细介绍了如何通过SpringAI框架集成DeepSeek大模型,实现普通对话和流式对话功能,步骤包括申请API-KEY、项目搭... 目录一、概述二、申请DeepSeek的API-KEY三、项目搭建3.1. 开发环境要求3.2. mav

C#集成DeepSeek模型实现AI私有化的流程步骤(本地部署与API调用教程)

《C#集成DeepSeek模型实现AI私有化的流程步骤(本地部署与API调用教程)》本文主要介绍了C#集成DeepSeek模型实现AI私有化的方法,包括搭建基础环境,如安装Ollama和下载DeepS... 目录前言搭建基础环境1、安装 Ollama2、下载 DeepSeek R1 模型客户端 ChatBo

SpringBoot快速接入OpenAI大模型的方法(JDK8)

《SpringBoot快速接入OpenAI大模型的方法(JDK8)》本文介绍了如何使用AI4J快速接入OpenAI大模型,并展示了如何实现流式与非流式的输出,以及对函数调用的使用,AI4J支持JDK8... 目录使用AI4J快速接入OpenAI大模型介绍AI4J-github快速使用创建SpringBoot