Joseph Lisee

Results 30 comments of Joseph Lisee

Thanks for responding so quickly and sheparding a project like this for many years. I definitely understand the desire to maintain coherence. There is just a tension between "simple end...

Dual mode is definitely the way to go here. Take a look at [`fmt`](https://github.com/fmtlib/fmt#compile-time-and-code-bloat) for a library so good that it basically went into the standard library. It has an...

For the simple filters like Grayscale and Invert JS is faster. Once the filters get computation complex, like Gaussian Blur WebAssembly is 50-100% faster. Which matches what you would expect...

Can gRPC over HTTP/3 support browser based clients talking to servers without [a proxy layer](https://github.com/grpc/grpc-web#2-run-the-server-and-proxy)? The requirement of proxies makes gRPC more difficult than a HTTP or WebSocket based solution...

As independent verification I rebased this patch against v.11.0 and it works: ``` 2021/12/17 21:45:09 Downloading https://releases.bazel.build/4.2.2/rc1/bazel-4.2.2rc1-linux-x86_64... 2021/12/17 21:45:10 Signed by Bazel Developer (Bazel APT repository key) ``` The only...

@Pessimistress any idea on addressing this? You mentioned offline you thought it could be done by tweaking a shader parameter or maybe by adjusting the camera?

Woops, we’ll port [this check](https://github.com/uber/xviz/commit/17ec0c67e08b202da5bbf50a019bc09f39b27c6b) from the XVIZ repo to save you the trouble from finding these the hard way.

What is the data source you want to use to drive the heat maps? Could you use an image (uber/xviz#415) displayed in a flat plane with alpha providing the transparency...

The workaround did not work with continuous frame data, here is what I did in the [playground](https://avs.auto/playground/): ```js // metadata xvizMetadataBuilder .stream('/vehicle_pose') .category('pose') .stream('/object/tracking_point') .category('primitive') .type('circle') .streamStyle({ fill_color: '#fb0' })...

Can you describe how much data you are sending? Some tips to give you the best possible performance when operating live: - Send data in the GLB format, it parses...