Advertisement
Guest User

Untitled

a guest
May 21st, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.32 KB | None | 0 0
  1.  
  2. from sklearn import datasets, svm, metrics
  3. import cv2
  4. import numpy as np
  5. from matplotlib import pyplot as plt
  6.  
  7.  
  8. tab =[]
  9. for x in range(1,10):
  10.     name='b'+str(x)+'.jpg'
  11.     img=cv2.imread(name)
  12.     cv2.imshow('df',img)
  13.     tab.append(img)
  14.     cv2.waitKey(100)
  15. # hist = cv2.calcHist([obraz], [1], None, [8], [0,256])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement