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

ROBUST

  • Exceptional C++ shows by example how to go about sound software engineering in standard C++. Do you

    Exceptional C++ shows by example how to go about sound software engineering in standard C++. Do you enjoy solving thorny C++ problems and puzzles? Do you relish writing ROBUST and extensible code? Then take a few minutes and challenge yourself with some tough C++ design and programming problems.

    标签: Exceptional engineering software standard

    上传时间: 2017-04-08

    上传用户:xiaoyunyun

  • pHash is an implementation of various perceptual hashing algorithms. A perceptual hash is a fingerpr

    pHash is an implementation of various perceptual hashing algorithms. A perceptual hash is a fingerprint of an audio, video, or image file that is mathematically based on the audio or visual content contained within. Unlike cryptographic hash functions that rely on the avalanche effect of small changes in input leading to drastic changes in the output, perceptual hashes are "close" to one another if the inputs are visually or auditorily similar. As a result, perceptual hashes must also be ROBUST enough to take into account transformations that could have been performed on the input.

    标签: perceptual implementation algorithms fingerpr

    上传时间: 2013-12-08

    上传用户:星仔

  • Exceptional C++ shows by example how to go about sound software engineering in standard C++. Do you

    Exceptional C++ shows by example how to go about sound software engineering in standard C++. Do you enjoy solving thorny C++ problems and puzzles? Do you relish writing ROBUST and extensible code? Then take a few minutes and challenge yourself with some tough C++ design and programming problems.

    标签: Exceptional engineering software standard

    上传时间: 2017-04-28

    上传用户:edisonfather

  • 使用INTEL矢量统计类库的程序,包括以下功能:  Raw and central moments up to 4th order  Kurtosis and

    使用INTEL矢量统计类库的程序,包括以下功能:  Raw and central moments up to 4th order  Kurtosis and Skewness  Variation Coefficient  Quantiles and Order Statistics  Minimum and Maximum  Variance-Covariance/Correlation matrix  Pooled/Group Variance-Covariance/Correlation Matrix and Mean  Partial Variance-Covariance/Correlation matrix  ROBUST Estimators for Variance-Covariance Matrix and Mean in presence of outliers

    标签: 61623 and Kurtosis central

    上传时间: 2017-05-14

    上传用户:yzy6007

  • The potential of solving real-time demanding industrial applications, using vision-based algorithms

    The potential of solving real-time demanding industrial applications, using vision-based algorithms, drastically grew due to an increasing availability of computational power. In this thesis a novel real-time, vision-based Blackjack analysis system is presented. The embedding of the vision algorithms in a compound system of other information sources such as an electronic chip tray, reduces the vision task to detect cards and chips. ROBUST results are achieved by not just analyzing single frames but an image stream regarding game-ß ow informations. The requirements for such a system are a highly ROBUST and adaptive behav- ior. This is motivated by the vital interest of casino entrepreneurs in a 100 statistical analysis of their offered gambling in order to support the business plan, measuring table and dealer performance and give accurate player rating. Extensive experiments show the ROBUSTness and applicability of the proposed system.

    标签: applications vision-based algorithms industrial

    上传时间: 2017-08-20

    上传用户:liansi

  • Servlets and JavaServer Pages is the first complete guide to building dynamic Java-based Web applica

    Servlets and JavaServer Pages is the first complete guide to building dynamic Java-based Web applications using the new JavaServer Pages 2.0 and Servlets 2.4. Servlets and JavaServer Pages (JSP) provide a ROBUST solution to developing large, complex Web applications, including multiserver projects. In addition to built-in security, portability, and a Web server, they offer developers the freedom to work with any operating system that supports Javabe it Linux, Windows, OSX, or Solaris. This authoritative book begins by explaining how to set up a Servlet and JSP development environment, including a discussion of containers, Java support, and installing and configuring Tomcat. The authors then thoroughly explore servlets and JSP, including significant coverage of custom tag libraries, newly available filters, and popular servlet and JSP design patterns. Readers can then test-drive the knowledge gained by constructing a book-support Web site.

    标签: JavaServer Java-based Servlets complete

    上传时间: 2014-01-02

    上传用户:zsjzc

  • Java technology has evolved from a programming language designed to create machine-independent embe

    Java technology has evolved from a programming language designed to create machine-independent embedded systems into a ROBUST, vendor-independent, machine-independent, server-side technology, enabling the corporate community to realize the full potential of web-centric applications. Java began with the release of the Java Development Kit (JDK). It was obv

    标签: machine-independent programming technology designed

    上传时间: 2013-12-28

    上传用户:lacsx

  • Features a unique program to estimate the power spectral density. The spectrum containing all signif

    Features a unique program to estimate the power spectral density. The spectrum containing all significant details is calculated from a time series model. Model type as well as model order are determined automatically from the data, using statistical criteria. ROBUST estimation algorithms and order selection criteria are used to obtain reliable results. Unlike in FFT analysis, where the experimenter has to set the amount of smoothing of the raw FFT, the right level of detail is assessed using the data only.

    标签: containing Features estimate spectral

    上传时间: 2014-02-09

    上传用户:daguda

  • openssl源码

    openssl源码 The OpenSSL Project is a collaborative effort to develop a ROBUST, commercial-grade, full-featured, and Open Source toolkit implementing the Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS) protocols as well as a full-strength general purpose cryptography library. The project is managed by a worldwide community of volunteers that use the Internet to communicate, plan, and develop the OpenSSL toolkit and its related documentation.

    标签: ssl、openssl、网络、安全

    上传时间: 2015-02-26

    上传用户:cjm3345

  • distmesh

    matlab有限元网格划分程序 DistMesh is a simple MATLAB code for generation of unstructured triangular and tetrahedral meshes. It was developed by Per-Olof Persson (now at UC Berkeley) and Gilbert Strang in the Department of Mathematics at MIT. A detailed description of the program is provided in our SIAM Review paper, see documentation below. One reason that the code is short and simple is that the geometries are specified by Signed Distance Functions. These give the shortest distance from any point in space to the boundary of the domain. The sign is negative inside the region and positive outside. A simple example is the unit circle in 2-D, which has the distance function d=r-1, where r is the distance from the origin. For more complicated geometries the distance function can be computed by interpolation between values on a grid, a common representation for level set methods. For the actual mesh generation, DistMesh uses the Delaunay triangulation routine in MATLAB and tries to optimize the node locations by a force-based smoothing procedure. The topology is regularly updated by Delaunay. The boundary points are only allowed to move tangentially to the boundary by projections using the distance function. This iterative procedure typically results in very well-shaped meshes. Our aim with this code is simplicity, so that everyone can understand the code and modify it according to their needs. The code is not entirely ROBUST (that is, it might not terminate and return a well-shaped mesh), and it is relatively slow. However, our current research shows that these issues can be resolved in an optimized C++ code, and we believe our simple MATLAB code is important for demonstration of the underlying principles. To use the code, simply download it from below and run it from MATLAB. For a quick demonstration, type "meshdemo2d" or "meshdemond". For more details see the documentation.

    标签: matlab有限元网格划分程序

    上传时间: 2015-08-12

    上传用户:凛风拂衣袖