Advertisement
sombruxo

cton.py

Jan 26th, 2022
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. #!/usr/bin/python3
  2. #
  3. # Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved.
  4. #
  5.  
  6. import cv2
  7. import jetson.utils
  8. import argparse
  9. import numpy
  10.  
  11. # allocate cuda memory
  12. imput = jetson.utils.videoSource("file:///jetson-inference/data/images/", )
  13. cuda_img = imput.Capture()
  14.  
  15. cv2_img = cv2.imread('/jetson-inference/data/images/airplane_0.jpg') #The function to read from an image into OpenCv is imread()
  16.  
  17.  
  18. print('*** cuda_img ***\n', cuda_img)
  19.  
  20. # create a numpy ndarray that references the CUDA memory
  21. # it won't be copied, but uses the same memory underneath
  22. array = jetson.utils.cudaToNumpy(cuda_img)
  23.  
  24. print("*** cv2_img ***")
  25. print(type(cv2_img))
  26. print(cv2_img.dtype)
  27. print(cv2_img.shape) # numpy dims will be in (height, width, depth) order
  28. print(cv2_img)
  29.  
  30. print("cudaToNumpy() array:")
  31. print(type(array))
  32. print(array.dtype)
  33. print(array.shape) # numpy dims will be in (height, width, depth) order
  34. print(array)
  35.  
  36. # sudo apt-get install ros-$(rosversion -d)-cv-bridge
  37. # tal vez haya que hacer un "bgr --> rgb" antes!
  38. ros_img = bridge.cv2_to_imgmsg(array, encoding="passthrough")
  39.  
  40. # create another ndarray and do some ops with it
  41. #array2 = numpy.ones(array.shape, numpy.float32)
  42.  
  43. #print("\nadding arrays...\n")
  44. #print(array + array2)
  45.  
  46.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement