Welcome![Sign In][Sign Up]
Location:
Search - object interest

Search list

[Other resourceCppOOPEffic.ccrun.799824

Description: 本书以帮助读者掌握C++面向对象高效编程方法为目的,详细介绍了C++编程中的各种概念和应用技巧。全书共分为两部分,第一部分介绍了面向对象编程的基础和应用,如数据抽象,继承,异常处理等内容;第二部分说明了如何建立抽象的概念及其策略,并研究了C++对象模型。书中带有大量的代码实例,使读者不仅能够从理论上得以提高,而且还能够轻松地在实践中应用。本书适用于C++程序员,也可供面向对象程序设计感兴趣的编程人员及大专院校计算机专业师生参考。-this book to help readers grasp the object-oriented C programming efficient methods for the purpose, Details of the C programming concepts and application skills. The book is divided into two parts, the first part of the object-oriented programming base and applications, such as data abstraction, inheritance, exception handling; The second part describes how to build an abstract concept and strategy, and examine the C object model. Book with a large number of examples of the code, so that readers can not only theoretically be increased, but also can be easily applied in practice. The book applies to the C programmer, It also provides object-oriented programming of interest to programmers and tertiary students computer professional reference.
Platform: | Size: 30799824 | Author: 汤杰 | Hits:

[JSP/Javacheats

Description: 简单的利息程序,目的是载体会java的面向对象的编程-simple interest procedures with the aim vector java object-oriented programming
Platform: | Size: 12288 | Author: 张垒 | Hits:

[JSP/Javacheats

Description: 简单的利息程序,目的是载体会java的面向对象的编程-simple interest procedures with the aim vector java object-oriented programming
Platform: | Size: 12288 | Author: 张垒 | Hits:

[VC/MFCCppOOPEffic.ccrun.799824

Description: 本书以帮助读者掌握C++面向对象高效编程方法为目的,详细介绍了C++编程中的各种概念和应用技巧。全书共分为两部分,第一部分介绍了面向对象编程的基础和应用,如数据抽象,继承,异常处理等内容;第二部分说明了如何建立抽象的概念及其策略,并研究了C++对象模型。书中带有大量的代码实例,使读者不仅能够从理论上得以提高,而且还能够轻松地在实践中应用。本书适用于C++程序员,也可供面向对象程序设计感兴趣的编程人员及大专院校计算机专业师生参考。-this book to help readers grasp the object-oriented C programming efficient methods for the purpose, Details of the C programming concepts and application skills. The book is divided into two parts, the first part of the object-oriented programming base and applications, such as data abstraction, inheritance, exception handling; The second part describes how to build an abstract concept and strategy, and examine the C object model. Book with a large number of examples of the code, so that readers can not only theoretically be increased, but also can be easily applied in practice. The book applies to the C programmer, It also provides object-oriented programming of interest to programmers and tertiary students computer professional reference.
Platform: | Size: 30799872 | Author: 汤杰 | Hits:

[Game Server Simulatorcqymfx

Description: 最近对高性能的服务器比较感兴趣,读过了DELPHI的Socker源码WebService及RemObject之后,高性能的服务器感兴趣。 你可能需要的以下知识才能更好的读懂一个商业源码: 1).SOCKET的I/O模型熟悉掌握。 2).面向对象技术的熟悉掌握。 3).Socket的API掌握。 4).多线程技术等。 5).一门熟悉的开发工具掌握,和多种语言的源码阅读能力。 -A recent comparison of high-performance servers that are interested, I read the DELPHI source of Socker after WebService and RemObject, high-performance server with interest. You may need the following knowledge in order to better understand a commercial source: 1). SOCKET the I/O model of mastery. 2). The familiar object-oriented technology to master. 3). Socket grasp of the API. 4). Multi-threading technology. 5). A familiar development tools to master, and multi-lingual source of reading ability.
Platform: | Size: 24576 | Author: qingczhang | Hits:

