Etienne Charland
Etienne Charland
What I found is that sigma changes the sharpness of the edges; with little or no impact on removed noise. Anything below 9 (or 8) is "not enough" and anything...
Interestingly enough, using FMTC is even slightly slower than using RGB2OPP. Script doing simple YUV-RGB-OPP conversion back-and-forth with RGB2OPP on 5K clip gives 9fps, and with FMTC, 8fps.
Here. These functions are 7-12x faster than the other methods. Thanks to Godway. ```py def RGB_to_OPP (c: vs.VideoNode, fulls: bool = False) -> vs.VideoNode: if c.format.color_family != vs.RGB: raise TypeError("RGB_to_YCgCoR:...
Yes... but I don't know anyone who knows the math to do it
I'm getting the same issue with these added project values. ``` net6.0 osx-x64 Player432hz 432hz Player com.player432hz 2.1 2.1 APPL ???? Player432hz Player432hz.icns NSApplication true true ```
Bundle also contains stuff related to requested permissions. If the problem is not related to the working directory, it's probably permission-related.
I'm getting the same error on a small project and I'm not using records. Very obscure error with no hint as to what goes wrong. Where can I get information...
This does not work public override void Show() { base.Show(); SetWindowStartupLocationWorkaround(); } Furthermore, when IsVisible is set, Owner is still null! I tried running it when Owner is set, but...
Alright this base class is working, almost. Overriding Show works for the main window, but for a sub-dialog, it won't work unless I call await Task.Delay(1) ```c# using System; using...
Any idea when there's going to be a fix for this? Although I can patch it in my own code, `MessageBox.Avalonia` still displays message boxes in the wrong locations, and...