登录
首页 » Visual C++ » VCPP

VCPP

于 2021-03-26 发布 文件大小:4266KB
0 180
下载积分: 1 下载次数: 216

代码说明:

  c++6.0编程代码,车道线检测,可运行,实现报警和鸣笛两种措施。运行前对OPENCV进行设置,并下载一个视频解码器。(the programming c++6.0 code, lane line detection can be run to achieve alarm and whistle two measures. Opencv set before running, and download a video codec.)

文件列表:

VC%2B%2B
....\che
....\...\che.clw,1002,2013-03-11
....\...\che.cpp,2021,2013-03-11
....\...\che.dsp,4105,2013-03-11
....\...\che.dsw,531,2013-03-11
....\...\che.h,1291,2013-03-11
....\...\che.ncb,41984,2013-03-11
....\...\che.opt,48640,2013-03-11
....\...\che.rc,4891,2013-03-11
....\...\cheDlg.cpp,4059,2013-03-11
....\...\cheDlg.h,1309,2013-03-11
....\...\Debug
....\...\RCa03836,9648,2013-03-11
....\...\RCb03836,9648,2013-03-11
....\...\ReadMe.txt,3525,2013-03-11
....\...\res

....\...\...\che.rc2,395,2013-03-11
....\...\Resource.h,528,2013-03-11
....\...\StdAfx.cpp,205,2013-03-11
....\...\StdAfx.h,1054,2013-03-11
....\PathCorrection
....\..............\Debug
....\..............\.....\PathCorrection.bsc,5645312,2011-10-09
....\..............\.....\PathCorrection.exe,131136,2013-03-12
....\..............\.....\PathCorrection.ilk,291380,2013-03-12
....\..............\.....\PathCorrection.obj,22194,2013-03-12
....\..............\.....\PathCorrection.pch,6876728,2013-03-12
....\..............\.....\PathCorrection.pdb,336896,2013-03-12
....\..............\.....\PathCorrection.res,4116,2013-03-12
....\..............\.....\PathCorrection.sbr,171484,2013-03-12
....\..............\.....\PathCorrectionDlg.obj,97525,2013-03-12
....\..............\.....\PathCorrectionDlg.sbr,186637,2013-03-12
....\..............\.....\RCa03340,15966,2013-03-06
....\..............\.....\RCa04204,15970,2013-03-06
....\..............\.....\RCa05464,15854,2013-03-12
....\..............\.....\StdAfx.obj,105618,2013-03-12
....\..............\.....\StdAfx.sbr,1368409,2013-03-12
....\..............\.....\vc60.idb,222208,2013-03-17
....\..............\.....\vc60.pdb,405504,2013-03-12
....\..............\PathCorrection.aps,23316,2013-03-12
....\..............\PathCorrection.clw,2763,2013-03-17
....\..............\PathCorrection.cpp,2175,2011-07-13
....\..............\PathCorrection.dsp,4474,2013-03-12
....\..............\PathCorrection.dsw,551,2011-07-13
....\..............\PathCorrection.h,1412,2011-07-13
....\..............\PathCorrection.ncb,386048,2013-03-17
....\..............\PathCorrection.opt,481280,2013-03-17
....\..............\PathCorrection.plg,262,2013-03-16
....\..............\PathCorrection.rc,8644,2013-03-12
....\..............\PathCorrectionDlg.cpp,35744,2011-12-29
....\..............\PathCorrectionDlg.dsp,3533,2013-03-11
....\..............\PathCorrectionDlg.dsw,559,2013-03-11
....\..............\PathCorrectionDlg.h,3577,2011-07-14
....\..............\PathCorrectionDlg.ncb,58368,2013-03-11
....\..............\PathCorrectionDlg.opt,481280,2013-03-11
....\..............\PathCorrectionDlg.plg,1204,2013-03-11
....\..............\RCa03200,15966,2013-03-06
....\..............\RCa05180,15966,2013-03-06
....\..............\RCa05856,15966,2013-03-06
....\..............\ReadMe.txt,3723,2011-07-13
....\..............\res

