登录
首页 » Others » C++实现灰度图像的边缘检测、提取及轮廓跟踪

C++实现灰度图像的边缘检测、提取及轮廓跟踪

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

代码说明:

C++实现灰度图像的边缘检测、提取及轮廓跟踪;包括Roberts算子、Sobel算子、Prewitt算子、Krisch算子;hough变换;轮廓提取;种子填充。(bmp灰度图片),vc6.0运行无误

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

发表评论

0 个回复

  • 连接SQL数据库,自动生成Insert脚本(DELPHI源代码)
    支持SQL2000,SQL2005,小工具,供学习使用使用标准DELPHI控件,最低支持D6
    2020-12-10下载
    积分:1
  • FPGA UDP+MAC实现
    MII接口FPGA驱动源程序
    2021-05-07下载
    积分:1
  • HyperMesh & HyperView 应用技巧与高级实例
    Hypermesh应用技巧与高级实例,有需要附带观盘的可以联系我,我给你分享过去
    2020-12-03下载
    积分:1
  • 基于51单片机直流电机调速设计(内含源序,PCB原理图及源文件,仿真,开报告,讲解视频,元件清单,参考论文等,课设必备)
    (内含源程序,PCB原理图及源文件,仿真,开题报告,讲解视频,元件清单,参考论文等,课设必备)
    2021-05-06下载
    积分:1
  • DRV8711控制
    步进电机驱动芯片DRV8711的控制程序,包含SPI的初始化配置,DRV8711的寄存器配置。
    2020-12-05下载
    积分: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
  • 吴恩达机器学习coursera作业目+答案
    题目+答案,很好用。解决了在线看coursera课程作业下载不了的问题。
    2020-06-27下载
    积分: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
  • ns2 dra卫星路由仿真脚本
    卫星通信网络路由技术及其模拟 书中源码 是dra路由算法的配置仿真脚本代码
    2020-12-04下载
    积分:1
  • 带有MPPT功能的光伏阵列Matlab通用仿真模型
    带有MPPT功能的光伏阵列Matlab通用仿真模型
    2020-12-05下载
    积分:1
  • 696516资源总数
  • 106913会员总数
  • 8今日下载