Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. import Tkinter as tk
  2. from PIL import ImageTk, Image
  3.  
  4. window = Tk()
  5. window.title("Outlier Detection using Feature Grouping")
  6. window.configure(background = "black")
  7.  
  8. path="C:/Users/user/Desktop/od in hd/Corr"
  9. C = tk.Canvas(window, bg="blue", height=250, width=300)
  10. img = ImageTk.PhotoImage(Image.open(path))
  11.  
  12. IOError: [Errno 2] No such file or directory: 'C:/Users/user/Desktop/od in hd/Corr'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement