摘要:
import cv2 # 打开摄像头 url = "rtsp://admin:qwer1234!.@192.168.1.65:554" cap = cv2.VideoCapture(url) width = int(cap.get(cv2.CAP_PROP_FRAME_WIDTH)) height 阅读全文
摘要:
https://blog.csdn.net/feelinghappy/article/details/109328697 阅读全文
摘要:
https://blog.csdn.net/rockage/article/details/127190263 阅读全文
摘要:
sh #!/bin/bash port=8080 # 将8080替换成你想要查找和杀死的端口号 # 查找端口的进程ID pid=$(lsof -ti :$port) # 杀死进程 if [[ -n "$pid" ]]; then echo "Killing process $pid listenin 阅读全文
摘要:
shell #!/bin/sh sleep 1s gnome-terminal -t "5000" -x bash -c "cd /media/nvidia/3563-3135/exhibiton/web;/usr/bin/python3 app.py;" sleep 1s gnome-termin 阅读全文
摘要:
https://www.cnblogs.com/52fhy/p/10161253.html 阅读全文
摘要:
https://blog.csdn.net/qq_40691868/article/details/114379061 阅读全文
摘要:
转载: https://blog.csdn.net/qq_41426807/article/details/124705416 ks上网: https://elinux.org/Jetson_Zoo 阅读全文
摘要:
>>> import torch>>> torch.cuda.is_available() True 阅读全文
摘要:
function GetQueryValue (queryName) { var query = decodeURI(window.location.search.substring(1)); var vars = query.split("&"); for (var i = 0; i < vars 阅读全文