当前位置:网站首页>使用open3d可视化3d人脸
使用open3d可视化3d人脸
2022-08-01 12:55:00 【andrew P】
使用的模型参数是巴塞尔模型,矩阵大小是[53490,3]. 使用open3d将53,490个点显示到3d空间中
import numpy as np
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
import open3d as o3d
path="./image_vertices.npy"
image_vertices=np.load(path)
verts_points=image_vertices
pcobj=o3d.geometry.PointCloud()
pcobj.points=o3d.utility.Vector3dVector(verts_points)
o3d.visualization.draw_geometries([pcobj])结果

68个关键点坐标如下。
边栏推荐
- 让程序员早点下班的效率工具
- LeetCode_动态规划_中等_377.组合总和 Ⅳ
- Istio Pilot代码深度解析
- 数据挖掘-04
- 实现集中式身份认证管理的案例
- Efficiency tools to let programmers get off work earlier
- 通讯录(静态版)(C语言)(VS)
- Six Stones Programming: Problems must be faced, methods must be skillful, and functions that cannot be done well must be solved
- formatdatetime函数 mysql(date sub函数)
- PIR人体感应AC系列感应器投光灯人体感应开关等应用定制方案
猜你喜欢
随机推荐
Efficiency tools to let programmers get off work earlier
How to integrate 3rd party service center registration into Istio?
一文带你彻底厘清 Isito 中的证书工作机制
这项工作事关中小学生生命安全!五部门作出联合部署
Feign 从注册到调用原理分析
意大利普拉托华社将游行示威 盼解决安全问题
树和二叉树的转换
[Unity3D Plugin] AVPro Video Plugin Share "Video Player Plugin"
Based on 10 years of experience in stability assurance, what are the three key questions to be answered in failure recovery?|TakinTalks big coffee sharing
formatdatetime function mysql (date sub function)
.NET性能优化-使用SourceGenerator-Logger记录日志
Towhee 每周模型
人像分割技术解析与应用
How do we do full-link grayscale on the database?
让程序员早点下班的效率工具
Dapr 与 NestJs ,实战编写一个 Pub & Sub 装饰器
阿里云官方 Redis 开发规范
AI目标分割能力,无需绿幕即可实现快速视频抠图
sql中常用到的正则表达
PIR人体感应AC系列感应器投光灯人体感应开关等应用定制方案






![leetcode: 1201. Ugly Number III [Dichotomy + Mathematics + Inclusion and Exclusion Principle]](/img/44/bf1d9b9d85939e73bc44be2f9701e1.png)


