• 博客园logo
  • 会员
  • 周边
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • YouClaw
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
MKT-porter
博客园    首页    新随笔    联系   管理    订阅  订阅
上一页 1 ··· 46 47 48 49 50 51 52 53 54 ··· 85 下一页
2020年8月9日
Ubuntu16.04系统安装谷歌浏览器(Google chorm)
摘要: 打开终端,输入以下命令即可,必须一步一步来,缺一不可,尤其是第3步 sudo add-apt-repository ppa:a-v-shkop/chromium sudo apt-get update sudo apt-get install chromium-browser 阅读全文
posted @ 2020-08-09 03:14 MKT-porter 阅读(762) 评论(0) 推荐(0)
Anaconda3(6)安装opencv
摘要: 1激活环境 conda activate python36 2安装 pip install opencv-python 3根据提示根性了下pip pip install --upgrade pip 4重新看 阅读全文
posted @ 2020-08-09 01:15 MKT-porter 阅读(176) 评论(0) 推荐(0)
Ubuntu 16.04 几个国内更新源
摘要: https://blog.csdn.net/zy1049677338/article/details/86005806 如何更改源 1/ 在修改source.list前,最好先备份一份 执行备份命令 sudo cp /etc/apt/sources.list /etc/apt/sources.lis 阅读全文
posted @ 2020-08-09 01:00 MKT-porter 阅读(248) 评论(0) 推荐(0)
Anaconda3(5-4)UBUTU1604 安装spyder
摘要: 阅读全文
posted @ 2020-08-09 00:33 MKT-porter 阅读(117) 评论(0) 推荐(0)
2020年8月7日
无人机姿态定位
摘要: 特征点 https://github.com/magicleap/SuperPointPretrainedNetwork 全流程 https://github.com/cvg/Hierarchical-Localization 阅读全文
posted @ 2020-08-07 20:05 MKT-porter 阅读(170) 评论(0) 推荐(0)
Anaconda3(1-2)ubuntu18安装教程
摘要: https://blog.csdn.net/lwplwf/article/details/79162470 1.下载Anaconda 地址:https://www.anaconda.com/download/#linux 历史版本: https://repo.anaconda.com/archive 阅读全文
posted @ 2020-08-07 13:10 MKT-porter 阅读(455) 评论(0) 推荐(0)
2020年8月6日
cuda加速拼接
摘要: https://developer.nvidia.com/warp-and-blend 阅读全文
posted @ 2020-08-06 16:32 MKT-porter 阅读(145) 评论(0) 推荐(0)
树莓派智能停车场
摘要: https://www.instructables.com/id/Smart-Parking-Lot-Using-Raspberry-Pi/ https://m.epwk.com/task/875093/4827844.html 在此指导中,我们将创建一个连接到Web界面的全自动停车系统。您将能够看 阅读全文
posted @ 2020-08-06 15:28 MKT-porter 阅读(949) 评论(1) 推荐(0)
2020年8月2日
python3.7安装
摘要: 安装 https://my.oschina.net/mengyoufengyu/blog/2248239 树莓派3b+编译安装Python3.7.0 原 mbzhong 发布于 2018/10/17 21:47 字数 194 阅读 5.2K 收藏 0 点赞 0 评论 0 Raspberry PiPy 阅读全文
posted @ 2020-08-02 03:55 MKT-porter 阅读(221) 评论(0) 推荐(0)
2020年7月31日
opencv-python读取摄像头
摘要: 1获取普通USB相机 #-*- coding: UTF-8 -*- import numpy as np # 引入numpy 用于矩阵运算 import cv2 # 引入opencv库函数 ## VideCapture里面的序号 # 0 : 默认为笔记本上的摄像头(如果有的话) / USB摄像头 w 阅读全文
posted @ 2020-07-31 16:09 MKT-porter 阅读(4687) 评论(0) 推荐(1)
2020年7月28日
arduino字符分割
摘要: //待分割字符 String split_input= "My_i_You_i_Her_i_XiaoHe_i_"; //分割结果 String split_result[10];//手动动态调整数组大小,保证数组可以满足容量 void setup() { Serial.begin(115200); 阅读全文
posted @ 2020-07-28 16:37 MKT-porter 阅读(1176) 评论(0) 推荐(0)
2020年7月24日
重映射及remap()函数介绍
摘要: https://www.cnblogs.com/HL-space/p/10546595.html 重映射,就是把一幅图像中某位置的像素放置到另一图像指定位置的过程。即: 在重映射过程中,图像的大小也可以同时发生改变。此时像素与像素之间的关系就不是一一对应关系,因此在重映射过程中,可能会涉及到像素值的 阅读全文
posted @ 2020-07-24 16:58 MKT-porter 阅读(819) 评论(0) 推荐(0)
sprintf构造字符富
摘要: char key = waitKey(5); if (key == 's' || key == 's') { for (int i = 0; i < CamNumber; i++) { char savePath[200]; sprintf_s(savePath, "../CalibConfig/c 阅读全文
posted @ 2020-07-24 02:37 MKT-porter 阅读(121) 评论(0) 推荐(0)
脚本开启EXE
摘要: 关闭 Set ws = Createobject("Wscript.shell") ws.run "taskkill /f /im FHY_IPCamera1.exe",0,true WScript.Sleep 200 ws.run "taskkill /f /im FHY_IPCamera2.ex 阅读全文
posted @ 2020-07-24 01:53 MKT-porter 阅读(167) 评论(0) 推荐(0)
2020年7月20日
热成像
摘要: 1 usb 安装 https://github.com/groupgets/GetThermal/wiki/Building-for-Raspberry-Pi 2报错 么有全驱动GL 4b没有这个 我需要更新下内核 3内核更新‘ This is only required if you are st 阅读全文
posted @ 2020-07-20 23:35 MKT-porter 阅读(661) 评论(0) 推荐(0)
2020年7月16日
树莓派测温
摘要: https://www.youtube.com/watch?v=CWnVHOqTdrE https://www.piddlerintheroot.com/thermal-camera-amg8833/ Thermal Camera (AMG8833) 代码 https://learn.adafrui 阅读全文
posted @ 2020-07-16 12:37 MKT-porter 阅读(386) 评论(0) 推荐(0)
2020年7月8日
全景拼接学习-原理篇 (0) 相机标定 内参和外参
该文被密码保护。 阅读全文
posted @ 2020-07-08 23:52 MKT-porter 阅读(21) 评论(0) 推荐(0)
2020年6月24日
c++模板使用
摘要: https://www.cnblogs.com/msymm/p/9750787.html 简单来说,一个函数的输入参数类型不定,为了保证一个函数可对多个类型参数使用,改一个模板 1要实现声明 2使用 <>代替() template <class numtype> //声明一个模板,虚拟类型名为num 阅读全文
posted @ 2020-06-24 17:51 MKT-porter 阅读(152) 评论(0) 推荐(0)
2020年6月23日
配置文件读取(2-2)读取yml
摘要: 基本模块 yml内容 %YAML:1.0 ImagePath:"data/image/image0" CornerPath:"data/corners.txt" MapPath:"data/xml/" static int parseCmdArgs(int argc, char** argv) // 阅读全文
posted @ 2020-06-23 23:05 MKT-porter 阅读(168) 评论(0) 推荐(0)
全景拼接学习-原理篇 (4) 基本过程
摘要: https://zhuanlan.zhihu.com/p/71777362 这个和代码主要用于理解 #include <fstream> #include <string> #include<iostream> #include "opencv2/opencv_modules.hpp" #inclu 阅读全文
posted @ 2020-06-23 03:12 MKT-porter 阅读(717) 评论(0) 推荐(0)
上一页 1 ··· 46 47 48 49 50 51 52 53 54 ··· 85 下一页
博客园  ©  2004-2026
浙公网安备 33010602011771号 浙ICP备2021040463号-3