亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

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

    上傳用戶:凜風拂衣袖

主站蜘蛛池模板: 黔江区| 灯塔市| 宁明县| 土默特右旗| 板桥市| 兰溪市| 开江县| 焦作市| 佛学| 治县。| 永和县| 砚山县| 昔阳县| 勐海县| 庆元县| 东辽县| 吉水县| 英山县| 六枝特区| 吴桥县| 昌黎县| 磐安县| 文安县| 金沙县| 泰兴市| 曲周县| 九江市| 图片| 沧州市| 满洲里市| 白城市| 利川市| 长顺县| 汝州市| 漳州市| 登封市| 濮阳县| 铜川市| 都兰县| 济南市| 东丽区|