<feed xmlns="http://www.w3.org/2005/Atom"> <id>https://laolaolulu.github.io/</id><title>Programmer's Notes</title><subtitle>Programmer's Notes - Technology Sharing</subtitle> <updated>2024-03-17T19:39:33+08:00</updated> <author> <name>lipeng</name> <uri>https://laolaolulu.github.io/</uri> </author><link rel="self" type="application/atom+xml" href="https://laolaolulu.github.io/feed.xml"/><link rel="alternate" type="text/html" hreflang="zh-CN" href="https://laolaolulu.github.io/"/> <generator uri="https://jekyllrb.com/" version="4.3.3">Jekyll</generator> <rights> © 2024 lipeng </rights> <icon>/assets/img/favicons/favicon.ico</icon> <logo>/assets/img/favicons/favicon-96x96.png</logo> <entry><title>向中国开源社区喊话</title><link href="https://laolaolulu.github.io/posts/free-blog/" rel="alternate" type="text/html" title="向中国开源社区喊话" /><published>2024-03-17T00:00:00+08:00</published> <updated>2024-03-17T19:38:27+08:00</updated> <id>https://laolaolulu.github.io/posts/free-blog/</id> <content src="https://laolaolulu.github.io/posts/free-blog/" /> <author> <name>lipeng</name> </author> <category term="雕虫小技" /> <summary> 前言 本人做技术的有时想写点笔记记录下，耐不住寂寞想分享给大家；实在忍受不了csdn…的风气，于是开启自建博客网站之行… 免费白嫖个人博客网站 博客当然是需要进行seo了所以就搭建为静态页 免费静态网页托管一大堆最后直接选择使用gitee,github的pages功能 静态网页生成工具（网站模板主题套用）：大家可以根据自己熟悉的语言或者相中那款模板自行选用 JekyllRuby：github官方工具，如果用github托管静态网页用它能省心很多 star：48.1k 活跃度高 模板预览 HugoGo：世界上最快的网站构建框架(摘自官网) star：71.8k 活跃度高 模板预览 ... </summary> </entry> <entry><title>windows中双网卡外网与内网如何同时使用</title><link href="https://laolaolulu.github.io/posts/external-and-internal-networks/" rel="alternate" type="text/html" title="windows中双网卡外网与内网如何同时使用" /><published>2024-03-12T00:00:00+08:00</published> <updated>2024-03-16T22:31:34+08:00</updated> <id>https://laolaolulu.github.io/posts/external-and-internal-networks/</id> <content src="https://laolaolulu.github.io/posts/external-and-internal-networks/" /> <author> <name>lipeng</name> </author> <category term="雕虫小技" /> <summary> 有很多小伙伴们企业或者客户有专有网络，有时候需要远程客户电脑访问客户的内网服务时出现了外网连上后无法使用内网的情况： 使用管理员添加一条路由信息就搞定 # 这条命令作用就是添加一条路由信息，使ip地址10开头的访问走`10.4.50.110`这个网关 route add 10.0.0.0 mask 255.0.0.0 10.4.50.110 # 永久生效 route -p add... 电脑重启后照样生效 # 删除 route delete 10.0.0.0 mask 255.0.0.0 10.0.0.0 表示你要访问的内网ip地址，0为通配符 255.0.0.0 这个解释太复杂，反正这样填写没毛病 10.4.50.110 这个就是你连接专网网卡的网关 如果未成功请一起来学习下以下知识点 tracert 命令使用 首先就是确认你的访问是走的那个网关出去的 C... </summary> </entry> <entry><title>将scrfd模型转换为onnx成功历程</title><link href="https://laolaolulu.github.io/posts/run-scrfd2onnx/" rel="alternate" type="text/html" title="将scrfd模型转换为onnx成功历程" /><published>2023-11-09T00:00:00+08:00</published> <updated>2023-11-11T17:23:27+08:00</updated> <id>https://laolaolulu.github.io/posts/run-scrfd2onnx/</id> <content src="https://laolaolulu.github.io/posts/run-scrfd2onnx/" /> <author> <name>lipeng</name> </author> <category term="人脸识别" /> <summary> scrfd官方文档 , 作者转换好了点击去下载 python世界发展过快,版本之间依赖不兼容问题很是头疼;避免这种问题浪费时间笔者总结了以下六点 …… 不要相信自己搭的绝配环境,来装个mini conda随意折腾,听人劝吃饱饭.乖~ # conda常用命令 # 创建环境 conda create --name test python==3.9.18 # 进入创建的环境 conda activate test # 查看自己创建了多少环境 conda env list # 删除不要的环境 conda env remove --name test 成功步骤环境:安装时提示缺少什么包就安装 # 安装pytorch conda install pytorch==1.9.1 torchvision==0.10.1 torchaudio=... </summary> </entry> <entry><title>流行的人脸检测识别模型集合下载</title><link href="https://laolaolulu.github.io/posts/face-model-download/" rel="alternate" type="text/html" title="流行的人脸检测识别模型集合下载" /><published>2023-11-07T00:00:00+08:00</published> <updated>2023-11-11T17:23:27+08:00</updated> <id>https://laolaolulu.github.io/posts/face-model-download/</id> <content src="https://laolaolulu.github.io/posts/face-model-download/" /> <author> <name>lipeng</name> </author> <category term="人脸识别" /> <summary> 人脸检测 SCRFD 名称 kps(包含眼鼻口)5关键点 大小 时间 scrfd_500m.onnx download 2.18MB 2022.08.23 scrfd_1g.onnx download 2.42MB 2021.03.24 scrfd_2.5g.onnx download 2.57MB 2021.03.24 scrfd_10g.onnx download 14.7MB 2021.03.24 scrfd_34g.onnx download 3... </summary> </entry> <entry><title>使用C#(sharp)-OpenCv(仅)来推理scrfd模型实现人脸检测</title><link href="https://laolaolulu.github.io/posts/csharp-scrfd-opencv/" rel="alternate" type="text/html" title="使用C#(sharp)-OpenCv(仅)来推理scrfd模型实现人脸检测" /><published>2023-11-07T00:00:00+08:00</published> <updated>2023-11-11T17:23:27+08:00</updated> <id>https://laolaolulu.github.io/posts/csharp-scrfd-opencv/</id> <content src="https://laolaolulu.github.io/posts/csharp-scrfd-opencv/" /> <author> <name>lipeng</name> </author> <category term="人脸识别" /> <summary> scrfd官网介绍文档 目前最优秀的人脸检测算法 使用OpenCvSharp库来进行图片预处理以及模型推理 scrfd.onnx模型下载 如何使用 已发布到nuget 源码在github dotnet add package FaceTrain.OpenCV //读取模型文件 var modelBytes = File.ReadAllBytes("Resource\\Model\\SCRFD\\scrfd_10g_kps.onnx"); //读取要检测的图片 var imgBytes = File.ReadAllBytes("Resource\\Img\\test.png"); //实例化网络 using var net = new FaceTrain.OpenCV.SCRFD(modelBytes); //执行推理拿到结果 var faces = net.Det... </summary> </entry> </feed>
