自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(18)
  • 资源 (1)
  • 收藏
  • 关注

原创 opencv4 drawMatches及drawKeypoints没有此函数问题

在使用opencv4绘制点和线的时候调用函数发现错误drawMatches(img_1, keypoints_1, img_2, keypoints_2, matches, img_matches);drawMatches(img_1, keypoints_1, img_2, keypoints_2, goodMatches, img_out, Scalar::all(-1), CV_RGB(0, 0, 255), Mat(), 2);上一条不报错但下一条报错,将下一条后面表示颜色的部分删除即可。

2021-03-31 17:22:06 550

原创 Opencv 名词解释_GaussianBlur函数_高斯滤波

函数原型: void GaussianBlur(InputArray src, OutputArray dst, Size ksize, double sigmaX, double sigmaY=0, int borderType=BORDER_DEFAULT);参数详解:src,输入图像,即源图像,填Mat类的对象即可。它可以是单独的任意通道数的图片,但需要注意,图片深度应该为CV_8U,CV_16U, CV_16S, CV_32F 以及 CV_64F之一。dst,即目标图像,需要和源图

2021-03-04 14:27:44 608 1

原创 ubuntu16.04 配置opencv3.4.7

更改下载源,我使用的是清华源。打开终端 sudo apt-get updatesudo apt-get install build-essentialsudo apt-get install cmake git libgtk2.0-dev pkg-config libavcodec-dev libavformat-dev libswscale-devsudo apt-get install python-dev python-numpy libtbb2 libtbb-dev libjpeg-dev.

2020-12-22 11:40:31 204

原创 ubuntu16.04 snap安装vscode

问题1:snapd operation finished with error cannot perform the following tasks: - Download snap “code” (52) from channel “stable” (context canceled)解决:https://www.cnblogs.com/qinghuani/p/12409721.html问题2:install-snap change in progress(出现install-snap change

2020-12-22 10:53:01 733

原创 ubuntu vtworay/fly

original setting file:https://yuan.ga/v2ray-complete-tutorial/problem1:ERROR: This script has been DISCARDED, please switch to fhs-install-v2ray project.HOW TO USE: https://github.com/v2fly/fhs-install-v2rayTO MIGRATE: https://github.com/v2fly/fhs-in.

2020-12-21 10:07:57 3500

原创 ubuntu下配置docker

安装包,允许 apt 命令 HTTPS 访问 Docker 源。$ apt-get install \ apt-transport-https \ ca-certificates \ curl \ software-properties-common添加 Docker 官方的 GPG$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add -将 Docker 的.

2020-12-16 15:58:00 225

转载 解决ubuntu下挂载正忙无法解除挂载问题

fuser -m 文件夹fuser -k 文件夹umount 文件夹rm -rf 文件夹

2020-12-15 15:07:05 1119

转载 GoledenDict翻译 ubuntu14.0安装配置

安装命令sudo apt-get install goldendict配置编辑–>词典—>网站选项卡,点击添加,这里添加一些翻译的源

2020-10-22 09:42:57 162

原创 ubuntu14.04 百度网盘

三个工具1、aria2 命令行下载工具,负责下载百度文件2、BaiduExporter 浏览器插件,能够把选中的云盘文件/文件夹下载地址导出到aria2,支持Chrome和Firefox3、webui-aria2 webui,可视化aria2下载进度(可视化工具也可不安装)安装aria2 sudo apt-get install aria2安装BaiduExporter官网https://github.com/acgotaku/BaiduExporter...

2020-10-20 15:06:54 532

原创 ubuntu14.04安装chrome

下载deb包对于谷歌Chrome32位版本,使用如下链接:wget https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb对于64位版本可以使用如下链接下载:wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb必须下载正确的版本否则会出现问题安装deb包sudo dpkg -i google-chr.

2020-10-16 17:10:58 162

原创 ubuntu14.0 opencv3.0配置

1.安装Eigen3,使用简单命令安装sudo apt-get install libeigen3-dev 安装成功之后,在/usr/include/eigen3/Eigen/src/Core/util/Macros.h 文件里面可以看到安装的版本,安装成功后,头文件路径在 /usr/local/include/eigen3/2.测试程序:https://www.jianshu.com/p/41ff7b4502d53.安装opencv3.0.0:系统更新:利用ubuntu自带的更新管理器

2020-10-12 17:01:57 162 1

原创 ubuntu14.04安装网易云1.0.0

1.因为2020年还在用14.04,和官网的18版本不兼容,所以只能找大哥流下来的资源 https://blog.youkuaiyun.com/lcbupt110/article/details/78948931/找到14.04版本并下载安装2.双击安装即可,但是我因为之前装了18版本的所以安装后打不开,于是尝试命令行操作。出现如图依赖问题。通过sudo apt-get install -f 解决。3.这样就可以正常使用了...

2020-09-29 11:36:27 231

原创 openGL-ball

//// main.cpp// OpenGL-final//// Created by John&cat on 2020/4/27.// Copyright © 2020 John&cat. All rights reserved.// 发光小球#define GL_SILENCE_DEPRECATION# include <GLUT/GLUT....

2020-08-29 23:33:29 103

原创 POV-car

#include "colors.inc"#include "metals.inc"#include "glass.inc"//相机//这个位置车子刚好落在草地上了camera { location <20,2.0,-5> direction z*1.5 right x*image_width/image_height look...

2020-08-29 23:33:02 177 1

原创 POV-sample

#include "colors.inc" #include "textures.inc" camera { location <-4, 3, -9> look_at <0, 0, 0> angle 48 } plane { y, -1 texture { pigment { c...

2020-08-29 23:32:29 109

原创 openGL-bike

//// main.cpp// OpenGL-final//// Created by John&cat on 2020/4/27.// Copyright © 2020 John&cat. All rights reserved.// 可移动自行车#define GL_SILENCE_DEPRECATION#include <cmath>...

2020-08-29 23:32:05 147

原创 11.5_Xcode_ios_opencv 开发初始配置

1.创建Single View App2.添加opencv2.frameworkframework配置参考https://www.jianshu.com/p/fa26bd62abd4添加时注意勾选这三个3.添加其他framework添加完成4.将ViewController.m改成ViewController.mm5.在ViewController.h中import相关库注意opencv2的引用要放在最前面,否则会报错找不到文件6...

2020-06-06 13:07:37 337

原创 openGL-3Dcar

//// main.cpp// OpenGL-final//// Created by John&cat on 2020/4/27.// Copyright © 2020 John&cat. All rights reserved.// 旋转的车#define GL_SILENCE_DEPRECATION#include <stdio.h>...

2020-04-28 11:36:03 384

ios-opencv边缘检测

图像识别相关的 用xocde完成的ios+opencv边缘检测项目 可直接进行真机调试 完整xcode项目 安全可用

2020-06-06

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除