Guest User

Untitled

a guest
Apr 17th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. >>> from imageio import imread
  2. >>> image_date = imread('c:/myImage.png')
  3.  
  4. >>> print image_date
  5. [[[ 18 23 16]
  6. [ 31 32 24]
  7. [ 34 29 23]
  8. ...,
  9. [ 97 73 49]
  10. [ 95 73 50]
  11. [ 94 72 49]]
  12.  
  13. [[ 23 24 18]
  14. [ 30 30 22]
  15. [ 36 29 21]
  16. ...,
  17. [ 98 74 50]
  18. [ 95 73 50]
  19. [ 95 73 50]]
  20.  
  21. [[ 32 27 21]
  22. [ 34 29 23]
  23. [ 37 28 21]
  24. ...,
  25. [ 94 72 48]
  26. [ 97 72 50]
  27. [ 97 72 50]]
  28.  
  29. ...,
  30. [[ 43 35 24]
  31. [ 46 36 26]
  32. [ 48 36 24]
  33. ...,
  34. [ 47 31 18]
  35. [ 47 31 18]
  36. [ 47 30 20]]
  37.  
  38. [[ 59 56 47]
  39. [ 59 55 46]
  40. [ 59 50 41]
  41. ...,
  42. [ 49 33 20]
  43. [ 48 32 19]
  44. [ 48 32 19]]
  45.  
  46. [[114 115 107]
  47. [104 104 96]
  48. [100 93 85]
  49. ...,
  50. [ 48 32 19]
  51. [ 48 32 19]
  52. [ 47 31 18]]]
Add Comment
Please, Sign In to add comment