登录
首页 » matlab » chepai

chepai

于 2018-12-18 发布 文件大小:172KB
0 207
下载积分: 1 下载次数: 7

代码说明:

  该课题是车牌识别设计,含有人机交互式界面GUI,可以识别多省份车牌,换车牌调试即可。(This topic is the design of license plate recognition. It contains human-computer interactive interface GUI, which can recognize the license plates of many provinces and debug the license plate.)

文件列表:

chepai, 0 , 2016-12-18
chepai\chepaishibie.m, 9389 , 2017-05-06
chepai\chepaishibiegui.fig, 113764 , 2017-03-10
chepai\chepaishibiegui.m, 10196 , 2017-03-10
chepai\example, 0 , 2016-12-18
chepai\example\1.bmp, 1592 , 2008-10-17
chepai\example\10.bmp, 1592 , 2008-10-17
chepai\example\11.bmp, 1592 , 2008-10-17
chepai\example\12.bmp, 1592 , 2008-11-04
chepai\example\13.bmp, 1592 , 2008-11-04
chepai\example\14.bmp, 1592 , 2008-10-17
chepai\example\15.bmp, 1592 , 2008-10-17
chepai\example\16.bmp, 1592 , 2008-10-18
chepai\example\17.bmp, 1592 , 2008-10-17
chepai\example\18.bmp, 1592 , 2008-10-17
chepai\example\19.bmp, 1592 , 2008-10-17
chepai\example\2.bmp, 1592 , 2008-10-17
chepai\example\20.bmp, 1592 , 2008-10-17
chepai\example\21.bmp, 1592 , 2008-10-17
chepai\example\22.bmp, 1592 , 2008-10-17
chepai\example\23.bmp, 1592 , 2008-10-17
chepai\example\24.bmp, 1592 , 2008-10-17
chepai\example\25.bmp, 1592 , 2008-10-17
chepai\example\26.bmp, 1592 , 2008-10-17
chepai\example\27.bmp, 1590 , 2008-10-21
chepai\example\28.bmp, 1592 , 2008-10-17
chepai\example\29.bmp, 1592 , 2008-10-17
chepai\example\3.bmp, 1592 , 2008-10-17
chepai\example\30.bmp, 1592 , 2008-10-17
chepai\example\31.bmp, 1592 , 2008-10-17
chepai\example\32.bmp, 1592 , 2008-10-17
chepai\example\33.bmp, 1592 , 2008-10-17
chepai\example\34.bmp, 1592 , 2008-10-17
chepai\example\35.bmp, 1592 , 2008-10-17
chepai\example\36.bmp, 1592 , 2008-10-16
chepai\example\37.bmp, 1592 , 2008-10-16
chepai\example\38.bmp, 1592 , 2008-10-16
chepai\example\39.bmp, 1592 , 2008-10-16
chepai\example\4.bmp, 1592 , 2008-10-18
chepai\example\40.bmp, 1592 , 2008-10-16
chepai\example\41.bmp, 1592 , 2008-10-16
chepai\example\42.bmp, 1592 , 2008-10-16
chepai\example\43.bmp, 1592 , 2008-10-17
chepai\example\44.bmp, 1592 , 2008-10-16
chepai\example\45.bmp, 1592 , 2008-10-16
chepai\example\46.bmp, 1590 , 2008-10-16
chepai\example\47.bmp, 1592 , 2008-10-17
chepai\example\48.bmp, 1590 , 2008-10-16
chepai\example\5.bmp, 1592 , 2008-10-17
chepai\example\6.bmp, 1592 , 2008-10-17
chepai\example\7.bmp, 1592 , 2008-10-17
chepai\example\8.bmp, 1592 , 2008-10-17
chepai\example\9.bmp, 1592 , 2008-10-17
chepai\qiege.m, 541 , 2017-02-25
chepai\wordprocess.m, 454 , 2017-02-24
chepai\wordrec.m, 2207 , 2017-02-24

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

发表评论

