PseudoQ is an open source java application for creating, playing and solving SuDoku puzzles of various types. It features both a Swing GUI and command-line operation. The automatic solving of puzzles uses "smart" techniques rather than a brute force search of every possible combination.
標(biāo)簽: application creating PseudoQ playing
上傳時間: 2014-01-06
上傳用戶:yiwen213
AVR single-chip developed by a very low threshold, as long as the computer will be able to study the development of AVR microcontroller. Only a single-chip ISP download beginners line, the editing, debugging of software programs through a direct line into the AVR microcontroller, which can develop AVR Series Single-chip package of a variety of devices. AVR single-chip microcomputer in the industry known as "front-line struggle to seize state power."
標(biāo)簽: single-chip developed threshold the
上傳時間: 2017-09-12
上傳用戶:shinesyh
AVR single-chip developed by a very low threshold, as long as the computer will be able to study the development of AVR microcontroller. Only a single-chip ISP download beginners line, the editing, debugging of software programs through a direct line into the AVR microcontroller, which can develop AVR Series Single-chip package of a variety of devices. AVR single-chip microcomputer in the industry known as "front-line struggle to seize state power."
標(biāo)簽: single-chip developed threshold the
上傳時間: 2013-12-09
上傳用戶:invtnewer
TdcHintEx Provides your users with a cool transparent hint. It replaces standard Delphi hint window. Just drop a TdcHintEx in your main form. Set Enabled to True. And run your application. Oh btw, please set ShowHint to True.. :) Drop me a line, and tell me what you think of it. Antony Hoon antony7777@telkom.net
標(biāo)簽: hint transparent TdcHintEx Provides
上傳時間: 2014-01-12
上傳用戶:181992417
Cocoa Framework 簡稱Cocoa,它是Mac OS X 上的快速應(yīng)用程序開發(fā)(RAD, Rapid Application Development)框 架,一個高度面向?qū)ο蟮模∣bject Oriented)開發(fā)框架。無論您是資深的Mac 開發(fā)人員,還是即將踏入Mac 開發(fā)世 界的新新人類,Cocoa 都是您開發(fā)應(yīng)用程序的瑞士軍刀、樂高積木,它是您構(gòu)建Mac OS X 應(yīng)用程序最強(qiáng)大、最高 效的工具。值得一提的是,蘋果公司之所以能夠開發(fā)出眾多頂級軟件,其實也正是因為有著Cocoa 這個秘密武器。 Cocoa 是Mac OS X 上原生支持的應(yīng)用程序開發(fā)框架,蘋果公司強(qiáng)烈推薦所有Mac 開發(fā)人員使用。
上傳時間: 2014-01-10
上傳用戶:xlcky
If you are a C++ programmer who desires a fuller understanding of what is going on "under the hood," then Inside the C++ Object Model is for you! Inside the C++ Object Model focuses on the underlying mechanisms that support object-oriented programming within C++: constructor semantics, temporary generation, support for encapsulation, inheritance, and "the virtuals"-virtual functions and virtual inheritance. This book shows how your understanding the underlying implementation models can help you code more efficiently and with greater confidence. Lippman dispells the misinformation and myths about the overhead and complexity associated with C++, while pointing out areas in which costs and trade offs, sometimes hidden, do exist. He then explains how the various implementation models arose, points out areas in which they are likely to evolve, and why they are what they are. He covers the semantic implications of the C++ object model and how that model affects your programs.
標(biāo)簽: understanding programmer desires fuller
上傳時間: 2017-09-25
上傳用戶:gtzj
The object detector described below has been initially proposed by P.F. Felzenszwalb in [Felzenszwalb2010]. It is based on a Dalal-Triggs detector that uses a single filter on histogram of oriented gradients (HOG) features to represent an object category. This detector uses a sliding window approach, where a filter is applied at all positions and scales of an image. The first innovation is enriching the Dalal-Triggs model using a star-structured part-based model defined by a “root” filter (analogous to the Dalal-Triggs filter) plus a set of parts filters and associated deformation models. The score of one of star models at a particular position and scale within an image is the score of the root filter at the given location plus the sum over parts of the maximum, over placements of that part, of the part filter score on its location minus a deformation cost easuring the deviation of the part from its ideal location relative to the root. Both root and part filter scores are defined by the dot product between a filter (a set of weights) and a subwindow of a feature pyramid computed from the input image. Another improvement is a representation of the class of models by a mixture of star models. The score of a mixture model at a particular position and scale is the maximum over components, of the score of that component model at the given location.
標(biāo)簽: 計算機(jī)視覺
上傳時間: 2015-03-15
上傳用戶:sb_zhang
This document specifies trivium, a hardware oriented synchronous stream cipher which aims to provide a flexible trade-off between speed and area.
標(biāo)簽: trivium_p3
上傳時間: 2015-05-09
上傳用戶:inazeze
This tutorial will focus on the strong connection between C++ and SystemC by making the analogy between Hardware modeling and Object-Oriented modeling. The first section will look at the creation of Hardware components in C++. The second section will highlight the benefits of a SystemC implementation. Lastly, a worked example will allow you to gain experience with the steps involved in the creation, and simulation, of a SystemC design.
標(biāo)簽: systemc
上傳時間: 2015-06-25
上傳用戶:ycc‘eeworm
Matlab 畫三維立體圖形 The aim of geom3d library is to handle and visualize 3D geometric primitives such as points, lines, planes, polyhedra... It provides low-level functions for manipulating 3D geometric primitives, making easier the development of more complex geometric algorithms. Some features of the library are: - creation of various shapes (3D points, 3D lines, planes, polyhedra...) through an intuitive syntax. Ex: createPlane(p1, p2, p3) to create a plane through 3 points. - derivation of new shapes: intersection between 2 planes, intersection between a plane and a line, between a sphere and a line... - functions for 3D polygons and polyhedra. Polyhedra use classical vertex-faces arrays (face array contain indices of vertices), and support faces with any number of vertices. Some basic models are provided (createOctaedron, createCubeoctaedron...), as well as some computation (like faceNormal or centroid) - manipulation of planar transformation. Ex.: ROT = createRotationOx(THETA); P2 = transformPoint3d(P1, ROT); - direct drawing of shapes with specialized functions. Clipping is performed automatically for infinite shapes such as lines or rays. Ex: drawPoint3d([50 50 25; 20 70 10], 'ro'); % draw some points drawLine3d([X0 Y0 Z0 DX DY DZ]); % clip and draw straight line Some functions require the geom2d package. Additional help is provided in geom3d/Contents.m file, as well as summary files like 'points3d.m' or 'lines3d.m'.
標(biāo)簽: Matlab 畫三維立體圖形
上傳時間: 2015-11-02
上傳用戶:A1321
蟲蟲下載站版權(quán)所有 京ICP備2021023401號-1