Skip to content

Commit

Permalink
Merge branch 'pr'
Browse files Browse the repository at this point in the history
  • Loading branch information
tatsy committed Dec 14, 2018
2 parents 1459fe3 + 6366509 commit 7603f91
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions examples/bilateral_filter.py
Expand Up @@ -2,7 +2,7 @@
import scipy.misc
import matplotlib.pyplot as plt

import hydra.filter
import hydra.filters

def main():
img = sp.misc.imread('../data/lamp.jpg')
Expand All @@ -11,7 +11,7 @@ def main():
h, w, _ = img.shape
sigma_s = max(h, w) * 0.02
sigma_r = 0.4
res = hydra.filter.bilateral(img, sigma_s, sigma_r)
res = hydra.filters.bilateral(img, sigma_s, sigma_r)

plt.subplot(1, 2, 1)
plt.imshow(img)
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -23,9 +23,10 @@ def run(self):
packages = [
'hydra',
'hydra.core',
'hydra.eo',
'hydra.filters',
'hydra.gen',
'hydra.io',
'hydra.filters',
'hydra.tonemap'
]
)

0 comments on commit 7603f91

Please sign in to comment.