-
Here's the aot "run" part of the code. I can also give the aot_generate part if that's of consequence. When I don't load the image into ```left_buffer``` and leave it "empty", the code runs. Surprisin…
-
Thanks for your work.
As the paper show, it consists four sublayer. But I wonder how the sobel result of x and y be fusioned together?
![image](https://user-images.githubusercontent.com/88184861/12…
-
In the Sobel demo the Sobel operator is implemented as follows:
Define Sobel filter
```
sobel_x = np.array([[-1, 0, 1], [-2, 0, 2], [-1, 0, 1]])
sobel_y = sobel_x.transpose()
```
Convolve i…
-
This worked for parcel delineation:
" I mean using:
https://open-eo.github.io/openeo-python-client/api.html#openeo.rest._datacube.UDF.from_url
like:
UDF.from_url("https://raw.git…
-
Whenever I try to build the [Sobel test](https://github.com/fastflow/fastflow/tree/master/tests/ocl/sobel) with a `make` it throws this error:
```
In file included from ../../../ff/stencilReduceOC…
-
### Is your feature request related to a problem?
Refereing to ths kalidoscope example i managed to get sobel added as a pass.
It works great but i have no blend options and cannot add it into the…
-
I'm trying to get gradient of an image matrix
Images v0.26.1
Julia Version 1.10.4
`using Images
#morph_image size is 301x301
sobel_x_kernel = [[-0.125, 0.0, 0.125]; [0.0, 0.0, 0.0]; [-0.125, 0…
-
### Describe the feature and motivation
Usually/often both Sobel X and Y are needed together (considered usecase here).
This applies to all Arch (e.g. ARM, x86, x64, OpenCL, CUDA, ..), if ImageSize …
-
我找到了一些sse优化的soble和gaussblur算法,能替换里面的soble和gaussblur来进行加速不?
[alg_speed.txt](https://github.com/meiqua/shape_based_matching/files/3872395/alg_speed.txt)
我尝试了替换了下,灰度图会崩溃,彩色图只替换了gaussblur,就什么都检测不到了。
…
-