Falko Schindler
Falko Schindler
I have some concerns about this approach: - Until now, `ui.colors` only manipulates CSS variables. The background color would be quite an exception. But ok, as long as the user...
@Allen-Taylor See #407 for a discussion and two approaches with the current version of NiceGUI. Which one is better depends on the application, I guess. Personally I would simply stick...
I reviewed @Diegiwg's PR #433 and came up with an alternative implementation #448.
We discussed this issue once more and noticed the following shortcomings of #411: 1. The `ui.background` element suggests to be a regular `Element`, but you can't insert child elements, for...
@rodja Do you already have an idea what to do about it?
@NiklasNeugebauer I managed to fix the AttributeError on GitHub by changing the requirement from "opencv-contrib-python-headless" to "opencv-contrib-python". Now the omnidirectional cameras pass most tests and only one conflict remains: >...
I just experimented with ```py def demo_omnidirectional_data() -> tuple[CalibratableCamera, list[Point3d]]: cam = CalibratableCamera(id='1') cam.set_perfect_calibration(width=800, height=600, focal_length=800, x=0.1, y=0.2, z=0.3, roll=np.deg2rad(180+10), pitch=np.deg2rad(20), yaw=np.deg2rad(30)) assert cam.calibration and cam.calibration.intrinsics cam.calibration.intrinsics.distortion = [-0.3, 0.06,...
I had to revert my commit because it broke tests in other projects. Especially `running_cpu_bound_processes` needs to be updated so that the tests wait for completion. But maybe there are...
Thanks for the update, @gvwilson! We are using plotly.js in our Python UI library [NiceGUI](https://github.com/zauberzeug/nicegui/) and still need to workaround this issue by switching between `Plotly.react` and `Plotly.newPlot` to avoid...
Sorry, @python-and-novella, I'm going to close this PR. Extending the API for `ElementFilter` makes it less predictable how different attributes interact. Currently the matching rules already long, but consistent: https://nicegui.io/documentation/element_filter#elementfilter....