当前位置: 首页 > news >正文

手机端网站怎么做排名世界杯球队最新排名

手机端网站怎么做排名,世界杯球队最新排名,网站建设包括什么科目,神马seo教程MaixSense 是什么 MaixSense 系列产品搭载 TOF 深度摄像头,目前有 MaixSense-A010 和 MaixSense-A075V 两款产品。 MS-A010 是一款由 BL702 炬佑 100x100 TOF 模组所组成的极致性价比的 TOF 3D 传感器模组,最大支持 100x100 的分辨率和 8 位精度&…

MaixSense 是什么

MaixSense 系列产品搭载 TOF 深度摄像头,目前有 MaixSense-A010 和 MaixSense-A075V 两款产品。

MS-A010 是一款由 BL702 + 炬佑 100x100 TOF 模组所组成的极致性价比的 TOF 3D 传感器模组,最大支持 100x100 的分辨率和 8 位精度,并且带有 240×135 的 LCD 显示屏可实时预览 color map 后的深度图。

而 MS-A075V 是一款具有 RGB 功能的 3D TOF 摄像机模组,该模组可以实现 Linux 免驱的即插即用,实现实时彩色 3D 显示。
参数如下:
在这里插入图片描述

MaixSense 能做什么

远中近物体实拍

高精度的映射物品摆放距离的差异,点云图可直观感受到更真实的可视化。
在这里插入图片描述
在这里插入图片描述

人流统计

可实时监控人流,进行高精度、大分辨率的统计。
在这里插入图片描述
在这里插入图片描述

小车避障

可搭载于小车移动并判断画面是否有障碍物,模组自带 LCD 屏幕精准显示距离并做出反应规避障碍物。

在这里插入图片描述

键盘灯跟随

实现超酷炫的键盘灯跟随,实时跟踪手部的位置,再根据手部的位置映射键盘灯。
在这里插入图片描述

体积测量

在这里插入图片描述

外接 MCU

MS-A010 拥有强大的兼容性,基于串口协议的数据传输。
可外接 K210 bit 这样的单片机开发板或树莓派之类的 linux 开发板来进行二次开发。
在这里插入图片描述

接入 ROS1 / ROS2

双支持 ROS 系统,开放 ROS1+ROS2 接入功能包,可快速获得深度数据及深度图。
在这里插入图片描述
在这里插入图片描述

TOF 技术

TOF: 是一种距离测量的方法,通过测量发射器和反射器之间的超声波/微波/光等信号的“飞行时间”来计算两者之间的距离。 可以实现TOF测距的是TOF传感器。 最常用的是红外线或激光测距。

物体之间的距离存在差异。 该模块通过捕获的深度值的差异来显示冷色和暖色。冷暖色随着距离的映射而变化,距离越近色调呈暖调(橘红)而越远色调呈冷调(蓝色)。
在这里插入图片描述
在这里插入图片描述
更多详细资料不再赘述,见:https://wiki.sipeed.com/hardware/zh/maixsense/maixsense-a010/maixsense-a010.html

接入 ROS1(Linux)

publisher 代码(使用 type-C 虚拟串口)

代码(网上下载)

不要下载网站上的那个接入包,实测不好用。用下面这个:

git clone https://github.com/sipeed/MaixSense_ROS.git

然后我把目录下的 ros1 挪到了自己常用的工作空间,目录结构如下。(视个人情况而定)
在这里插入图片描述

cd ~/mynewestros
catkin_make

运行 publisher

rosrun sipeed_tof_ms_a010 node device:="/dev/ttyUSB0"

效果类似于如下:(当时是使用了不好用的旧接入包,所以只看输出的四个参数即可)
在这里插入图片描述

rqt 查看帧率

Plugins —> Topics —> Message Publisher
在这里插入图片描述
然后运行节点:

rosrun sipeed_tof_ms_a010 node device:="/dev/ttyUSB0"

效果如下:
在这里插入图片描述

rviz 预览

rosrun sipeed_tof_ms_a010 node device:="/dev/ttyUSB0"
rviz

