摘要: 最近 pip 安装总是出错 pip install torch torchvision --index-url https://download.pytorch.org/whl/cpu 总结就是 之前用fastgithub,设置了 http_proxy 和 https_proxy ,取消设置就可以了 阅读全文
posted @ 2025-12-16 14:42 小城熊儿 阅读(1) 评论(0) 推荐(0)
摘要: 用大模型写的一个简单的http推流demo,用opencv读取摄像头数据作为数据源 #include <opencv2/opencv.hpp> #include <boost/asio.hpp> #include <thread> #include <queue> #include <mutex> 阅读全文
posted @ 2025-12-08 16:02 小城熊儿 阅读(10) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <stdbool.h> #include <math.h> typedef struct { double x, y; } Pointxy; // 计算向量叉积 (p2-p1) × (p3-p1) static double crossProd 阅读全文
posted @ 2025-12-03 15:33 小城熊儿 阅读(4) 评论(0) 推荐(0)
摘要: system_monitor.sh 实现cpu gpu npu RGA使用率和温度监控 #!/bin/bash # author:rys # data:2025.11.18 # 实现cpu gpu npu RGA使用率和温度监控 # 去掉linux空格问题 sed -i 's/\r$//' syst 阅读全文
posted @ 2025-11-10 18:47 小城熊儿 阅读(160) 评论(0) 推荐(0)
摘要: # git clone https://github.com/ultralytics/yolov5.git Cloning into 'yolov5'... error: RPC failed; curl 16 Error in the HTTP2 framing layer fatal: expe 阅读全文
posted @ 2025-11-05 18:13 小城熊儿 阅读(6) 评论(0) 推荐(0)
摘要: vscode远程连接需要输入密码,比较烦,可用ssh公钥免驱密码输入 参考 https://zhuanlan.zhihu.com/p/425641299 在windows上的配置 步骤一:进入C:\Users\你的用户名\.ssh,查看是否已经有下面两个文件: id_rsa、id_rsa.pub 如 阅读全文
posted @ 2025-10-30 15:56 小城熊儿 阅读(166) 评论(0) 推荐(0)
摘要: python 运行venv,新建终端出现错误如下: & : 无法加载文件 D:\rys_info\16_ros2\BSD\monodepth2\.venv\Scripts\Activate.ps1,因为在此系统上禁止运行脚本。有关详细信息, 请参阅 https:/go.microsoft.com/f 阅读全文
posted @ 2025-10-23 10:46 小城熊儿 阅读(6) 评论(0) 推荐(0)
摘要: 复制别人的虚拟机(ubuntu2204),无法联网,不一定是本地的问题,可能是这个虚拟机的问题 参考 https://zhuanlan.zhihu.com/p/674945911 sudo ip link set ens37 up sudo dhclient ens37 sudo ip link s 阅读全文
posted @ 2025-10-07 17:54 小城熊儿 阅读(5) 评论(0) 推荐(0)
摘要: #include <QTableWidget> class TablewidgetLineDropFilter : public QObject { Q_OBJECT public: explicit TablewidgetLineDropFilter(QTableWidget* _box,QObj 阅读全文
posted @ 2025-10-03 11:29 小城熊儿 阅读(18) 评论(0) 推荐(0)
摘要: lvgl在win上的安装,参考 https://www.cnblogs.com/zhouyuebiao/articles/18847275 我用的是 i686-w64-mingw32-mingw32 编译器,所以添加到环境路径是 C:\SDL2-2.32.10\i686-w64-mingw32\bi 阅读全文
posted @ 2025-09-05 15:35 小城熊儿 阅读(97) 评论(0) 推荐(0)