随笔分类 -  学习笔记

摘要:介绍 MotionPlus是一款用于监控摄像头的视频信号,并检测运动的应用程序,是对原有Motion软件的升级版本。它支持多种设备,如网络摄像头、V4L2网络摄像头和视频采集卡等。MotionPlus提供多种功能,包括录制视频、保存图片、实时视频流观看、调用脚本、日志记录、以及运动检测等功能。 安装 阅读全文
posted @ 2024-08-31 16:57 盛夏夜 阅读(71) 评论(0) 推荐(0) 编辑
摘要:1 离线安装Nvidia Driver 参考网址: Deepin 20.9在GTX 1060显卡上安装Nvidia 550.100驱动 2 离线安装Docker Engine 卸载旧版本包 # 强制删除docker的缓存 docker system prune -a --force # 卸载dock 阅读全文
posted @ 2024-07-20 17:27 盛夏夜 阅读(139) 评论(0) 推荐(0) 编辑
摘要:1 下载对应版本的显卡驱动 下载地址: https://www.nvidia.com/Download/index.aspx https://www.nvidia.cn/geforce/drivers/ https://www.nvidia.cn/drivers/lookup/ https://de 阅读全文
posted @ 2024-07-20 16:39 盛夏夜 阅读(446) 评论(0) 推荐(0) 编辑
摘要:1 编写编译脚本 vim build.sh #!/bin/bash # 检查是否退出 set -e # 下载编译代码 libevent_version=libevent-2.1.12-stable wget -O ${libevent_version}.tar.gz https://github.c 阅读全文
posted @ 2024-06-26 20:08 盛夏夜 阅读(64) 评论(0) 推荐(0) 编辑
摘要:1 安装ZLMediaKit # 更新安装源 sudo apt-get update # 安装编译器 sudo apt-get install build-essential # 安装cmake sudo apt-get install cmake # 安装依赖库(必选) sudo apt-get 阅读全文
posted @ 2024-06-16 11:15 盛夏夜 阅读(310) 评论(0) 推荐(0) 编辑
摘要:1. 拿到rv1126开发版后,首先连接电源、串口和网线,通过串口登录到系统 Windows串口使用Putty工具,在设备管理器里面找到对应的串口号设置波特率为1500000 , 8, 1, 0, 0设置完成后打开串口终端 Linux串口使用minicom工具,在/dev/ttyUSB里面找到对应的 阅读全文
posted @ 2023-04-05 16:05 盛夏夜 阅读(561) 评论(0) 推荐(0) 编辑
摘要:import cv2, struct import numpy as np import matplotlib.pyplot as plt class TempMatrix(): def __init__(self): pass def read_temp_matrix_img(self, file 阅读全文
posted @ 2023-03-01 13:38 盛夏夜 阅读(179) 评论(0) 推荐(0) 编辑
摘要:1.OpenCV对NV12进行通道分离后缩放再保存为NV12格式 #include <stdio.h> #include <opencv2/opencv.hpp> /** * @brief * 把输入的NV12图像分离为YUV三个分量图像 * @param image_yuv 输入YUV图像 * @ 阅读全文
posted @ 2023-02-17 11:18 盛夏夜 阅读(499) 评论(0) 推荐(0) 编辑
摘要:1.opencv代码jpg转换yuv420sp(nv12) #include <stdio.h> #include <opencv2/opencv.hpp> int main(int argc, char **argv) { // 检查输入参数 if(argc != 2){ std::cout << 阅读全文
posted @ 2023-02-10 10:55 盛夏夜 阅读(1478) 评论(0) 推荐(0) 编辑
摘要:1.参考labelme的github代码进行安装 https://github.com/wkentaro/labelme conda create --name=labelme python=3.9 source activate labelme conda install pyqt conda i 阅读全文
posted @ 2022-11-29 09:22 盛夏夜 阅读(224) 评论(0) 推荐(0) 编辑
摘要:1. 运行一个ubuntu 18.04的docker容器 docker run -itd --name hi3516 -v host_path:/root/work --privileged=true --shm-size 4G ubuntu:18.04 /bin/bash docker exec 阅读全文
posted @ 2022-11-10 14:37 盛夏夜 阅读(243) 评论(0) 推荐(0) 编辑
摘要:1. 首先安装换服务器上的Ubuntu系统,NVIDIA驱动和Docker环境 本文环境为: 服务器Ubuntu版本为16.04 NVIDIA驱动版本为10.2 Docker版本为20.10.7 参考网址: https://blog.csdn.net/qq_39638989/article/deta 阅读全文
posted @ 2022-11-09 12:15 盛夏夜 阅读(735) 评论(0) 推荐(0) 编辑
摘要:1. conda换源 conda config --set show_channel_urls yes vim .condarc channels: - defaults show_channel_urls: true default_channels: - http://mirrors.aliyu 阅读全文
posted @ 2022-11-09 12:13 盛夏夜 阅读(153) 评论(0) 推荐(0) 编辑
摘要:1. 环境配置 VMware Workstation Pro 16.2.4 Ubuntu 18.04.6 Pytorch 1.10.0 Caffe-cpu 1.0 Python 3.6 Opencv 3.2.0 2. 下载并安装虚拟机 下载地址:https://customerconnect.vmw 阅读全文
posted @ 2022-09-20 15:33 盛夏夜 阅读(3592) 评论(0) 推荐(0) 编辑
摘要:1. 拿到的开发版中已经安装最小系统,连接串口开机,设置启动文件 # 配置IP地址 ifconfig eth0 172.16.96.151 netmask 255.255.248.0 route add default gw 172.16.100.1 # 启动telnet服务 telnetd # 启 阅读全文
posted @ 2022-09-05 08:57 盛夏夜 阅读(531) 评论(0) 推荐(0) 编辑
摘要:1. 下载opencv4.6.0并解压 https://opencv.org/releases/ unzip opencv-4.6.0.zip cd opencv-4.6.0 2. 安装基础工具 sudo apt-get install build-essential sudo apt-get in 阅读全文
posted @ 2022-08-30 09:23 盛夏夜 阅读(497) 评论(0) 推荐(0) 编辑
摘要:1. 解压交叉编译工具链arm-himix200-linux tar -zxvf arm-himix200-linux.tgz cd arm-himix200-linux 2. 进入root模式,安装交叉编译工具链 su root source ./arm-himix200-linux.instal 阅读全文
posted @ 2022-08-29 13:51 盛夏夜 阅读(408) 评论(0) 推荐(0) 编辑
摘要:1. 下载并安装nfs服务器软件 https://pan.baidu.com/s/1y2R2aJyEExnCJ7FRqdaNdA 提取码:esdw 2. 修改安装目录下exports文件的共享目录和客户端的IP地址 c:\Program Files (x86)\nfsd\exports c:\Dee 阅读全文
posted @ 2022-08-29 10:53 盛夏夜 阅读(1204) 评论(0) 推荐(0) 编辑
摘要:1. 拿到hi3516核心版后,首先通过串口登录,修改IP地址,启动自动生效 vi /etc/init.d/rcS ifconfig eth0 192.168.1.13 netmask 255.255.255.0 route add default gw 192.168.1.1 2. 添加DNS,访 阅读全文
posted @ 2022-08-25 16:52 盛夏夜 阅读(412) 评论(0) 推荐(0) 编辑
摘要:import os # 读取真实标签文件列表,不含文件后缀 path_A = './ground-truth' set_A = set (i.split('.')[0] for i in os.listdir(path_A)) print(path_A ,"files:", len(set_A)) 阅读全文
posted @ 2022-08-16 10:20 盛夏夜 阅读(86) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示