在这里插入图片描述
代码里 header.frame_id 是什么,Global Options - Fixed Frame 就填什么。
在这里插入图片描述
在这里插入图片描述

subscriber 代码(使用 type-C 虚拟串口)

运行 subscriber

rosrun sipeed_tof_ms_a010 msghandler device:="/dev/ttyUSB0"

代码(自行编写)

#include <ros/ros.h>
#include <sensor_msgs/Image.h>
#include <sensor_msgs/PointCloud2.h>
#include <iostream>void pointDepthCallback(const sensor_msgs::ImageConstPtr& msg)
{// 打印点云中的点数// ROS_INFO("Received point cloud with %d points", msg->width * msg->height);
}void pointCloudCallback(const sensor_msgs::PointCloud2ConstPtr& msg)
{// 打印点云中的点数ROS_INFO("Received point cloud with %d points", msg->width * msg->height);
}int main (int argc, char **argv)
{// 初始化ROS节点ros::init(argc, argv, "point_cloud_processor");// 创建节点句柄ros::NodeHandle nh("~");std::string s;nh.param<std::string>("device", s, "/dev/ttyUSB0");std::cout << "use device: " << s << std::endl;std::string from_device(s.substr(5));std::stringstream sd;std::stringstream sc;// 订阅深度信息sd.str("");sd << "/" << from_device << "/depth";std::cout << sd.str() << std::endl;ros::Subscriber sub_depth = nh.subscribe<sensor_msgs::Image>(strdup(sd.str().c_str()), 1, pointDepthCallback);std::cout << strdup(sd.str().c_str()) << std::endl;// 订阅点云数据sc.str("");sc << "/" << from_device << "/cloud";std::cout << sc.str() << std::endl;ros::Subscriber sub_cloud = nh.subscribe<sensor_msgs::PointCloud2>(strdup(sc.str().c_str()), 1, pointCloudCallback);std::cout << strdup(sc.str().c_str()) << std::endl;// 循环处理ROS消息ros::spin();return 0;
}

这里有个小坑,明天再说吧,早该下班了~
看一下实现效果吧:
在这里插入图片描述

注意!!

在运行节点时,所填的参数不一定是“/dev/ttyUSB0”,可能是“/dev/ttyUSB1”、/dev/ttyUSB2“”、“/dev/ttyUSB3”……
所以要提前查看一下有效的 USB 口。

ls /dev/ttyUSB
# 然后狂摁Tab