[Windows DevelopMapinfoSourceCode

Description: Decompile for the MapInfor control object, during the coffee time. Just for personal interest and for the programmer who interested in decompilers. 利用休息时间反编译的MapInfo源代码,感兴趣的看看。-Decompile for the MapInfor control object, during the coffee time. Just for personal interest and for the programmer who interested in decompilers. The use of rest time of MapInfo decompile source code, of interest to look at.
Platform: | Size: 1789952 | Author: Michael Chen | Hits:

[EditorMasteringPerlForBioinformatics.pdf

Description: Mastering perl for bioinformatics.-Mastering Perl for Bioinformatics covers the core Perl language and many of its module extensions, presenting them in the context of biological data and problems of pressing interest to the biological community. This book, along with Beginning Perl for Bioinformatics, forms a basic course in Perl programming. This second volume finishes the basic Perl tutorial material (references, complex data structures, object-oriented programming, use of modules--all presented in a biological context) and presents some advanced topics of considerable interest in bioinformatics.
Platform: | Size: 1302528 | Author: chentong | Hits:

[Internet-NetworkArpSender

Description: ArpSender是C#写的ARP发包器,写的初衷是想试下什么样的ARP包才会引起ARP攻击,构造一些包可能会导致别人上不了网。至于包怎么填,发挥大家的想象吧,嘿嘿。 ArpSender用了SharpPcap这个开源API,有兴趣的到网上查下,用起来挺简单的。编程过程中最大的问题就是线程的问题。发包的代码中用了BackgroundWorker控件,因为参数只能传一个,并且线程是不允许直接调用主窗口控件,后来用了一个结构体struct ArpPac来传,感觉还是很麻烦啊!不过还好在BackgroundWorker的RunWorkerCompleted可以直接操作主窗口控件了,能把结果显示到主窗口上。 在编写获取IP的MAC地址部分,一开始还是用BackgroundWorker,在获取存在的IP地址MAC时可以正常工作,可是当IP不存在是,DOWORK方法一直没结束。因为里面一个Resolve方法一直没返回,也没超时设定,线程就一直卡在那不动了。也不知道该怎么结束这个线程。于是改用了Thread,传参数用了个object数组,嘿嘿,所有参数都封起来。到了那边再解封,很好用。后来才发现,线程是没有返回值的。。又不能直接操作窗体控件。。没办法,只好设个全局变量来保存结果了。获取MAC部分还用了个Timer控件,1秒钟如果还没得到返回的MAC,直接结束该线程-ArpSender Writing C# are the ARP contract, and written under the original intent was to want to test what kind of ARP packets that would arouse the ARP attacks, construction of some packets may lead to others not on Net. As for how to fill package, everyone s imagination to play it, ArpSender spent SharpPcap this open source API, there is interest in online search, the very simple to use. Programming process is the biggest problem the question thread. Contract code used BackgroundWorker control, because the parameters can only be a mass, and threads are not allowed to directly call the main window controls, and later used a structure struct ArpPac to mass, I feel still very troublesome ah! Fortunately, however RunWorkerCompleted at BackgroundWorker can directly operate the main window controls, and the results can show up to the main window. In the preparation of access to IP-MAC address of the beginning or use BackgroundWorker, exist in access to the IP address of MAC c
Platform: | Size: 204800 | Author: 咹靜ゞ`兲倥 | Hits:

[VC/MFCMFC2e

Description: 深入浅出MFC是一本介绍 MFC(Microsoft Foundation Classes)程式设计技术的书籍。对于 Windows 应用软体的开发感到兴趣,并欲使用 Visual C++ 整合环境的视觉开发工具,以 MFC 为程式基础的人,都可以从此书获得最根本最重要的知识与实例。      如果你是一位对 Application Framework 和物件导向(Object Oriented)观念感兴趣的技术狂热份子,想知道神秘的 Runtime Type Information、Dynamic Creation、Persistence、Message Mapping 以及 Command Routing 如何实作,本书能够充分满足你。事实上,依我之见,这些核心技术与彻底学会操控 MFC 乃同一件事情。  -MFC is an easy introduction MFC (Microsoft Foundation Classes) programming technology books. For Windows application software development are interested in and then tried to use Visual C++ integrated environment for visual development tools to MFC for the people of the basic program can be obtained from this book the most fundamental knowledge and the most important examples. If you are one pairs of Application Framework and object-oriented (Object Oriented) concepts of interest to technology fanatics, want to know the mysterious Runtime Type Information, Dynamic Creation, Persistence, Message Mapping, as well as how to implement the Command Routing, this book can fully meet the you. In fact, in my view, these core technologies and complete control of MFC Society is the same thing.
Platform: | Size: 13757440 | Author: chentw | Hits:

[Picture Vieweri-sight4_0_0

Description: 1. Support for OFF, PLY, GTS, OBJ file formats. 2. Perspective (one, two, three point perspective), axonometric and orthographic projections. 3. Ability to rotate, pan, zoom in/out and focus on a region of interest. 4. Ability to change background color, object surface color or object edge color. 5. Ruler drawing ability. 6. Take screen shots in PNG, BMP, TIFF or JPG image formats.
Platform: | Size: 978944 | Author: balife | Hits:

[Special Effectsroipolymasking

Description: A matlab code to extract the region of interest in an image & then apply a binary mask on the image to see the extracted object in all the three channels.
Platform: | Size: 1024 | Author: Ezekiel | Hits:

[Otherwen

Description: 我上传了红外多目标图像,红外目标图像感兴趣区域自动提取研究等五篇论文,对图像处理的人员很有帮助-I uploaded the infrared multi-object image, infrared target image region of interest 5 Automatic Extraction of research papers on image processing, very helpful staf
Platform: | Size: 1796096 | Author: 英子 | Hits:

[JSP/Javaatmnew

Description: ATM机取款模拟程序。基于Java技术,只实现了ATM机的取款过程,有兴趣和有能力的高手可以再加以改进,这样就更完美了。可作为Java初学者《面向对象》编程的一个很好范例。 -ATM machine withdrawals simulation program. Based on Java technology, only to realize the process of withdrawal ATM machines, there is interest and ability of the master could be added to improve, so that even more perfect. Java for beginners can be used as "object-oriented" programming is a good example.
Platform: | Size: 68608 | Author: 188 | Hits:

[Special Effectseccv06

Description: In this paper, a novel scale- and rotation-invariant interest point detector and descriptor, coined SURF (Speeded Up Robust Features) is presented. It approximates or even outperforms previously proposed schemes with respect to repeatability, distinctiveness, and robustness, yet can be computed and compared much faster. This is achieved by relying on integral images for image convolutions by building on the strengths of the leading existing detectors and descriptors (in casu, using a Hessian matrix-based measure for the detector, and a distribution-based descriptor) and by simplifying these methods to the essential. This leads to a combination of novel detection, description, and matching steps. The paper presents experimental results on a standard evaluation set, as well as on imagery obtained in the context of a real-life object recognition application. Both show SURF’s strong performance.-In this paper, a novel scale- and rotation-invariant interest point detector and descriptor, coined SURF (Speeded Up Robust Features) is presented. It approximates or even outperforms previously proposed schemes with respect to repeatability, distinctiveness, and robustness, yet can be computed and compared much faster. This is achieved by relying on integral images for image convolutions by building on the strengths of the leading existing detectors and descriptors (in casu, using a Hessian matrix-based measure for the detector, and a distribution-based descriptor) and by simplifying these methods to the essential. This leads to a combination of novel detection, description, and matching steps. The paper presents experimental results on a standard evaluation set, as well as on imagery obtained in the context of a real-life object recognition application. Both show SURF’s strong performance.
Platform: | Size: 686080 | Author: yangwei | Hits:

[matlabViewpoint_Adjustment_Using_Seam_Carving

Description: Viewpoint Adjustment Using Seam Carving Imitate Parallax with Seam Carving: Foreground objects or other objects of interest are tend to be more “interesting” than the background. Seam carving algorithm can automatically distinguish the two. Removing seams from one side of the object while adding seams to the other side will move the object in one direction while keeping the background relatively the same. -Viewpoint Adjustment Using Seam Carving Imitate Parallax with Seam Carving: Foreground objects or other objects of interest are tend to be more “interesting” than the background. Seam carving algorithm can automatically distinguish the two. Removing seams from one side of the object while adding seams to the other side will move the object in one direction while keeping the background relatively the same.
Platform: | Size: 2860032 | Author: josephlin0922 | Hits:

[Documentskeshihuajishu

Description: 可以通过计算机断层技术(CT)、磁共振成像(MRI)、正电子计算机断层扫描(PET)和超声(US)等医学影像技术得到病人病变部位的一组二维断层图像。二维平面图像主要用于显示平面图像中人们感兴趣的区域。通过研究对象的一组平行截面图重建物体的三维图像是计算机图形学和医生的一个重要的研究方向。 -By computed tomography technology (CT), magnetic resonance imaging (MRI), is computer tomography (PET) and ultrasound (US) and other medical imaging technology is a group of patients with lesions of the two-dimensional CT images. Two-dimensional image is used to display graphic images in people' s areas of interest. By studying the object of a set of parallel sections of the three-dimensional image reconstruction of objects in computer graphics and a doctor is an important research direction.
Platform: | Size: 730112 | Author: liaozw | Hits:

[2D GraphicFullSceneMotionBlur_src_demo

Description: The texture used for the motion blur is d In the demo application, the following keys are usable: * s - for changing the rendered scene. * t - for changing the FirstRenderTexture flag that is passed to the RenderToMotionBlurTexture procedure. * w - for wireframe rendering. * m - for the use of motion blur or not. * press a and then + or - to adjust the alpha intensity. Note that the demo runs with GLUT. Points of Interest This method is very useful especially when doing full scene motion blur. If this method is used just for a single object then it is recommended to use masking. License-The texture used for the motion blur is defined in the core (main) module and is exported in all the other modules. But the processing is made in the motionblur module. There are three procedures: 1. int CreateMotionBlurTexture(int quality, int interpolation) - creates the motion blur texture and is recommended to be called into the init procedure. 2. void RenderToMotionBlurTexture(bool FirstRenderTexture, int SceneFunc()) - "renders" the SceneFunc() onto the motion blur texture together with the previous frame. The boolean flag specifies if the previous frame is rendered first or not (see the background point). 3. void ShowMotionBlurTexture() - is like a flush procedure, it displays onto the screen the final result.
Platform: | Size: 3266560 | Author: 欧阳西 | Hits:

[JSP/Javajava-nio

Description: 实例化HashMap类型的一个对象用来存放每一个客户对应的套接字和通道,实例化线程通道选择器等,当由用户请求时,接受,加入选择项,注册感兴趣事件,另一线程处理输入流,在前面加echo:,发给客户端。-HashMap instance of an object type used to store the corresponding socket of each customer and channel, channel selector thread instantiation, etc., when the user request, accept, join the select items, registered interest in the event, another thread processing input stream, with the addition of echo:, to the client.
Platform: | Size: 11264 | Author: zhang liang | Hits:

[OtherHuman_Detection_using_Iterative__Feature_Selection

Description: Abstract—We present a fast feature selection algorithm suitable for object detection applications where the image being tested must be scanned repeatedly to detected the object of interest at different locations and scales. The algorithm iteratively estimates the belongness probability of image pixels to foreground of the image. To prove the validity of the algorithm, we apply it to a human detection problem. The edge map is filtered using a feature selection algorithm. The filtered edge map is then projected onto an eigen space of human shapes to determine if the image contains a human. Since the edge maps are binary in nature, Logistic Principal Component Analysis is used to obtain the eigen human shape space. Experimental results illustrate the accuracy of the human detector.
Platform: | Size: 492544 | Author: 谷川 | Hits:

[Software EngineeringREGIONS-OF-INTEREST-FOR-ACCURATE-OBJECT-DETECTION

Description: REGIONS OF INTEREST FOR ACCURATE OBJECT DETECTION
Platform: | Size: 629760 | Author: matlabmatlab | Hits:
« 12 3 4 »

CodeBus www.codebus.net