l0rem1psum
l0rem1psum
Demosaicing with CUDA supports a few additional demosaic types defined in `opencv2/cudaimgproc.hpp` as [`DemosaicTypes`](https://docs.opencv.org/4.8.0/db/d8c/group__cudaimgproc__color.html#gaa9e40b798350356f45667e609d5d82f9). This means CUDA demosaicing can either take in `gocv.ColorConversionCode` or `cuda.DemosaicType` (not yet implemented). In order...
One use case I can think of now is when you want to dynamically apply a series of operations on a type. For instance: ```go package main import "fmt" type...
> May be its me, but I still cannot see a use case where this is usable. It basically returns the value without any checks or modifications. I think you...
> > I think you basically just explained the purpose of identity function yourself: return the value unchanged. > > > > > > It's basically like the number 0...
For instance, by using `devcontainer features vendor [--vendor-dir]` command, features will get downloaded and vendored into `.devcontainer/.vendor`. Later on a PC with no internet connection, the devcontainer cli will first...
I'm not sure if this feature will be best proposed as a devcontainer spec or as an implementation feature.
> This is an interesting one, primarily because individual Features usually need to download assets from the internet when installing. Thanks for the reply. Sometimes you do still have access...
As mentioned by @lunwang-ttd, the root cause was because CMake was updated to version 4.0.0. However, as I was using an earlier version of Triton (i.e. `r24.01`), the fix proposed...
I use [`lfs-s3`](https://github.com/nicolas-graves/lfs-s3) to store my LFS objects. For me, I just need to set the necessary environment variables add the following step before checking out code. For example: ```yaml...
Thanks for such a detailed review! I will make the relevant changes once I get back.