Skip to content

Commit e9b900a

Browse files
committed
Merge branch 'master' into develop
2 parents c9fffa2 + 5949089 commit e9b900a

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

doc/installation.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ On Windows
7474
^^^^^^^^^^
7575

7676
Windows installation is not officially supported. However, you can try this repo `here <https://github.com/DrGabor/WinTeaser/>`_, courtesy of Di Wang at Xi'an Jiaotong University.
77+
In addition, if you encounter errors regarding Eigen on Windows, take a look `here <https://github.com/zhongjingjogy/use-eigen-with-cmake>`_.
7778

7879
Compilation and Installation
7980
----------------------------

examples/teaser_python_3dsmooth/line_mesh.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def create_line_mesh(self):
7373
axis_a = axis * angle
7474
R = o3d.geometry.get_rotation_matrix_from_axis_angle(axis_a)
7575
cylinder_segment = cylinder_segment.rotate(
76-
R, center=True)
76+
R, center=np.zeros([3, 1], dtype=np.float64))
7777
# color cylinder
7878
color = self.colors if self.colors.ndim == 1 else self.colors[i, :]
7979
cylinder_segment.paint_uniform_color(color)

examples/teaser_python_ply/teaser_python_ply.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def get_angular_error(R_exp, R_est):
7272
print(T[:3, :3])
7373
print("Estimated rotation: ")
7474
print(solution.rotation)
75-
print("Error (deg): ")
75+
print("Error (rad): ")
7676
print(get_angular_error(T[:3,:3], solution.rotation))
7777

7878
print("Expected translation: ")

0 commit comments

Comments
 (0)