Python – 运行YOLOv5出现AttributeError: module ‘torchvision’ has no attribute ‘ops’
1 运行YOLOv5出现AttributeError: module 'torchvision' has no attribute 'ops' 今天在下载完Yolov5的依赖包之后,使用detect.py运行出现了 AttributeError: module ‘torch‘ has no attr…
- Python
- 2022-04-11
Python – 配置Yolov5出现ImportError: cannot import name ‘PILLOW_VERSION’ from ‘PIL’错误
1 配置Yolov5出现ImportError: cannot import name 'PILLOW_VERSION' from 'PIL'错误 今天早上按照YOLOv5 Github官方仓库的README使用pip在Anaconda环境中安装YOLOv5所需要的依赖库之后,运行detect.py…
- Python
- 2022-04-11
Python – ModuleNotFoundError: No module named ‘absl’
1 Python出现ModuleNotFoundError: No module named 'absl'错误 今天在运行Python代码的时候出现了 ModuleNotFoundError: No module named 'absl' 出现了找不到absl库的错误。 1.1 pip安装absl …
- Python
- 2022-03-25
Ubuntu编译安装FFmpeg+libx264以及编译+安装Opencv+FFmpeg保姆教程
1 编译安装FFmpeg+libx264 1.1 安装yasm或者nasm libx264需要yasm或者nasm进行编译,所以需要安装yasm或者nasm的对应版本,一般是nasm 2.13。 安装yasm sudo apt-get install yasm 安装nasm sudo apt-get…
- FFmpeg
- 2022-03-24
FFmpge – Ubuntu编译FFmpeg出现WARNING: pkg-config not found, library detection may fail警告
1 Ubuntu编译FFmpeg出现WARNING: pkg-config not found, library detection may fail警告 今天在编译FFmpge的时候使用命令: ./configure --prefix=/usr/local/ffmpeg --enable-shar…
- FFmpeg
- 2022-03-23
FFmpeg – ./configure编译参数全部总结和整理
1 FFmpge编译参数 本文对FFmpeg4.4.1的./configure的所有编译参数进行了简要说明。在Linux系统上编译FFmpge时总是不太明白应该使用哪一些编译参数,这里以FFmpge4.4.1版本为例,对FFmpge的所有可选编译参数进行总结和整理。 1.1 Help options…
- FFmpeg
- 2022-03-23
C++ – Windows和Linux系统下获取当前可执行程序的绝对路径
1 C++获取Windows和Linux系统当前可执行程序的绝对路径 在程序中获取当前程序在系统中的绝对路径是频繁使用的功能,本文总结了如何在Windows和Linux系统获取当前可执行程序绝对路径的方式,并封装成可跨平台编译的工具类PathUtils。 1.1 在Windows系统上获取当前可执行…
- C++
- 2022-03-22
OpenCV – linux上编译出现undefined reference to `cv::VideoCapture::VideoCapture()’错误
1 linux上编译使用OpenCV的程序出现undefined reference to cv::VideoCapture::VideoCapture()错误 最近在linux上编写程序的时候使用了以下代码: cv::VideoCapture video_capture; video_captur…
- OpenCV
- 2022-03-21
C++ – 字节数组byte[]或者unsigned char[]与long double的相互转换
设定long double型的字节长度为12。 1 long double转字节数组 long double转字节数组byte[]或者unsigned char[] void LongDoubleTobytes(long double data, unsigned char bytes[]) { s…
- C++
- 2022-03-17
C++ – 字节数组byte[]或者unsigned char[]与bool的相互转换
设定bool型字节长度为1。 1 bool转字节数组 bool型转字节数组byte[]或者unsigned char[] void BoolTobytes(bool data, unsigned char bytes[]) { if (data) { bytes[0] = (unsigned cha…
- C++
- 2022-03-16
OpenCV – linux上编译出现undefined reference to cv::dnn::experimental_dnn错误
1 linux上编译使用OpenCV的程序出现undefined reference to cv::dnn::experimental_dnn错误 在程序中使用了 cv::Mat blob = cv::dnn::blobFromImage(input_image, 1.0 / 255.0, inpu…
- OpenCV
- 2022-03-16
C++ – 字节数组byte[]或者unsigned char[]与float的相互转换
设定float型字节长度为4字节。 1 float转字节数组 float型转字节数组byte[]或者unsigned char[] void FloatTobytes(float data, unsigned char bytes[]) { size_t length = sizeof(float)…
- C++
- 2022-03-15