当前位置:网站首页>使用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个关键点坐标如下。
边栏推荐
猜你喜欢

CloudCompare & PCL ICP registration (point to face)

10年稳定性保障经验总结,故障复盘要回答哪三大关键问题?|TakinTalks大咖分享

How does the SAP ABAP OData service support the Create operation trial version

50W+小程序开发者背后的数据库降本增效实践

让程序员早点下班的效率工具

数字孪生北京故宫,元宇宙推进旅游业进程

Qt实战案例(56)——利用QProcess实现应用程序重启功能

【2022蓝帽杯】file_session && 浅入opcode

数据湖 delta lake和spark版本对应关系

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
随机推荐
fh511小风扇主控芯片 便携式小风扇专用8脚IC 三档小风扇升压芯片sop8
LeetCode_位运算_简单_405.数字转换为十六进制数
六石编程学:问题要面对,办法要技巧,做不好的功能要想办法
What Can Service Mesh Learn from SDN?
How to Integrate Your Service Registry with Istio?
This article will take you to thoroughly clarify the working mechanism of certificates in Isito
快速理解拉格朗日乘子法
PyTorch 进阶之路:在 GPU 上训练深度神经网络
易周金融分析 | 银行ATM机智能化改造提速;互联网贷款新规带来挑战
PIR人体感应AC系列感应器投光灯人体感应开关等应用定制方案
搭建LNMT架构
How to Integrate Your Service Registry with Istio?
NFV迈向云原生时代:Network Service Mesh项目介绍
postgresql之page分配管理(一)
通讯录(静态版)(C语言)(VS)
SQL function SQRT
态路小课堂丨浅谈优质光模块需要具备的条件!
SQL函数 %SQLUPPER
如何设计一个分布式 ID 发号器?
并发编程10大坑,你踩过几个?