• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
MKT-porter
博客园    首页    新随笔    联系   管理    订阅  订阅
上一页 1 ··· 33 34 35 36 37 38 39 40 41 ··· 80 下一页
2021年10月17日
zigbee无线串口
摘要: 2.4G zigbee无线串口收发模块 CC2530数据透传 点对点广播模式TTL 连接参考 https://item.taobao.com/item.htm?spm=a1z09.2.0.0.693f2e8dthmJVV&id=536534170165&_u=h1qf7bf5f801 点对电通信 1 阅读全文
posted @ 2021-10-17 15:03 MKT-porter 阅读(322) 评论(0) 推荐(0)
2021年10月15日
python队列进程传输数据
摘要: # -*- coding: utf-8 -*- #activate py37_tfgpu1131_keras215_opencv341 import time import json import multiprocessing as mp # 发送进程获取数据处理 def Client2PaySe 阅读全文
posted @ 2021-10-15 21:07 MKT-porter 阅读(133) 评论(0) 推荐(0)
双目相机(2)配准和计算深度
摘要: https://blog.csdn.net/chenshiming1995/article/details/106546455 双目相机标定+去畸变+获得视差+深度 一共需要解决几个问题:棋格板或者圆点板,代码有细微差别怎样对比标定结果: 观察像素误差需不需要棋盘格子的尺寸:内参不需要,只有计算双目 阅读全文
posted @ 2021-10-15 17:48 MKT-porter 阅读(1533) 评论(0) 推荐(0)
双目相机(1)标定
摘要: matlab双目标定(详细过程) https://blog.csdn.net/qq_38236355/article/details/89280633 双目相机标定主要是为了获得摄像头的内参(f,1/dx,1/dy,cx,cy)、畸变参数(k1,k2,k3,p1,p1)和外参(R,t),用于接下来的 阅读全文
posted @ 2021-10-15 17:40 MKT-porter 阅读(2539) 评论(0) 推荐(0)
同态加密
摘要: 加法同态 #!/usr/bin/env python3 """Paillier encryption library for partially homomorphic encryption.""" import random import phe from phe import EncodedNu 阅读全文
posted @ 2021-10-15 17:06 MKT-porter 阅读(169) 评论(0) 推荐(0)
2021年10月11日
Android连接MQTT简单的Demo
摘要: https://www.cnblogs.com/yangfengwu/p/11839484.html 项目开发:基础篇(测试板型号:ESA2GJK1DH1K) 此为出售的教程:开发板链接 开发板学习交流群: 提醒:为方便代码移植和使用,使用了大量的程序处理架构,封装了很多处理架构包!望耐心学习体会! 阅读全文
posted @ 2021-10-11 22:03 MKT-porter 阅读(2302) 评论(0) 推荐(0)
学习(1)Kalibr多相机校准 视觉惯性校准校准(相机-IMU)滚动快门相机校准
摘要: https://github.com/ethz-asl/kalibr 阅读全文
posted @ 2021-10-11 09:54 MKT-porter 阅读(149) 评论(0) 推荐(0)
学习(1)相机标定之张正友标定法数学原理详解(含python源码)
摘要: https://zhuanlan.zhihu.com/p/94244568 一、相机标定的目的 我们首先要明白两个问题:1、相机是如何成像的?2、相机标定的目的是什么? 1、相机是如何成像的呢? 相机成像系统中,共包含四个坐标系:世界坐标系、相机坐标系、图像坐标系、像素坐标系。对于这四个坐标系中之间 阅读全文
posted @ 2021-10-11 09:50 MKT-porter 阅读(3840) 评论(0) 推荐(3)
2021年9月24日
cmake(7) 配置cuda sift
摘要: https://github.com/Celebrandil/CudaSift/blob/Pascal/CMakeLists.txt cmake_minimum_required(VERSION 2.6) project(cudaSift) set(cudaSift_VERSION_MAJOR 2) 阅读全文
posted @ 2021-09-24 15:04 MKT-porter 阅读(603) 评论(0) 推荐(0)
数据库可视化
摘要: 在ubuntu上试了好几种sqlite 工具,感觉这个比较好用,mark一下。ubuntu(18.04+)安装方式如下 1.To add this ppa just type in these commands in terminal: sudo add-apt-repository -y ppa: 阅读全文
posted @ 2021-09-24 11:04 MKT-porter 阅读(73) 评论(0) 推荐(0)
h5文件交互
摘要: 可视化 https://blog.csdn.net/qq_42508076/article/details/116600303 1、打开cmd,用以下下命令安装vitables工具包命令:pip install vitables2、安装成功后在终端进入到保存hdf5的文件夹下可通过以下命令实现hdf 阅读全文
posted @ 2021-09-24 10:58 MKT-porter 阅读(317) 评论(0) 推荐(0)
2021年9月11日
python读写xml
摘要: Data.xml <collection shelf="New Arrivals"> <movie title="Enemy Behind"> <type>War, Thriller</type> <format>DVD</format> <year>2003</year> <rating>PG</ 阅读全文
posted @ 2021-09-11 11:36 MKT-porter 阅读(123) 评论(0) 推荐(0)
python读取文件夹下图像的GPS并且可视化
摘要: # -*- coding: utf-8 -*- import os import cv2 # 获取文件下下所有文件路径 ''' 输入:文件夹的路径 输出:文件列表 - 所有格式 ''' def file_name(file_dir): for root, dirs, files in os.walk 阅读全文
posted @ 2021-09-11 08:32 MKT-porter 阅读(191) 评论(0) 推荐(0)
2021年9月9日
pyton opencv读取文件夹图像批量化resize
摘要: # -*- coding: utf-8 -*- import os def file_name(file_dir): for root, dirs, files in os.walk(file_dir): #print(root) #当前目录路径 #print(dirs) #当前路径下所有子目录 # 阅读全文
posted @ 2021-09-09 22:23 MKT-porter 阅读(86) 评论(0) 推荐(0)
2021年9月7日
海康USB相机开发(1)ubuntu18下python转化opencv
摘要: https://www.hikrobotics.com/cn2/source/vision/document/2023/7/14/%E6%B5%B7%E5%BA%B7%E6%9C%BA%E5%99%A8%E4%BA%BAUSB3.0%E5%B7%A5%E4%B8%9A%E9%9D%A2%E9%98% 阅读全文
posted @ 2021-09-07 21:18 MKT-porter 阅读(2994) 评论(0) 推荐(0)
flask+sqlite3+echarts3 系统监控
摘要: 总的而言,分三部分:1.监控器(monitor.py): 每秒获取系统的四个cpu的使用率,存入数据库。2.路由器(app.py): 响应页面的ajax,获取最新的一条或多条数据。3.页面(index.html): 发出ajax请求,更新echarts图表 一、监控器 使用了psutil库,对系统进 阅读全文
posted @ 2021-09-07 15:01 MKT-porter 阅读(156) 评论(0) 推荐(0)
flask+socketio+echarts3 服务器监控程序(基于后端数据推送)
摘要: https://www.cnblogs.com/hhh5460/p/7397006.html app.py 路由及后台线程 ''' 服务器cpu监控程序 思路:后端后台线程一旦产生数据,即刻推送至前端。 好处:不需要前端ajax定时查询,节省服务器资源。 作者:hhh5460 时间:2017.8.1 阅读全文
posted @ 2021-09-07 14:59 MKT-porter 阅读(90) 评论(0) 推荐(0)
2021年9月4日
数据库读写分离
摘要: https://segmentfault.com/a/1190000038420324 主从分离 https://segmentfault.com/a/1190000023775512 一台电脑配置数据库主从(读写分离) https://blog.csdn.net/u010814849/articl 阅读全文
posted @ 2021-09-04 09:55 MKT-porter 阅读(89) 评论(0) 推荐(0)
2021年9月2日
Flask 处理高并发、多线程
摘要: https://zhuanlan.zhihu.com/p/102716258 Gunicorn介绍 压力测试 多线程测试 https://www.jianshu.com/p/79489cfc6fb9 1.通过设置app.run()的参数,来达到多线程的效果,具体参数: # 1.threaded : 阅读全文
posted @ 2021-09-02 00:08 MKT-porter 阅读(8830) 评论(1) 推荐(0)
2021年8月27日
python tcp 经典
摘要: tcp_send.py # -*- coding: utf-8 -*- #activate py37_tfgpu1131_keras215_opencv341 import socket,threading def c_thread(s_client,addr): print(addr,'成功连接' 阅读全文
posted @ 2021-08-27 16:48 MKT-porter 阅读(50) 评论(0) 推荐(0)
上一页 1 ··· 33 34 35 36 37 38 39 40 41 ··· 80 下一页
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3