....\..............\...\PathCorrection.rc2,406,2011-07-13
....\..............\Resource.h,1658,2011-07-13
....\..............\StdAfx.cpp,216,2011-07-13
....\..............\StdAfx.h,1054,2011-07-13

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

发表评论

0 个回复

  • GifCodec
    参考网上的资料写的gif编解码。 编码用gdi解析常用图片格式,然后组装成gif 解码吧gif的每一帧转换成dib gif文件格式网上有很多介绍 gif用的变长lzw压缩算法: 没弄懂原理,只知道过程。压缩取一个字符作为后缀,看看字符串是否存在。存在,用对应的编码作为前缀继续取;不存在把字符串添加到字典,前缀添加到输出流,后缀作为前缀继续取。解压取一个编码看看字典中是否存在。存在用对应的字符串的第一个字符作为后缀,看看当前字符串是否存在,不存在添加到字典中,后缀作为前缀,前缀对应的字符串添加到输出流,继续取;编码不存在,前缀对应的字符串的第一个字符作为后缀(这时当前字符串肯定不存在,字典中下一个可用编码肯定等于刚取出的编码),字符串添加到字典中,编码作为前缀,前缀对应的字符串添加到输出流,继续取。 编码流转换成字节流是按位从低到高的,window是小端模式(低字节在低地址),字节内低位在右边。 24位dib转换成8位dib时使用的八叉树算法 图片拉伸时参考的网上的双线性插值算法。 字典满了位数加一,位数是12时不加(Online reference materials written gif codec. Encoded using gdi resolve common image formats, and then assembled into a gif Each frame decode it into a gif dib There are many online gif file format introduced gif lzw with variable length compression algorithm: Did not understand the principle, only know the process. Compression takes a character as a suffix, and see if there is a string. Exist as a prefix to continue to take with the corresponding encoding there is no string to add to the dictionary, a prefix added to the output stream, the suffix as a prefix to continue to take. Take a look at extracting coding dictionary exists. Exist with the corresponding first character string as a suffix to see the current string exists, there is no add to the dictionary, the suffix as a prefix, the corresponding string to the output stream, continue to take coding does not exist, prefix corresponding first character string as a suffix (when the current string certainly does not exis)
    2015-01-17 20:22:25下载
    积分:1
  • Anketa
    Create a struct for working with students
    2014-09-23 19:48:43下载
    积分:1
  • renjihudong
    两个设备形成对射,当有人通过时,一台设备发出指令,控制别的设备。(Two devices formed on the radio, when someone passed a device to issue commands to control other devices.)
    2013-12-17 14:31:32下载
    积分:1
  • tioamajiance
    进行条码旋转,角度检测,识别条码,进而校正条码(this is a programme to correction geometric distortion in image)
    2012-09-26 20:17:38下载
    积分:1
  • Graphic
    MFC的CDC画图教学文档,易于上手,学起来容易,有很多例子说明。(MFC' s CDC drawing teaching documents, easy to use, easy to learn, there are many examples.)
    2014-05-29 21:28:36下载
    积分:1
  • TSL1401_CCD_Test
    十分基础的CCD的测试程序,大家可以下载调试CCD(this is a ccd test chengxu ,it is very good to use ,you can down it )
    2016-03-14 16:50:18下载
    积分:1
  • track-
    C# 单击表示轨道占用,轨道占用时向车载计算机发码(C# click on that track occupancy, track occupancy when issued to the vehicle computer codes)
    2011-05-23 15:40:52下载
    积分:1
  • guojimajiang
    网狐6603国际麻将,视频麻将,完美无错,值得拥有(Fox 6603 International Mahjong, Mahjong video, perfect no mistake, worth having)
    2013-11-28 13:56:34下载
    积分:1
  • 最好的酒店管理系统
    一个做好的C#酒店管理系统,sql server数据库保存信息,客房预订。
    2022-03-19 16:26:43下载
    积分:1
  • c
    说明:  C语言动态存储管理的实现及常见问题分析 这是一篇很好的论文(C language implementation of dynamic memory management and frequently asked questions is a good analysis of this paper)
    2013-05-26 08:46:33下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载