nus-vv-streams / vvtk

A toolkit for volumetric video research
MIT License
9 stars 8 forks source link

`vvplay` and `vv render` default background should be white #23

Closed weitsang closed 1 year ago

weitsang commented 1 year ago

There should be a --bg-color flag to specify background color as RGB values.

YoHoSo commented 1 year ago

This is supported in new branch feature/vvplay_ui, which will be merged into main upon completion of some other tasks We can specify the background color in two ways:

  1. use rgb value: cargo run --bin vvplay -- ./8i_dataset/red_black/pcd_b --bg-color "rgb(68,167,242)"
  2. use hex value: cargo run --bin vvplay -- ./8i_dataset/red_black/pcd_b --bg-color "#9ef244"

The default value is rgb(255,255,255)