JackSetup

Edit the *.conf found in the directory ‘/etc/security/limits.d’ with the below content: @realtime – rtprio 99 @realtime – memlock unlimited and run […]

pyCV Codes

import numpy as np import cv2 img = cv2.imread(‘./images/trex.png’) cv2.imshow(‘image’, img) cv2.waitKey(0) cv2.destroyAllWindows() cv2.namedWindow(‘image’, cv2.WINDOW_NORMAL) cv2.imshow(‘image’, img) cv2.waitKey(0) cv2.destroyAllWindows() cv2.imwrite(‘trex.jpg’, img) import […]