You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allow camera to have initial position and look-at vectors. (#5452)
Currently in mesh plugin camera is positioned automatically which may not be convenient for applications where the model predicts both scene mesh/point cloud as well as camera position and orientation. This PR will allow to specify initial camera position and orientation as following:
```
const plugin_config = {
'camera': {
'position': [0, 0, 0],
'look_at': [1, 1, 1]
}
}
```
Co-authored-by: Stephan Lee <[email protected]>
0 commit comments