上一页 1 ··· 45 46 47 48 49 50 51 52 53 ··· 117 下一页
摘要: 最新需要安装个opencv,既然有最新版就选最新版的,有扩展库也毫不犹豫选择安装,过程如下: 1、下载好文件:opencv-4.5.0.tar.gz opencv_contrib-4.5.0.tar.gz 2、解压 tar -xvf opencv-4.5.0.tar.gz 生成目录opencv-4. 阅读全文
posted @ 2020-11-07 20:36 叕叒双又 阅读(6039) 评论(3) 推荐(0) 编辑
摘要: 一、 二、错误:缺失/home/nication/opencv-4.5.0/opencv_contrib-4.5.0/modules/xfeatures2d/test/test_features2d.cpp:51:10: 致命错误:features2d/test/test_detectors_reg 阅读全文
posted @ 2020-11-07 12:44 叕叒双又 阅读(660) 评论(0) 推荐(0) 编辑
摘要: 最近在看人民邮电出版社的冯振的《OpenCV4快速入门》,在从源码一路编译完成OpenCV4.5的安装后,cmake问题不大,但是make时,总会出现: 1 make 2 [ 50%] Linking CXX executable videoCapture 3 /usr/bin/ld: /usr/l 阅读全文
posted @ 2020-11-06 21:35 叕叒双又 阅读(1265) 评论(0) 推荐(0) 编辑
摘要: 1、进入下载的源码目录:cd ~/opencv-4.5.0 2、进入samples目录:cd samples/ 3、建立编译目录:mkdir build && cd build 4、生成cmake文件, cmake .. 5、编译, make -j4 6、进入编译好的可执行文件目录:cd cpp/ 阅读全文
posted @ 2020-11-05 21:08 叕叒双又 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 一、安装部分 1、由于学习需要,需要安装opencv4.5,只能源码安装,环境为manjaro linux, 2020年11月2日最新升级到testing版本 sudo pacman -S cmake sudo pacman -S git sudo pacman -S base-devel sudo 阅读全文
posted @ 2020-11-05 11:28 叕叒双又 阅读(1531) 评论(0) 推荐(0) 编辑
摘要: 1、在安装opencv4.5时,出现了错误:libopencv_core.so.4.5.0: undefined reference to `cblas_zgemm',想使用locate查看下cblas_zgemm文件,没有locate命令 2、安装locate工具:pacman -S mlocat 阅读全文
posted @ 2020-11-05 11:00 叕叒双又 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 首先,定义数诀结构listg.h 1 #ifndef listg_h 2 #define listg_h 3 #include <stdlib.h> 4 #include <stdio.h> 5 6 typedef int DataType; 7 8 typedef struct node_{ 9 阅读全文
posted @ 2020-11-02 21:17 叕叒双又 阅读(291) 评论(0) 推荐(1) 编辑
摘要: 老样子,代码就是一切,首先queueg.h 1 #ifndef queueg_h 2 #define queueg_h 3 4 #include <stdio.h> 5 #include <stdlib.h> 6 7 typedef int DataType; 8 9 typedef struct 阅读全文
posted @ 2020-11-02 20:17 叕叒双又 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 代码非常简单,直接代码stackg.h 1 #ifndef stackg_h 2 #define stackg_h 3 4 #include <stdio.h> 5 #include <stdlib.h> 6 7 typedef int DataType; 8 9 typedef struct no 阅读全文
posted @ 2020-11-02 20:11 叕叒双又 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 原文地址:https://shumeipai.nxez.com/2019/04/29/use-the-ssd1306-oled-display-on-the-raspberry-pi.html 树莓派在许多使用场景下并不需要接一台专用显示器,如需要查看树莓派上的一些信息可以通过手机、电脑登录到树莓派 阅读全文
posted @ 2020-10-30 15:34 叕叒双又 阅读(1269) 评论(0) 推荐(0) 编辑
摘要: 原文地址:https://training.github.com/downloads/zh_CN/github-git-cheat-sheet/ 一、安装 GitHub Desktop desktop.github.com Git 全平台版 git-scm.com linux下安装:sudo apt 阅读全文
posted @ 2020-10-30 15:04 叕叒双又 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 带学生学习ROS,以树莓派4b为硬件平台,为他们指导写树莓派img,特发此文: 1. 下载镜像文件 从树莓派官网(https://www.raspberrypi.org/downloads/raspbian/)下载相应的镜像压缩包文件,分为带桌面和不带桌面版本。 2. 将下载的压缩包解压 得到.im 阅读全文
posted @ 2020-10-23 11:23 叕叒双又 阅读(618) 评论(0) 推荐(0) 编辑
摘要: 在C语言编程中,变量是最常见的元素之一。例如: int var1 = 10; int var2 = var1; 在以上代码中,第一行代码中,var1是左值,就是在赋值符号左侧的变量 第二行代码中,var2是右值,就是在赋值符号右侧的变量 对于赋值符号“=”而言,当变量在“=”号左边时,主要是表示变量 阅读全文
posted @ 2020-10-23 11:05 叕叒双又 阅读(565) 评论(0) 推荐(0) 编辑
摘要: 原文链接:https://www.cnblogs.com/coderfenghc/archive/2013/01/20/2846621.html CMake 用法导览 Preface : 本文是CMake官方文档CMake Tutorial (http://www.cmake.org/cmake/h 阅读全文
posted @ 2020-10-23 10:23 叕叒双又 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 在使用matlab过程中,出现Failed to load module "canberra-gtk-module"的提示信息,打算看下相关软件是否安装,使用命令: locate libcanberra bash: locate:未找到命令 说明locate没有安装,解决方式如下: 1、安装软件: 阅读全文
posted @ 2020-10-20 11:24 叕叒双又 阅读(1534) 评论(0) 推荐(0) 编辑
上一页 1 ··· 45 46 47 48 49 50 51 52 53 ··· 117 下一页