当前位置:网站首页>使用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个关键点坐标如下。
边栏推荐
- Towhee 每周模型
- PAT 1167 Cartesian Tree(30)
- Six Stones Programming: Problems must be faced, methods must be skillful, and functions that cannot be done well must be solved
- iframe标签属性说明 详解[通俗易懂]
- LeetCode_动态规划_中等_377.组合总和 Ⅳ
- 安全又省钱,“15岁”老小区用上管道燃气
- 数据湖 delta lake和spark版本对应关系
- 态路小课堂丨浅谈优质光模块需要具备的条件!
- sql is not null 优化(oracle语句索引优化)
- Why does the maximum plus one equal the minimum
猜你喜欢
随机推荐
The basic knowledge of scripting language Lua summary
高仿项目协作工具【Worktile】,从零带你一步步实现组织架构、网盘、消息、项目、审批等功能
初级必备:单例模式的7个问题
一文带你彻底厘清 Kubernetes 中的证书工作机制
34、树莓派进行人体姿态检测并进行语音播报
sql is not null 优化(oracle语句索引优化)
PanGu-Coder:函数级的代码生成模型
Js手写函数之new的模拟实现
Fault 007: The dexp derivative is inexplicably interrupted
SQL functions STR
【无标题】
MCU开发是什么?国内MCU产业现状如何
Windows 安装PostgreSQL
CloudCompare & PCL ICP registration (point to face)
程序员的浪漫七夕
iframe标签属性说明 详解[通俗易懂]
深入解析volatile关键字
DDL和DML的含义与区别「建议收藏」
uniapp读取和写入文件
如何使用OpenCV测量图像中物体之间的距离








