虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

机器<b>视觉</b>检测系统

  • The government of a small but important country has decided that the alphabet needs to be streamline

    The government of a small but important country has decided that the alphabet needs to be streamlined and reordered. Uppercase letters will be eliminated. They will issue a royal decree in the form of a String of B and A characters. The first character in the decree specifies whether a must come ( B )Before b in the new alphabet or ( A )After b . The second character determines the relative placement of b and c , etc. So, for example, "BAA" means that a must come Before b , b must come After c , and c must come After d . Any letters beyond these requirements are to be excluded, so if the decree specifies k comparisons then the new alphabet will contain the first k+1 lowercase letters of the current alphabet. Create a class Alphabet that contains the method choices that takes the decree as input and returns the number of possible new alphabets that conform to the decree. If more than 1,000,000,000 are possible, return -1. Definition

    标签: government streamline important alphabet

    上传时间: 2015-06-09

    上传用户:weixiao99

  • SimpleLAP源码的配套设置和调用代码

    SimpleLAP源码的配套设置和调用代码,注意,如果是用机器调试,由于是系统级别的代码,需要使用调试机的数字签名

    标签: SimpleLAP 源码 代码

    上传时间: 2015-07-03

    上传用户:yangbo69

  • 以Visual Basic为开发工具

    以Visual Basic为开发工具,远程水文检测系统通过串口与GSM模块进行数据交互,利用GSM短信实现远程数据传送,通过内嵌了GSM模块的单片机获得采集设备测量数据,并控制相关水文设备。

    标签: Visual Basic 开发工具

    上传时间: 2015-08-12

    上传用户:杜莹12345

  • 学习Linux如何实现虚拟存储。与体系结构无关的通用存储模型是所有Linux虚拟存储实现的基础

    学习Linux如何实现虚拟存储。与体系结构无关的通用存储模型是所有Linux虚拟存储实现的基础,但是任何特定的实现都依赖于特定的硬件平台。本练习集中于i386的实现。介绍解释了存储管理程序的设计。而且还将学习代码细节,修改虚拟存储代码以检测系统缺页错误的发生频率。此外本实验牵涉到系统调用的相关知识,包括学习如何产生一个系统调用以及怎样通过往内核中增加一个新函数从而在内核空间中实现对用户空间的读/写。

    标签: Linux 虚拟存储 存储 模型

    上传时间: 2014-01-13

    上传用户:VRMMO

  • 上下文无关文法(Context-Free Grammar, CFG)是一个4元组G=(V, T, S, P)

    上下文无关文法(Context-Free Grammar, CFG)是一个4元组G=(V, T, S, P),其中,V和T是不相交的有限集,S∈V,P是一组有限的产生式规则集,形如A→α,其中A∈V,且α∈(V∪T)*。V的元素称为非终结符,T的元素称为终结符,S是一个特殊的非终结符,称为文法开始符。 设G=(V, T, S, P)是一个CFG,则G产生的语言是所有可由G产生的字符串组成的集合,即L(G)={x∈T* | Sx}。一个语言L是上下文无关语言(Context-Free Language, CFL),当且仅当存在一个CFG G,使得L=L(G)。 *⇒ 例如,设文法G:S→AB A→aA|a B→bB|b 则L(G)={a^nb^m | n,m>=1} 其中非终结符都是大写字母,开始符都是S,终结符都是小写字母。

    标签: Context-Free Grammar CFG

    上传时间: 2013-12-10

    上传用户:gaojiao1999

  • ds1820汇编程序 美国DALLAS公司生产的单线数字温度传感器DS1820,可把温度信号直接转换成串行数字信号供微机处理。由于每片DS1820含有唯一的硅串行数所以在一条总线上可挂接任意多个DS

    ds1820汇编程序 美国DALLAS公司生产的单线数字温度传感器DS1820,可把温度信号直接转换成串行数字信号供微机处理。由于每片DS1820含有唯一的硅串行数所以在一条总线上可挂接任意多个DS1820芯片。从DS1820读出的信息或写入DS1820的信息,仅需要一根口线(单线接口)。读写及温度变换功率来源于数据总线,总线本身也可以向所挂接的DS1820供电,而无需额外电源。DS1820提供九位温度读数,构成多点温度检测系统而无需任何外围硬件。

    标签: 1820 DALLAS DS 串行

    上传时间: 2015-09-18

    上传用户:13681659100

  • 知名的开源IDS的日志工具

    知名的开源IDS的日志工具,具有快速的响应速度,优异的数据库写入功能,是做自定义的入侵检测系统不可缺少的插件。

    标签: IDS 开源 日志

    上传时间: 2013-11-25

    上传用户:klin3139

  • 这是我本科的毕业设计的文档

    这是我本科的毕业设计的文档,题目是入侵检测系统的设计与实现

    标签: 毕业设计 文档

    上传时间: 2015-10-27

    上传用户:牛布牛

  • We have a group of N items (represented by integers from 1 to N), and we know that there is some tot

    We have a group of N items (represented by integers from 1 to N), and we know that there is some total order defined for these items. You may assume that no two elements will be equal (for all a, b: a<b or b<a). However, it is expensive to compare two items. Your task is to make a number of comparisons, and then output the sorted order. The cost of determining if a < b is given by the bth integer of element a of costs (space delimited), which is the same as the ath integer of element b. Naturally, you will be judged on the total cost of the comparisons you make before outputting the sorted order. If your order is incorrect, you will receive a 0. Otherwise, your score will be opt/cost, where opt is the best cost anyone has achieved and cost is the total cost of the comparisons you make (so your score for a test case will be between 0 and 1). Your score for the problem will simply be the sum of your scores for the individual test cases.

    标签: represented integers group items

    上传时间: 2016-01-17

    上传用户:jeffery

  • 这是snort的官方开发手册

    这是snort的官方开发手册,snort是开源的入侵检测系统,方便大家研究。

    标签: snort

    上传时间: 2016-01-19

    上传用户:3到15