isl-org / isl-org/Open3D

bad display for high number

Open
#6,326 2 comments 0 reactions 0 assignees View on GitHub
visualization
Dominant language
C++
Stars
14k
Forks
2.6k
Avg merge
5d 18h
Merged PRs (30d)
6

Description

### Checklist

- [X] I have searched for [similar issues](https://github.com/isl-org/Open3D/issues).
- [X] For Python issues, I have tested with the [latest development wheel](http://www.open3d.org/docs/latest/getting_started.html#development-version-pip).
- [X] I have checked the [release documentation](http://www.open3d.org/docs/release/) and the [latest documentation](http://www.open3d.org/docs/latest/) (for `master` branch).

### Describe the issue

It seems that when the pointcloud has high number, the display is "jumpy".

### Steps to reproduce the bug

```python
import numpy as np
import open3d as o3d

xyz = np.array([[7.63565630e+05, 6.29661919e+06, 2.80860000e+02],
[7.63565980e+05, 6.29661901e+06, 2.80820000e+02]])
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(xyz)

o3d.visualization.draw_geometries([pcd])

#then rotate the display inside the display window, it is not smooth
#when points are replaced by smaller numbers, it works just fine
```

### Error message

_No response_

### Expected behavior

_No response_

### Open3D, Python and System information

```markdown
Linux dsp0962147 5.5.0-0.bpo.2-amd64 #1 SMP Debian 5.5.17-1~bpo10+1 (2020-04-23) x86_64 GNU/Linux
Python 3.7.3
open3d version 0.17.0
X86
- Is this a remote workstation?: no
- How did you install Open3D?: pip
```

### Additional information

_No response_

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.