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

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

Primitives

  • 加密算法 Test Driver for Crypto++, a C++ Class Library of Cryptographic Primitives: - To generate an

    加密算法 Test Driver for Crypto++, a C++ Class Library of Cryptographic Primitives: - To generate an RSA key cryptest g - To encrypt and decrypt a string using RSA cryptest r - To calculate MD5, SHS, and RIPEMD-160 message digests: cryptest m file - To encrypt and decrypt a string using DES-EDE in CBC mode: cryptest t - To encrypt or decrypt a file cryptest e|d input output - To share a file into shadows: cryptest s <pieces> <pieces-needed> file (make sure file has no extension, if you re running this under DOS) - To reconstruct a file from shadows: cryptest j output file1 file2 [....] - To gzip a file: cryptest z <compression-level> input output - To gunzip a file: cryptest u input output - To run validation tests: cryptest v - To run benchmarks: cryptest b [time for each benchmark in seconds]

    標簽: Cryptographic Primitives generate Library

    上傳時間: 2015-07-16

    上傳用戶:wqxstar

  • Intel® Integrated Performance Primitives for Intel® Architecture Intel 使用手冊,包含(intel ipp)所

    Intel® Integrated Performance Primitives for Intel® Architecture Intel 使用手冊,包含(intel ipp)所有圖像處理相關的函數與說明,函數很全,你可以下載查看是不是包含你想用的函數,(intel ipp)提供的庫基于Intel CPU,性能很高.

    標簽: Intel Architecture Performance Integrated

    上傳時間: 2016-02-27

    上傳用戶:dsgkjgkjg

  • PXA270 design guide low level Primitives

    PXA270 design guide low level Primitives

    標簽: Primitives design guide level

    上傳時間: 2014-06-30

    上傳用戶:yxgi5

  • lcd計數顯示程序

    library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.STD_LOGIC_ARITH.ALL; use IEEE.STD_LOGIC_UNSIGNED.ALL; ---- Uncomment the following library declaration if instantiating ---- any Xilinx Primitives in this code. --library UNISIM; --use UNISIM.VComponents.all; entity counter is     Port ( clk : in std_logic;      resetn : in std_logic;            dout : out std_logic_vector(7 downto 0);            lcd_en : out std_logic;            lcd_rs : out std_logic;            lcd_rw   : out std_logic); end counter;

    標簽: lcd 計數顯示 程序

    上傳時間: 2013-10-30

    上傳用戶:wqxstar

  • OpenCV means Intel® Open Source Computer Vision Library. It is a collection of C functions and a

    OpenCV means Intel® Open Source Computer Vision Library. It is a collection of C functions and a few C++ classes that implement some popular Image Processing and Computer Vision algorithms. OpenCV has cross-platform middle-to-high level API that consists of a few hundreds (>300) C functions. It does not rely on external libraries, though it can use some when it is possible. OpenCV is free for both non-commercial and commercial use (see the license for details). OpenCV provides transparent interface to Intel® Integrated Performance Primitives (IPP). That is, it loads automatically IPP libraries optimized for specific processor at runtime, if they are available. More information about IPP can be retrieved at http://www.intel.com/software/products/ipp/index.htm -------------------------------------------------------------------------------- 本文是opencv的入門教程

    標簽: collection functions Computer Library

    上傳時間: 2015-09-12

    上傳用戶:zhangyi99104144

  • penMesh is a generic and efficient data structure for representing and manipulating polygonal meshes

    penMesh is a generic and efficient data structure for representing and manipulating polygonal meshes. OpenMesh is developed at the Computer Graphics Group, RWTH Aachen , as part of the OpenSGPlus project, is funded by the German Ministry for Research and Education ( BMBF), and will serve as geometry kernel upon which the so-called high level Primitives (e.g. subdivision surfaces or progressive meshes) of OpenSGPlus are built. It was designed with the following goals in mind : Flexibility : provide a basis for many different algorithms without the need for adaptation. Efficiency : maximize time efficiency while keeping memory usage as low as possible. Ease of use : wrap complex internal structure in an easy-to-use interface.

    標簽: manipulating representing and efficient

    上傳時間: 2015-10-14

    上傳用戶:米卡

  • intel ipp所有信號處理相關的函數與說明,函數很全,本人正在試用,一般的算法都有現成的函數.對于試驗階段的人員來說,能省不少時間.使用起來很方便. Intel® Integrated

    intel ipp所有信號處理相關的函數與說明,函數很全,本人正在試用,一般的算法都有現成的函數.對于試驗階段的人員來說,能省不少時間.使用起來很方便. Intel® Integrated Performance Primitives for Intel® Architecture

    標簽: Integrated intel Intel 函數

    上傳時間: 2014-01-13

    上傳用戶:hullow

  • The OpenMAX DL (Development Layer) APIs contain a comprehensive set of audio, video, signal processi

    The OpenMAX DL (Development Layer) APIs contain a comprehensive set of audio, video, signal processing function Primitives which can be implemented and optimized on various CPUs and hardware engines and then used for accelerated codec functionality. API functions target key algorithms in such codecs as H.264, MPEG-4, AAC, MP3, and JPEG.

    標簽: comprehensive Development processi OpenMAX

    上傳時間: 2017-09-20

    上傳用戶:dancnc

  • Matlab 畫三維立體圖形

    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'.

    標簽: Matlab 畫三維立體圖形

    上傳時間: 2015-11-02

    上傳用戶:A1321

主站蜘蛛池模板: 临清市| 晋宁县| 呼伦贝尔市| 阿拉善盟| 祥云县| 邹平县| 广南县| 林芝县| 华池县| 宜春市| 大洼县| 临漳县| 合肥市| 道真| 海安县| 滨州市| 桓台县| 贵南县| 信宜市| 万州区| 林芝县| 丹棱县| 萍乡市| 北宁市| 尼勒克县| 巴林左旗| 淅川县| 航空| 镇赉县| 鄂托克旗| 建水县| 渝中区| 阿克苏市| 许昌县| 隆尧县| 合山市| 广南县| 越西县| 桂东县| 疏勒县| 北票市|