Guest User

Untitled

a guest
Jan 22nd, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. import cv2
  2. import matplotlib.pyplot as plt
  3. %matplotlib inline
  4. #plot image
  5. img = cv2.imread(img_path)
  6. img=cv2.cvtColor(img, cv2.COLOR_BGR2RGB)
  7. plt.imshow(img)
  8. plt.show()
Add Comment
Please, Sign In to add comment