-
Thank you very much for your work, I found an anomaly when I try to differentiate it and do the backward step, your Net has many in-place operations which makes it impossible to calculate the gradient…
-
- [x] Sobel operator - Standard threejs Sobel operator shader for edge detection. This will give us a "drawing" look.
- [x] Pixel Edge Shader - Sobel edge operator from Galo, adds a bit of a etching …
-
Sobel filetered image from source image.
![image](https://user-images.githubusercontent.com/5733604/179619303-42b1f42d-4927-4427-933f-487ebb946fa1.png)
Tangent Flow Map(TFM) with Source image a…
-
Sobel kernels are pre-defined (0, 1 and 2 values) which means we can compute the convolution without using multiplications (add and sub only).
For now sobel convolution not used in commercial product…
-
有谁解决了吗?求大神指教!
-
Hey, is there a training code for TinyBeauty Model(The light-weighted one)?
-
Border energy attempts to find a measure of a region with high feature-to-background contrast in an attempt to discard homogeneous, less-salient regions. Regions with border energy below some threshol…
-
```
What steps will reproduce the problem?
1. Build Angstrom according to instructions (including ti-cgt*)
2. do a "bitbake opencv-dsp-acceleration"
What is the expected output? What do you see inste…
-
-
It is hard to be sure with C++ being as unsafe as it is, but it looks like the two calls to cv::Sobel() take one too few arguments. They look like:
```cpp
Sobel(blurred, dx, dx.type(), 1, 0, 7, 1, …