0 个回复

  • fem-in-shuilihuanjing
    是一个基于有限元来模拟和预测水利环境容量的资料(Is based on the finite element to simulate and forecast information on water environmental capacity)
    2011-04-23 20:41:44下载
    积分:1
  • VC++ 删除目录、文件夹
    VC++ 删除目录或文件夹的例子。删除指定的文件夹目录的源码,请在文本框中输入需要删除的目录名称、路径即可,路径不要错哦,本示例主要是演示如何删除文件,在易用性方面没过多完善。   //是文件时直接删除   if (!file.IsDots() && !file.IsDirectory())    DeleteFile(file.GetFilePath());   else if (file.IsDots())    continue;   else if (file.IsDirectory())   {    path = file.GetFilePath();    //是目录时,继续递归调用函数删除该目录下的文件    DelFolder(path);    //目录为空后删除目录    RemoveDirectory(path);   }
    2022-01-22 03:11:03下载
    积分:1
  • Matlab方程求根法汇总
    说明:  Matlab方程求根法汇总:BenvliMAX 贝努利法求按模最大实根 BenvliMIN 贝努利法求按模最小实根 HalfInterval 用二分法求方程的一个根 hj 用黄金分割法求方程的一个根 StablePoint 用不动点迭代法求方程的一个根 AtkenStablePoint 用艾肯特加速的不动点迭代法求方程的一个根 StevenStablePoint 用史蒂芬森加速的不动点迭代法求方程的一个根 Secant 用一般弦截法求方程的一个根 SinleSecant 用单点弦截法求方程的一个根 DblSecant 用双点弦截法求方程的一个根 PallSecant 用平行弦截法求方程的一个根 ModifSecant 用改进弦截法求方程的一个根 StevenSecant 用史蒂芬森法求方程的一个根 PYZ 用劈因子法求方程的一个二次因子 Parabola 用抛物线法求方程的一个根 QBS 用钱伯斯法求方程的一个根 NewtonRoot 用牛顿法求方程的一个根 SimpleNewton 用简化牛顿法求方程的一个根 NewtonDown 用牛顿下山法求方程的一个根 YSNewton 逐次压缩牛顿法求多项式的全部实根 Union1 用联合法1求方程的一个根 TwoStep 用两步迭代法求方程的一个根 Montecarlo 用蒙特卡洛法求方程的一个根 MultiRoot 求存在重根的方程的一个重根(Summary of Matlab equation root finding method)
    2020-10-07 19:07:37下载
    积分:1
  • PRODAVE
    PRODAVE 资料 西门子提供的动态链接库(Siemens PRODAVE information provided dynamic link library)
    2011-09-16 09:42:05下载
    积分:1
  • chapter22
    在城市之间优化最短路径蚁群算法程序设计(非原创)(Optimizing the Shortest Path Between Cities)
    2020-06-23 10:00:01下载
    积分:1
  • 用vb编写的对文本文件的操作程序,包含文本文件的读写,切割。...
    用vb编写的对文本文件的操作程序,包含文本文件的读写,切割。-With vb text file written operating procedures, including reading and writing text files, cutting.
    2022-02-12 00:08:12下载
    积分:1
  • DSP开发练习的极好的范例程序(经典例子程序)
    DSP开发练习的极好的范例程序(经典例子程序)-practice and the development of DSP an excellent example (classical examples of procedures)
    2022-08-21 01:10:14下载
    积分:1
  • 双币对冲无限制版 DiggerGo_Two
    说明:  最近流行的一款比较好用的双币对冲,此为无限制版,可以交易任意联动关系的两个货币兑。推荐欧美和镑美。(Recently, the popular double currency hedging, which is an unlimited version, can trade two currencies with arbitrary linkage. Recommend Europe and the United States and pounds.)
    2020-06-18 01:40:01下载
    积分:1
  • DDoS压力测试网页端源码
    说明:  ddos页端源码可对接发包机或者API,完全汉化国内强劲可二次开发(Ddos page source code can be docked to send a charter or API, fully domesticized domestic strong secondary development)
    2020-06-22 13:40:02下载
    积分:1
  • Julia High performance
    说明:  Julia is a high performance, high-level dynamic language designed to address the requirements of high-level numerical and scientific computing. Julia brings solutions to the complexities faced by developers while developing elegant and high performing code.
    2020-06-22 22:00:01下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载