登录
首页 » Others » OSELM代码matlab实现

OSELM代码matlab实现

于 2020-12-02 发布
0 228
下载积分: 1 下载次数: 4

代码说明:

OSELM代码,通过matlab实现。可用于目标跟踪,回归分析预测、以及分类。

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 中国详细shapefile文件
    中国详细shapefile文件省市县镇村全都包括!中国详细shapefile文件省市县镇村全都包括!中国详细shapefile文件省市县镇村全都包括!
    2020-12-06下载
    积分:1
  • 利用matlab实现语音盲分离
    本文利用了独立变量分析的算法,用 matlab实现了语音信号的盲分离。这在语音识别,以及未来机器人智能化上起着至关重要的作用
    2020-12-12下载
    积分:1
  • seulex 词法分析器生成工具+实验报告
    seulex, 编译原理课程设计做的一个lex工具,实现的了基本功能,就是生成的词法分析器有点儿臃肿,大家可以改进一下~
    2020-12-08下载
    积分:1
  • 无人驾驶入门--Autoware使用手册
    无人驾驶汽车系统入门 - Autoware_UsersManual_v1.1Autoware-用于城市自主驾驶的集成开源软件,支持以下功能:3D本地化3D映射路径规划路径跟随加速/制动/转向控制数据记录汽车/行人/物体检测交通信号检测交通灯识别车道检测对象跟踪传感器校准传感器融合面向云的地图连接自动化智能手机导航软件仿真虚拟现实Autoware受BSD许可证保护。请自行负责使用。为了安全使用,我们为不拥有真正自主车辆的人提供基于ROSBAG的仿真方法。如果您使用Autoware与真正的自主车辆,请在现场测试之前制定安全措施和风险评估。工尹-刁一定義亡机飞求世。Chapter1。 About This documentThis chapter describes the purpose of this document.Autoware Users ManualAutoware Developers manualChapter2。 RoS and AutowareBefore operating Autoware, RoS and Autoware are described in this chapter.Robot middleware- rosecently, the wide range potential of robotics has been focused by not only roboticsexperts but also non-robotics experts to join robot development It is believed thatthis trend leads robotics to advancement and developments to other domainsHowever, robot development is getting harder because the advancement and the complexityof robot functions have been increased Unlike Pcs and smartphones robotic developmenthas considered various hardware, OS, programming languages. Hence, the differences havemainly been obstructed for robotic developers as well as robotics experts to join robotdevelopmentTo solve the problem, the demand of making common platforms has been increased, andsome platforms have been published Within a common platform, developers can combinevarious software published by other developers, and speed up development by reusing themTherefore, it is expected that developers can more focus on fields of interestROS (Robot Operating System) is a framework for robotic software development. It wasdeveloped by Willow Garage in U.S. OSFR (Open Source Robotics Foundation) has currentlymaintained it. The open sourced ros has mainly been used by communities in U.S. andEurope as well as communities in JapanNote that ros has "os" in its name however, it is not "os" like Windows or linux. It is amiddleware that runs on uniX based OSROS FeaturesOriginal build system(Catkin)mage processing library(OpenCvv Data logging tool (ROSBAG)v Visualization tools for data and software state(rvizCoordinate transformation library (TFQt based gul development tool (RQTA""file is used to start multiple nodes atAutowareutoware is open source software based on ros. autoware is pushed on github forautonomous driving research and development. Most of autonomous drivingsystem consist of recognition, judgment, and operation. Autoware providesnecessary functions, such as 3-D map generation, localization, object recognition, andvehicle control, for autonomous drivingROS PCAutoware〔Ros)RecognitionJudgmentoperationObject DetectionLane KeepingAcceleratorLocalizationIntersectionBrakeSteeringAutowareRiderAutoware routePath PlanningVehicleVehicle control(CAN)CFigure 1 Autoware overviewwhile support systems such as driving assistance and safetydiagnosis support, use multi-core CPU3-D Map Generation and SharingLocalization(NDT: Normal Distributions Transform)object DetectionPath GenerationAutonomous Drivingtarget speed. In addition, the route includes landmarks, "way point, setintervals. The autonomous driving system operates path following by following the wayUser InterfaceA user interface called " Runtime Manager ofpath following. Furthermore, a tablet user interface, "Autoware Rider, of Autoware enablesROS PCAutoware(ROS)Runtime ManagerVIZAutoware ridertabletDisplay on vehicleOculusFigure 2 User interfacePlatform structure for autowareApplicationAutowareMiddlewareROSHost OsLinux( UbuntuCPUGPUCameraGNSSLIDARFigure 3 Platform structure for Autoware
    2021-05-07下载
    积分:1
  • SPH算法 流体仿真模拟 亲测可运行
    写毕业论文,从国外网站找到的液体流动仿真这方面的材料,这个是比较好的一个,可以运行,使用对比学习
    2020-12-06下载
    积分:1
  • Introduction to Robotics - Mechanics and Control.pdf
    Introduction to Robotics - Mechanics and Control,John J.Craig第三版,很好的机器人方面的教材。好像比第二版多了很多东东,加了matlab习题。
    2020-06-25下载
    积分:1
  • MATLAB实现小于指定空洞面积的空洞进行填充
    MATLAB对小于某个面积大小的空洞进行填充,在MATLAB自带的空洞填充代码上加上面积限制
    2020-11-03下载
    积分:1
  • 递推极大似然参数辨识法
    递推极大似然参数辨识法MATLAB程序clear all%清理工作间变量close all%关闭所有图形clc%清屏%%%% M序列、噪声信号产生%%%%L=1200;%四位移位积存器产生的M序列的周期y1=1;y2=1;y3=1;y4=0;%四个移位积存器的输出初始值for i=1:L; x1=xor(y3,y4);%第一个移位积存器的输入信号 x2=y1;%第二个移位积存器的输入信号 x3=y2;%第三个移位积存器的输入信号 x4=y3;%第四个移位积存器的输入信号 y(i)=y4;%第四个移位积存器的输出信号,幅值"0"和"1"
    2020-12-02下载
    积分:1
  • 图像分割算法研究(区域分割,数学形态学,模式识别和神经网络分割,小波分析和变换)
    该书包括:典型实用的基本图像分割算法、特殊的图像分割技术,以及图像分割评价的研究,如区域分割,数学形态学,模式识别和神经网络分割,小波分析和变换。
    2021-05-07下载
    积分:1
  • 加权质心定位算法
    加权质心定位算法,里面有我的解释,很详细,相信大家能够看懂
    2020-12-06下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载