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

Mapping

Mapping指高精度地图,其意义在于帮助车辆在整个路径规划中精确定位。
  • METAmorphoses is a system for flexible and easy-to-use generation of RDF metadata directly from a re

    METAmorphoses is a system for flexible and easy-to-use generation of RDF metadata directly from a relational database. Metadata are genereated according to a Mapping from an existing database schema to a particular ontology.

    标签: METAmorphoses easy-to-use generation flexible

    上传时间: 2014-01-03

    上传用户:nanxia

  • Hibernate 教程

    Hibernate 教程,用于j2ee application database Mapping,省略了传统的entity bean,简单方便,databse -> xml -> java cla

    标签: Hibernate 教程

    上传时间: 2013-12-18

    上传用户:xlcky

  • Interface for Microsoft Audio Compression Manager. - Delphi Source The ACM uses existing driver i

    Interface for Microsoft Audio Compression Manager. - Delphi Source The ACM uses existing driver interface hooks to override the default Mapping algorithm for waveform audio devices. This allows the ACM to intercept device-open calls. After a call has been intercepted, the ACM can perform a variety of tasks to process the audio data, such as inserting an external compressor or decompressor into the sequence.

    标签: Compression Interface Microsoft existing

    上传时间: 2013-12-13

    上传用户:541657925

  • 基于互相关函数

    基于互相关函数,采用求和广义互相关函数(summed-GCC)法用于机器人系统平台。由于采用不同的映射函数(Mapping functions),GCC法在该平台下,只需三个麦克风即可进行三维定位,突破了基于TDOA法进行三维声源定位最少需4个麦克风的限制

    标签: 函数

    上传时间: 2013-12-02

    上传用户:璇珠官人

  • 深入浅出MFC是一本介绍 MFC(Microsoft Foundation Classes)程式设计技术的书籍。对于 Windows 应用软体的开发感到兴趣

    深入浅出MFC是一本介绍 MFC(Microsoft Foundation Classes)程式设计技术的书籍。对于 Windows 应用软体的开发感到兴趣,并欲使用 Visual C++ 整合环境的视觉开发工具,以 MFC 为程式基础的人,都可以从此书获得最根本最重要的知识与实例。      如果你是一位对 Application Framework 和物件导向(Object Oriented)观念感兴趣的技术狂热份子,想知道神秘的 Runtime Type Information、Dynamic Creation、Persistence、Message Mapping 以及 Command Routing 如何实作,本书能够充分满足你。事实上,依我之见,这些核心技术与彻底学会操控 MFC 乃同一件事情。  

    标签: Foundation MFC Microsoft Classes

    上传时间: 2013-12-31

    上传用户:fxf126@126.com

  • 本书分为四大篇。第一篇提出学习MFC程序设计之前的必要基础

    本书分为四大篇。第一篇提出学习MFC程序设计之前的必要基础,包括Widnows程序的基本观念以及C++的高阶议题。“学前基础”是相当主观的认定,不过,甚于我个人的学习经验以及教学经验,我的挑选应该颇具说服力。第二篇介绍Visual C++整合环境开发工具。本篇只不过是提纲挈领而已,并不企图取代 Visual C++使用手册。然而对于软件使用的老手,此篇或已足以让您掌握Visual C++整合环境。工具的使用虽然谈不上学问,但在视觉化软件开发过程中扮演极重角色,切莫小觑它。 第三篇介绍application framework的观念,以及MFC骨干程序,所谓骨干程序,是指Visual C++的工具AppWizard所产生出来的程序码。当然,AppWizard会根据你的选项做出不同的程序码,我所据以解说的,是大众化选项下的产品。 第四篇以微软公司附于Visual C++光碟片上的一个范例程序Scribble为主轴,一步一步加上新的功能。并在其间深入介绍Runtime Type Information(RTTI)、Dynamic Creation、Persistence(Serialization)、Message Mapping、Command Routing等核心技术。这些技术正是其他书籍最缺乏的部分。此篇之最后数章则脱离Scribble程序,另成一格。 本书内含光盘一片,书中所有原始码与可执行文件尽在其中。

    标签: MFC 程序设计

    上传时间: 2014-01-04

    上传用户:x4587

  • Quake 3 s MD3 Viewer (july 13, 2007), loads and displays a player and a weapon. Supports lighting,

    Quake 3 s MD3 Viewer (july 13, 2007), loads and displays a player and a weapon. Supports lighting, texture Mapping and animation. Includes a sample player model with weapon. See README for how to use it. Note (1): it uses the POSIX opendir/readdir functions, which are not implemented in all compilers under Windows (MinGW supports them). Note (2): This demo works on little endian architectures only. Libraries: OpenGL, GLU, GLUT, boost, libjpeg. Files: md3loader.zip (2.4 MB)

    标签: and Supports displays lighting

    上传时间: 2017-09-10

    上传用户:czl10052678

  • 深入浅出MFC,作者:侯俊杰,深入介绍Runtime Type Information(RTTI)、Dynamic Creation、Persistence(Serialization)、Messag

    深入浅出MFC,作者:侯俊杰,深入介绍Runtime Type Information(RTTI)、Dynamic Creation、Persistence(Serialization)、Message Mapping、Command Routing等核心技术。

    标签: Serialization Information Persistence Creation

    上传时间: 2014-01-10

    上传用户:moshushi0009

  • Delphi 泛型容器 TDictionary 的用法 Demo

    Collection of key-value pairs.  TDictionary represents a generic collection of key-value pairs.  This class provides a Mapping from a collection of keys to a collection of values. When you create a TDictionary object, you can specify various combinations of initial capacity, equality operation, and initial content.  You can add a key that is associated with a corresponding value with the Add or AddOrSetValue methods. You can remove entries with Remove or Clear, which removes all key-value pairs. Adding or removing a key-value pair and looking up a key are efficient, close to O(1), because keys are hashed. A key must not be nil (though a value may be nil) and there must be an equality comparison operation for keys.  You can test for the presence or keys and values with the TryGetValue, ContainsKey and ContainsValue methods.  The Items property lists all Count dictionary entries. You can also set and get values by indexing the Items property. Setting the value this way overwrites any existing value.  The class TObjectDictionary inherits from TDictionary and provides an automatic mechanism for freeing objects removed from dictionary entries. 

    标签: Delphi 泛型

    上传时间: 2015-07-01

    上传用户:mirage

  • generator

    由于MyBatis属于一种半自动的ORM框架,所以主要的工作将是书写Mapping映射文件,但是由于手写映射文件很容易出错,所以查资料发现有现成的工具可以自动生成底层模型类、Dao接口类甚至Mapping映射文件。

    标签: generator

    上传时间: 2016-05-27

    上传用户:tt357788906