
图像处理
令狐傻笑
图像算法工程师,主要研究方向为图像分类,目标检测
展开
-
使用ffmpeg将mp4文件转为h264文件或者264文件
使用如下命令:ffmpeg -i test.mp4 -c copy test.h264原创 2021-01-15 16:12:55 · 8515 阅读 · 0 评论 -
深度学习模型剪枝、量化和TensorRT推理
深度学习模型剪枝、量化和TensorRT推理模型剪枝算法参考文献:Rethinking the Value of Network Pruning (ICLR 2019)github:https://github.com/Eric-mingjie/rethinking-network-pruningRethinking the Value of Network Pruning这篇文献主要介绍了以下几种剪枝算法,并在github上开源了代码,在ImageNet和cifar两个数据集上进行了测试,论文原创 2020-11-10 20:24:36 · 4647 阅读 · 1 评论 -
ubuntu 18.04编译安装opencv 4.3.0
1. 下载opencv安装包官网地址:https://opencv.org/releases/2. 安装依赖sudo apt-get install cmake git libgtk2.0-dev pkg-config libavcodec-dev libavformat-dev libswscale-devsudo apt-get install libtbb2 libtbb-dev libjpeg-dev libpng-dev libtiff-dev libdc1394-22-devsud原创 2020-06-10 23:06:34 · 2606 阅读 · 1 评论 -
ImportError: libSM.so.6: cannot open shared object file: No such file or directory解决办法
在终端中输入:apt-get install libsm6 libxrender1原创 2020-02-17 10:39:32 · 350 阅读 · 0 评论 -
基于离散余弦变换(DCT)方法的图像模糊检测
目录1. 概述2. 算法过程3.模糊度计算代码地址:https://github.com/linghu8812/blur_detector1. 概述本文介绍了一种基于离散余弦变换(DCT)的方法判断图像是否模糊的方法,并且基于C++和python实现了算法,在windows和linux下均能实现。2. 算法过程(1) 首先读入一张图片并进行灰度变换。(2)...原创 2019-10-19 11:45:35 · 2337 阅读 · 3 评论