04 2020 档案

摘要:使用串口通信协议对三菱(Mitsubishi) FX系列PLC进行读取与写入 阅读全文
posted @ 2020-04-29 11:32 刘文华 阅读(1543) 评论(0) 推荐(1) 编辑
摘要:Pick-and-Place-project-Vision-system 阅读全文
posted @ 2020-04-29 11:31 刘文华 阅读(119) 评论(0) 推荐(0) 编辑
摘要:Siemens PLC s7 | PYTHON 阅读全文
posted @ 2020-04-29 11:14 刘文华 阅读(247) 评论(0) 推荐(0) 编辑
摘要:python-siemens-s7-plc 阅读全文
posted @ 2020-04-29 10:57 刘文华 阅读(342) 评论(0) 推荐(0) 编辑
摘要:工控安全相关资源 阅读全文
posted @ 2020-04-29 10:51 刘文华 阅读(129) 评论(0) 推荐(0) 编辑
摘要:YOLOv4 的各种新实现、配置、测试、训练资源汇总 阅读全文
posted @ 2020-04-29 10:32 刘文华 阅读(612) 评论(0) 推荐(0) 编辑
摘要:OpenCV转换成PIL.Image格式: import cv2 from PIL import Image import numpy img = cv2.imread("plane.jpg") cv2.imshow("OpenCV",img) image = Image.fromarray(cv2 阅读全文
posted @ 2020-04-29 10:23 刘文华 阅读(249) 评论(0) 推荐(0) 编辑
摘要:CenterFace+TensorRT部署人脸检测和关键点400fps 阅读全文
posted @ 2020-04-28 17:59 刘文华 阅读(538) 评论(0) 推荐(0) 编辑
摘要:基于python3和opencv的单目测距 阅读全文
posted @ 2020-04-26 16:44 刘文华 阅读(960) 评论(0) 推荐(0) 编辑
摘要:收集免费的接口服务,做一个api的搬运工 阅读全文
posted @ 2020-04-26 11:21 刘文华 阅读(350) 评论(0) 推荐(0) 编辑
摘要:转载【Keras-MobileNet v1】CIFAR-10 阅读全文
posted @ 2020-04-23 15:29 刘文华 阅读(488) 评论(0) 推荐(0) 编辑
摘要:RKNN-Toolkit RK3399Pro-Wheel 阅读全文
posted @ 2020-04-21 17:19 刘文华 阅读(241) 评论(0) 推荐(0) 编辑
摘要:在测试alphapose时,原始视频的分辨率过高,导致网络难以运行,所以要修改视频的分辨率,代码如下: import cv2 cap = cv2.VideoCapture("videl_1.mp4") videowriter = cv2.VideoWriter("videl_640_360"+".a 阅读全文
posted @ 2020-04-21 15:33 刘文华 阅读(6335) 评论(0) 推荐(0) 编辑
摘要:六种人体姿态估计的深度学习模型和代码总结 阅读全文
posted @ 2020-04-21 14:24 刘文华 阅读(536) 评论(0) 推荐(0) 编辑
摘要:Pytorch中文文档 阅读全文
posted @ 2020-04-20 14:50 刘文华 阅读(381) 评论(0) 推荐(0) 编辑
摘要:论文地址:https://arxiv.org/pdf/2002.10392.pdf 源代码:github地址 阅读全文
posted @ 2020-04-20 14:23 刘文华 阅读(707) 评论(0) 推荐(0) 编辑
摘要:Git for Windows. 国内直接从官网下载比较困难,需要FQ。这里提供一个国内的下载站,方便网友下载 阅读全文
posted @ 2020-04-16 16:33 刘文华 阅读(14) 评论(0) 推荐(0) 编辑
摘要:Python/C/C++/Linux参考手册 阅读全文
posted @ 2020-04-16 14:36 刘文华 阅读(128) 评论(0) 推荐(0) 编辑
摘要:ImportError: cannot import name 'PILLOW_VERSION' 阅读全文
posted @ 2020-04-16 13:47 刘文华 阅读(102) 评论(0) 推荐(0) 编辑
摘要:unable to execute ':/usr/local/cuda/bin/nvcc': No such file or directory error: command ':/usr/local/cuda/bin/nvcc' failed with exit status 1 提示找不到 nv 阅读全文
posted @ 2020-04-16 11:06 刘文华 阅读(3107) 评论(0) 推荐(0) 编辑
摘要:一,对模型进行转化 from rknn.api import RKNN import cv2 import time import numpy as np if __name__ == '__main__': # Create RKNN object rknn = RKNN(verbose=True 阅读全文
posted @ 2020-04-14 17:59 刘文华 阅读(3068) 评论(4) 推荐(0) 编辑
摘要:1.原始模型分析 由于centerface的模型是onnx的,可以通过netron工具包查看改模型的输入输出维度 import netron modelPath = ""centerface.onnx"" netron.start(modelPath) 运行上述代码会生成如下的网络结构图: 点击in 阅读全文
posted @ 2020-04-14 17:52 刘文华 阅读(14407) 评论(1) 推荐(0) 编辑
摘要:CenterFace:实用的边缘设备无锚人脸检测器.实用的边缘设备无锚人脸检测与对齐算法Centerface, 模型大小7.3M。 CenterFace-small 性能达到centerface的同时模型大小仅为2.3M。在NVIDIA RTX 2080Ti的推理耗时,图片1920*1080:LFF 阅读全文
posted @ 2020-04-14 17:20 刘文华 阅读(2711) 评论(2) 推荐(0) 编辑
摘要:恢复内容开始 转自:https://www.cnblogs.com/geeksongs/p/10745419.html 安装tensorflow时,如果使用直接安装速度相对较慢,采取清华大学的镜像会提高速度。GPU版本安装方法: pip install tensorflow-gpu==1.8 -i 阅读全文
posted @ 2020-04-14 16:58 刘文华 阅读(5779) 评论(2) 推荐(0) 编辑
摘要:CVPR2019 | 论文分类汇总(190611 更新) 阅读全文
posted @ 2020-04-09 11:17 刘文华 阅读(269) 评论(0) 推荐(0) 编辑
摘要:数据增强python库 阅读全文
posted @ 2020-04-03 13:54 刘文华 阅读(340) 评论(0) 推荐(0) 编辑
摘要:10个必会的 PyCharm 技巧 阅读全文
posted @ 2020-04-02 18:09 刘文华 阅读(108) 评论(0) 推荐(0) 编辑
摘要:常用 Git 命令清单 阅读全文
posted @ 2020-04-01 15:26 刘文华 阅读(76) 评论(0) 推荐(0) 编辑

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