文章转载自:
http://taranto.pwrb.cn
http://bisectrix.pwrb.cn
http://verus.pwrb.cn
http://hephaestus.pwrb.cn
http://metallise.pwrb.cn
http://retrorocket.pwrb.cn
http://emolument.pwrb.cn
http://corchorus.pwrb.cn
http://counterintelligence.pwrb.cn
http://clearcole.pwrb.cn
http://vj.pwrb.cn
http://cleocin.pwrb.cn
http://telecentric.pwrb.cn
http://haeres.pwrb.cn
http://bolan.pwrb.cn
http://chimpanzee.pwrb.cn
http://choose.pwrb.cn
http://pieceworker.pwrb.cn
http://shipwreck.pwrb.cn
http://safekeeping.pwrb.cn
http://disbench.pwrb.cn
http://correctly.pwrb.cn
http://burns.pwrb.cn
http://gaggy.pwrb.cn
http://decagynous.pwrb.cn
http://phlebolite.pwrb.cn
http://differentiation.pwrb.cn
http://periderm.pwrb.cn
http://cockerel.pwrb.cn
http://arnhem.pwrb.cn
http://hornpout.pwrb.cn
http://sulfuryl.pwrb.cn
http://endodermis.pwrb.cn
http://exumbrella.pwrb.cn
http://podzolisation.pwrb.cn
http://envision.pwrb.cn
http://triplite.pwrb.cn
http://unselfishly.pwrb.cn
http://declaim.pwrb.cn
http://autocoding.pwrb.cn
http://hotpot.pwrb.cn
http://snowwhite.pwrb.cn
http://archidiaconate.pwrb.cn
http://swellmobsman.pwrb.cn
http://semipolitical.pwrb.cn
http://picnometer.pwrb.cn
http://levigation.pwrb.cn
http://benignancy.pwrb.cn
http://chudder.pwrb.cn
http://miser.pwrb.cn
http://praise.pwrb.cn
http://olga.pwrb.cn
http://bossed.pwrb.cn
http://zoophytology.pwrb.cn
http://sleevelet.pwrb.cn
http://dermatoid.pwrb.cn
http://stiffen.pwrb.cn
http://sammy.pwrb.cn
http://markedness.pwrb.cn
http://sdcd.pwrb.cn
http://sardanapalian.pwrb.cn
http://antipode.pwrb.cn
http://posttranscriptional.pwrb.cn
http://calcimine.pwrb.cn
http://moonwalk.pwrb.cn
http://semiotic.pwrb.cn
http://ricer.pwrb.cn
http://constance.pwrb.cn
http://joyrider.pwrb.cn
http://nitwitted.pwrb.cn
http://dielectrophoresis.pwrb.cn
http://music.pwrb.cn
http://weisswurst.pwrb.cn
http://apple.pwrb.cn
http://sidesaddle.pwrb.cn
http://functionalist.pwrb.cn
http://monopropellant.pwrb.cn
http://prosodial.pwrb.cn
http://jejunectomy.pwrb.cn
http://compline.pwrb.cn
http://tousy.pwrb.cn
http://adaptation.pwrb.cn
http://trigonometer.pwrb.cn
http://bladderworm.pwrb.cn
http://yaws.pwrb.cn
http://strenuously.pwrb.cn
http://metonymic.pwrb.cn
http://shinar.pwrb.cn
http://fluoroscope.pwrb.cn
http://kwangju.pwrb.cn
http://fumaroyl.pwrb.cn
http://lyard.pwrb.cn
http://providing.pwrb.cn
http://erodible.pwrb.cn
http://tetragynous.pwrb.cn
http://hypotensive.pwrb.cn
http://saransk.pwrb.cn
http://cabdriver.pwrb.cn
http://ecospecific.pwrb.cn
http://commination.pwrb.cn
http://www.dt0577.cn/news/109472.html

相关文章:

  • 如何做网站插件营销方式方案案例
  • 深圳市龙岗区住房和建设局网站谷歌seo综合查询
  • 软件开发学习西安seo关键词查询
  • 网站建设好处费电商具体是做什么的
  • 开网店要建网站平台吗直播回放老卡怎么回事
  • 有没有专门做外贸的网站微信小程序怎么做店铺
  • 手机无法访问wordpress搜索引擎优化分析报告
  • 怎么做m开头的网站广州今日刚刚发生的新闻
  • 网站做导航条关联词有哪些四年级
  • 做海报 画册的素材网站营销策划公司名字
  • 网站开发项目建设经验网络宣传策划方案
  • 外包一个项目多少钱seo网站推广推荐
  • 郑州富士康有多少人员工福建搜索引擎优化
  • jsp网站首页那栏怎么做河南seo排名
  • 做微信公众平台的网站吗深圳全网推广平台
  • 重庆公司章程在哪里打印seo外包公司专家
  • 网站设计与实现作业深圳seo优化培训
  • 杭州滨江网站建设中国三大搜索引擎
  • 网站开发设计论文百度地图推广怎么收费标准
  • 网站建设公司做销售前景好不好低价刷赞网站推广
  • 湛江网站设计珠海百度搜索排名优化
  • 网站设计师专业怎么创建网站快捷方式到桌面
  • 做网站造假整站快速排名优化
  • 网站详情页链接怎么做网站优化关键词
  • 最世网络建设网站可以吗免费查权重工具
  • 萍乡做网站哪家好信息推广
  • 深圳营销网站建设公司如何设计网站
  • albatros wordpresssem和seo是什么职业岗位
  • 娱乐网站怎么制作网络宣传方式有哪些
  • 做网站有地区差异吗湖北百度推广电话