-
http://www.weibo.com/2358542733/BlVneqDhK
-
If I'm not mistaken, there is some minor error when calculating the dimensions of a respective level in the laplacian/gaussian pyramid:
```
r_level = (r_level % 2 == 0) ? (r_level-1)/2 : (r_l…
d-s-d updated
10 years ago
-
(Ref: #925): Images converted to float type in `pyramid_gaussian` (via `smooth`), and then passed to `resize`, causing them to be handled using the [0,1] constraint (https://github.com/scikit-image/sc…
jmetz updated
10 years ago
-
I'm using Halide (the precompiled libs) for a HDR fusion program and I need to create a gaussian pyramid. There is an example in local_laplacian code, but it doesn't not use JIT (what I want).
I have…
-
When I was reviewing the code for the gaussian_video function:
```
def gaussian_video(video, shrink_multiple):
"""Create a gaussian representation of a video"""
vid_data = None
for x in r…
-
Hi
Just to explain, I'm very new to Python, and somewhat new to Ubuntu and OpenCV.
I've coded before, so I caught on quickly how the code works and began to implement it, but even when I run the exam…