summaryrefslogtreecommitdiff
path: root/examples/domain-adaptation/plot_otda_color_images.py
diff options
context:
space:
mode:
authorRémi Flamary <remi.flamary@gmail.com>2020-04-24 17:38:01 +0200
committerRémi Flamary <remi.flamary@gmail.com>2020-04-24 17:38:01 +0200
commit4bbabc602678a0227bfe9ffae4bbb4caab8a3767 (patch)
treea2d7c4ce09f137d7c23d5a198acd4cffca77656d /examples/domain-adaptation/plot_otda_color_images.py
parenta54775103541ea37f54269de1ba1e1396a6d7b30 (diff)
relative path exmaples
Diffstat (limited to 'examples/domain-adaptation/plot_otda_color_images.py')
-rw-r--r--examples/domain-adaptation/plot_otda_color_images.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/domain-adaptation/plot_otda_color_images.py b/examples/domain-adaptation/plot_otda_color_images.py
index 7e0afee..929365e 100644
--- a/examples/domain-adaptation/plot_otda_color_images.py
+++ b/examples/domain-adaptation/plot_otda_color_images.py
@@ -46,8 +46,8 @@ def minmax(I):
# -------------
# Loading images
-I1 = pl.imread('../data/ocean_day.jpg').astype(np.float64) / 256
-I2 = pl.imread('../data/ocean_sunset.jpg').astype(np.float64) / 256
+I1 = pl.imread('../../data/ocean_day.jpg').astype(np.float64) / 256
+I2 = pl.imread('../../data/ocean_sunset.jpg').astype(np.float64) / 256
X1 = im2mat(I1)
X2 = im2mat(I2)