3D & GVM & SLAM
文章平均质量分 88
3D & GVM & SLAM
FakeOccupational
斯文愚钝,求知若渴
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
【计算机图形学】3D渲染 Blender :骨骼 添加+关系绑定+权重绘制(骨骼控制网格)
【计算机图形学】3D渲染 Blender :骨骼 添加+关系绑定+权重绘制(骨骼控制网格)原创 2026-02-07 15:00:00 · 283 阅读 · 0 评论 -
【计算机图形学】3D渲染 Three.js主要组件 + VRM面部/身体姿态跟踪与表情驱动库Kalidokit + 官方数字分身&虚拟主播demo解释
【计算机图形学】3D渲染 Three.js主要组件 + VRM面部/身体姿态跟踪与表情驱动库Kalidokit + 官方数字分身&虚拟主播demo解释原创 2026-02-02 19:00:00 · 1374 阅读 · 0 评论 -
【计算机图形学】3D渲染 从模型生成到VRM:AI(混元3D、Rodi、Meshy)生成模型+Blender模型优化+模型导出为VRM
【计算机图形学】3D渲染 从模型生成到VRM:AI(混元3D、Rodi、Meshy)生成模型+Blender模型优化+模型导出为VRM原创 2025-12-25 19:00:00 · 2078 阅读 · 0 评论 -
【计算机图形学】3D渲染 Blender : 形态键(Shape Key) +BlendShape表情控制+VRM预设形态+镜像操作
【计算机图形学】3D渲染 Blender : 形态键(Shape Key) +BlendShape表情控制+VRM预设形态+镜像操作原创 2025-12-23 19:00:00 · 2172 阅读 · 0 评论 -
【计算机图形学】3D渲染 Blender :简单总结 建模(视图、移动旋转放缩、视图分割、细分、挤出、分割、合并、填充、曲线建模)+修改器+材质(渲染引擎设置、材质、BSDF、纹理)
【计算机图形学】3D渲染 Blender :简单总结 建模(视图、移动旋转放缩、视图分割、细分、挤出、分割、合并、填充、曲线建模)+修改器+材质(渲染引擎设置、材质、BSDF、纹理)原创 2025-12-22 19:00:00 · 2474 阅读 · 0 评论 -
【计算机图形学】多视几何 006:直接线性变换
参数估计:视角变换 不使用找点法1.DLT 方法:Direct Liner Transformation先消除比例因子:x_i^* × H x_i =0理论矩阵H会将一幅图像上的一个点的坐标a=(x,y,1)映射成另一幅图像上的点的坐标b=(x1,y1,1),但H是未知的。通常需要根据在同一平面上已知的一些点对(比如a,b)来求H。 假设已知点对(a,b),则有下面的公式:H=[h11h12h13h21h22h23h31h32h33]H=\begin{bmatrix}h_{11}&h原创 2022-01-12 21:58:18 · 1716 阅读 · 0 评论 -
【计算机图形学】多视几何 003 二次曲线
二次曲线当C非满知时定义的二次曲线为退化的二次曲线一般地,其将退化为一条直线,证明见结论1.7下原创 2022-01-12 21:54:52 · 2194 阅读 · 0 评论 -
【计算机图形学】多视几何 008:相机标定与MATLAB标定工具箱
工具箱官网1.选择camera calibration2.填写棋盘格大小后添加图片3.点击calibrate4.根据平均误差选择平面5.导出参数到工作空间,参数解释见官网原创 2022-01-07 17:35:17 · 644 阅读 · 0 评论 -
【计算机图形学】多视几何000 综述
两个相机拍同一个东西或者一个相机用两个角度拍同一个东西图像有重现的部分,这些重现的部分是一一对应的关系,多视图几何研究的就是这个关系原创 2022-01-07 17:32:33 · 313 阅读 · 0 评论 -
【计算机图形学】多视图几何 007:直接线性变换DLT
import cv2import numpy as npfrom src.dlt import calculate_transformation_matrixfrom src.util import *# Questao 2if __name__ == '__main__' : # Read source image. im_src = cv2.imread('images/maracana2.jpg') # Corresponding points pts_src = np.原创 2022-01-07 17:25:57 · 1849 阅读 · 0 评论 -
【计算机图形学】多视几何010:三角化
拍照的逆向过程:K+T+两张图像⇒X拍照的逆向过程:K+T+两张图像\Rightarrow X拍照的逆向过程:K+T+两张图像⇒X添加链接描述原创 2022-01-07 17:25:47 · 1548 阅读 · 0 评论 -
【计算机图形学】多视几何 001:齐次矩阵变换,无穷远点经过仿射变换仍为无穷远点
例:平行铁轨的远处相交距离(相机)信息丢失sfm代码理解场景与相机的几何关系CVPR ICCV ECCV论文教材Multiple View Geometry in Computer Vision(1-2-7)齐次坐标(Homogeneous coordinates):非特别指出,向量为列向量直线ax+by+c=0上的点(x,y)t写为(x,y,1)t,仍是2Dof则原式可表示为,(x y 1)^t(a b c)=0齐次坐标中,两线叉乘得一点,两点叉乘得一线由此可得两个平行线的交原创 2022-01-07 17:25:31 · 1402 阅读 · 0 评论 -
【计算机图形学】多视几何009:对极几何
基本矩阵计算基本矩阵计算基本矩阵计算图中为左右视点的两个图像,正常需要检测到特征点,然后进行基本矩阵计算。为了方便大家理解基本矩阵,特征点检测假设已经做好,存储在h_matches.txt 文件中,该文件由N*4的矩阵组成,i行分别表示了第一图像和第二图像的特征点坐标对。请求出基本矩阵F,然后在图中标出极点(红色)和极线(蓝色)。https://blog.csdn.net/WeskerXR/article/details/105651865计算如下两幅图的视差,并给出算法和报告和相应的视差图结果分原创 2022-01-07 17:25:08 · 1096 阅读 · 0 评论 -
【计算机图形学】多视几何 002:二次曲线和虚圆点
非齐次坐标下的二次曲线f(x,y)=0f(x,y)=0f(x,y)=0ax2+bxy+cy2+dx+ey+f=0ax^2+bxy+cy^2+dx+ey+f=0ax2+bxy+cy2+dx+ey+f=0进行齐次坐标变换x=x1x3,y=x2x3x=\frac{x_1}{x_3},y=\frac{x_2}{x_3}x=x3x1,y=x3x2得到:ax12+bx1x2+cx22+dx1x3+ex2x3+fx32=0二次型:xTCx=0,其中C是确定曲线的关键(其中C为对阵矩阵CT=C)。&n原创 2021-12-29 15:31:20 · 1445 阅读 · 0 评论 -
【计算机图形学】多视几何005:单目测量 mearning height without a ruler
auditor 23:26:08https://blog.csdn.net/qq_29710939/article/details/117770982auditor 23:26:26https://mi.mbd.baidu.com/r/upEsNkfKne?f=cp&u=0217dc949140d2adauditor 23:26:45https://blog.csdn.net/u010586630/article/details/89466279原创 2021-12-29 11:38:56 · 53 阅读 · 0 评论 -
叉乘与反对称矩阵(以i,j,k为基然后写成反对称矩阵与向量相称的形式)[w]_x
∣ijkaxayazbxbybz∣=[aybz−azby−(axbz−azbx)azbx−axbz]=[0−azayaz0−ax−ayax0]b\begin{vmatrix}i&j&k\\a_x&a_y&a_z\\b_x&b_y&b_z\end{vmatrix}=\begin{bmatrix}\\a_yb_z-a_zb_y\\-(a_xb_z-a_zb_x)\\a_zb_x-a_xb_z \end{bmatrix}=\begin{bmatrix}0&-原创 2021-07-26 18:22:37 · 1778 阅读 · 0 评论 -
例四和例五:The exponential map of SO(3)+
Example 4:The exponential map of SO(3)We have seen in Ex.3 that R˙=R[ω]×∈TRSO(3).\dot R = R [ω]_× ∈ T_RSO(3).R˙=R[ω]×∈TRSO(3).For ω constant, this is an ordinary differential equation(ODE), whose solution isR(t)=R0∗exp([ω]×t)R(t) = R0*exp([ω]_× t)R(t)原创 2021-07-20 14:22:37 · 671 阅读 · 0 评论 -
例三:The rotation group SO(3), its Lie algebra so(3), and the vector space R^3
Example 3:The rotation group SO(3), its Lie algebra so(3), and the vector space R^3In the rotation group SO(3), of 3×3 rotation matrices R, we have the orthogonality condition RtRR^tRRtR = I. The tangent space may be found by taking the time derivative of原创 2021-07-20 14:22:27 · 673 阅读 · 0 评论 -
A micro Lie theory for state estimation in robotics006:D. The exponential map
The exponential map exp() allows us to exactly transferelements of the Lie algebra to the group (Fig. 1), an operationgenerically known as retraction. Intuitively, exp() wraps thetangent element around the manifold following the great arcor geodesic (a原创 2021-07-20 14:22:04 · 266 阅读 · 0 评论 -
例一和例二
Example 1: The unit complex numbers group S^1Our first example of Lie group, which is the easiest to visualize, is the group of unit complex numbers under complex multiplication (Fig. 3). Unit complex numbers take the form z = cos θ + isin θ.我们最容易形象化的李群的原创 2021-07-20 14:21:45 · 350 阅读 · 0 评论 -
A micro Lie theory for state estimation in robotics005:The tangent spaces and the Lie algebra
C. The tangent spaces and the Lie algebraGiven X (t) a point moving on a Lie group’s manifold M, its velocity X‾\overline{X}X = ∂X /∂t belongs to the space tangent to M at X (Fig. 2), which we note TXM. The smoothness of the manifold, i.e., the absence of原创 2021-07-20 14:20:58 · 579 阅读 · 0 评论 -
A micro Lie theory for state estimation in robotics004:The group actions
B. The group actionsImportantly, Lie groups come with the power to transform elements of other sets, producing e.g. rotations, translations,scalings, and combinations of them. These are extensively used in robotics, both in 2D and 3D.重要的是,李群具有变换其他集合元素的能力原创 2021-07-20 14:20:27 · 282 阅读 · 0 评论 -
A micro Lie theory for state estimation in robotics003:The Lie group:例 1 和例 2
II. A MICRO LIE THEORYA. The Lie groupThe Lie group encompasses the concepts of group and smooth manifold in a unique body:李群将群和光滑流形的概念包含在一个唯一体中:a Lie group G is a smooth manifold whose elements satisfy the group axioms. We brieflypresent these two co原创 2021-07-20 14:20:00 · 406 阅读 · 0 评论 -
A micro Lie theory for state estimation in robotics002
Introduction 引言There has been a remarkable effort in the last years in the robotics community to formulate estimation problems properly.在过去的几年里,机器人界做出了巨大的努力来正确地制定估算问题。This is motivated by an increasing demand for precision, consistency and stability of原创 2021-07-20 14:19:33 · 623 阅读 · 0 评论 -
A micro Lie theory for state estimation in robotics001
[A micro Lie theory for state estimation in robotics] (https://arxiv.org/pdf/1812.01537.pdf)AbstractAbstract—A Lie group is an old mathematical abstract objectdating back to the XIX century,摘要——李群是一个古老的数学抽象,可以追溯到十九世纪,when mathematician Sophus Lie lai原创 2021-07-20 14:19:10 · 482 阅读 · 0 评论 -
A micro Lie theory for state estimation in robotics000:绪论ol
M:李群是一个每一点都一样的流型李群的幺元的切空间叫李代数(但是其他元素的切空间与幺元的是可以转换的,将这个线性变换称为伴随)M:李群是一个每一点都一样的流型\\李群的幺元的切空间叫李代数(但是其他元素的切空间与幺元的是可以转换的,将这个线性变换称为伴随)M:李群是一个每一点都一样的流型李群的幺元的切空间叫李代数(但是其他元素的切空间与幺元的是可以转换的,将这个线性变换称为伴随)^则是该向量及其对应的李代数之间的转换指数/对数映射是李群和李代数之间的一个精确映射。...原创 2021-07-20 14:18:09 · 334 阅读 · 0 评论
分享