Florian Bruggisser

Results 104 comments of Florian Bruggisser

@msurguy I just stumbled over your comment, and yes I have developed a library for processing which uses GLSL for image manipulation: https://github.com/cansik/processing-postfx

@wmuron Thank you, would you be open for a PR if I am going to add this functionality in a way that the current API is still valid? Or would...

I tried to implement it with a public `matches` attribute, but this is not working because the tracker list is changed after the matching, so the indexes are wrong. It...

Still a big issue in python to use the library. Did you successfully generate the stubs?

@tcdtech Since my last comment, I wrote a tool called [nanobind-stubgen](https://github.com/cansik/nanobind-stubgen) to generate stubs for nanogui and other nanobind based libraries. Due to the fact that nanobind puts the function...

@ronaldoussoren What is the status here, or how could we help? I tried to fix it by converting the current deprecated method for CGL (inside Cocoa-Framework) `initFrameworkWrapper` into the `createFrameworkDirAndGetattr`...

Ok, I figured it out by using pyopengl directly, but it seems that I can not convert it into a `objc.PyObjCPointer`? But this is needed to pass it to the...

To get the current CGL context, use the following method (no need to use `pyopengl`, just `AppKit`): ```python from typing import Any import AppKit def get_current_cgl_context_obj() -> Any: ns_ctx =...

It is already implemented to use YoloV5 with custom weights and models. Just export the trained model & weights to an onnx file (https://github.com/ultralytics/yolov5/issues/251) and load it: ```processing YOLONetwork network...

I think we can close this one now :)