目录 1. RK 支持的编解码类型 头文件与库文件 结构体介绍 编解码枚举定义 编解码结构体定义 解码调用流程 解码创建过程 解码过程 解码销毁过程

Size: px
Start display at page:

Download "目录 1. RK 支持的编解码类型 头文件与库文件 结构体介绍 编解码枚举定义 编解码结构体定义 解码调用流程 解码创建过程 解码过程 解码销毁过程"

Transcription

1 vpu_api.h 接口说明文档 1

2 目录 1. RK 支持的编解码类型 头文件与库文件 结构体介绍 编解码枚举定义 编解码结构体定义 解码调用流程 解码创建过程 解码过程 解码销毁过程 编码调用流程 编码创建过程 编码过程 编码销毁过程

3 1. RK 支持的编解码类型 只支持 H264 与 VP8 编解码 2. 头文件不库文件 需要头文件 : vpu_api.h 需要库文件 : librk_vpuapi.so libvpu.so 3. 结构体介绍 3.1 编解码枚举定义 编码输入的图像枚举类型 : typedef enum VPU_H264ENC_YUV420_PLANAR = 0, /* YYYY... UUUU... VVVV */ VPU_H264ENC_YUV420_SEMIPLANAR = 1, /* YYYY... UVUVUV... */ VPU_H264ENC_YUV422_INTERLEAVED_YUYV = 2, /* YUYVYUYV... */ VPU_H264ENC_YUV422_INTERLEAVED_UYVY = 3, /* UYVYUYVY... */ VPU_H264ENC_RGB565 = 4, /* 16-bit RGB */ VPU_H264ENC_BGR565 = 5, /* 16-bit RGB */ VPU_H264ENC_RGB555 = 6, /* 15-bit RGB */ VPU_H264ENC_BGR555 = 7, /* 15-bit RGB */ VPU_H264ENC_RGB444 = 8, /* 12-bit RGB */ VPU_H264ENC_BGR444 = 9, /* 12-bit RGB */ VPU_H264ENC_RGB888 = 10, /* 24-bit RGB */ VPU_H264ENC_BGR888 = 11, /* 24-bit RGB */ VPU_H264ENC_RGB = 12, /* 30-bit RGB */ VPU_H264ENC_BGR = 13 /* 30-bit RGB */ H264EncPictureType; 编解码类型结构体 : typedef enum OMX_RK_VIDEO_CODINGTYPE OMX_RK_VIDEO_CodingUnused, /**< Value when coding is N/A */ OMX_RK_VIDEO_CodingAutoDetect, /**< Autodetection of coding type */ OMX_RK_VIDEO_CodingMPEG2, /**< AKA: H.262 */ 3

4 OMX_RK_VIDEO_CodingH263, /**< H.263 */ OMX_RK_VIDEO_CodingMPEG4, /**< MPEG-4 */ OMX_RK_VIDEO_CodingWMV, /**< Windows Media Video (WMV1,WMV2,WMV3)*/ OMX_RK_VIDEO_CodingRV, /**< all versions of Real Video */ OMX_RK_VIDEO_CodingAVC, /**< H.264/AVC */ OMX_RK_VIDEO_CodingMJPEG, /**< Motion JPEG */ OMX_RK_VIDEO_CodingVP8, /**< VP8 */ OMX_RK_VIDEO_CodingVP9, /**< VP9 */ OMX_RK_VIDEO_CodingVC1=0x , /**<WindowsMediaVideo(WMV1,WMV2,WMV3)*/ OMX_RK_VIDEO_CodingFLV1, /**< Sorenson H.263 */ OMX_RK_VIDEO_CodingDIVX3, /**< DIVX3 */ OMX_RK_VIDEO_CodingVP6, OMX_RK_VIDEO_CodingHEVC, /**< H.265/HEVC */ OMX_RK_VIDEO_CodingKhronosExtensions = 0x6F000000, /**< Reserved region for introducing Khronos Standard Extensions */ OMX_RK_VIDEO_CodingVendorStartUnused = 0x7F000000, /**< Reserved region for introducing Vendor Extensions */ OMX_RK_VIDEO_CodingMax = 0x7FFFFFFF OMX_RK_VIDEO_CODINGTYPE; 编解码类别结构体 : typedef enum CODEC_TYPE CODEC_NONE, CODEC_DECODER,/*Decoding*/ CODEC_ENCODER,/*Encoding*/ CODEC_BUTT, CODEC_TYPE; 编解码错误返回值类型 : typedef enum VPU_API_ERR VPU_API_OK = 0, VPU_API_ERR_UNKNOW = -1, VPU_API_ERR_BASE = -1000, VPU_API_ERR_LIST_STREAM = VPU_API_ERR_BASE - 1, VPU_API_ERR_INIT = VPU_API_ERR_BASE - 2, VPU_API_ERR_VPU_CODEC_INIT = VPU_API_ERR_BASE - 3, VPU_API_ERR_STREAM = VPU_API_ERR_BASE - 4, VPU_API_ERR_FATAL_THREAD = VPU_API_ERR_BASE - 5, VPU_API_EOS_STREAM_REACHED = VPU_API_ERR_BASE - 11, VPU_API_ERR_BUTT, VPU_API_ERR; 4

5 3.2 编解码结构体定义 视频码流包信息结构体 : typedef struct VideoPacket RK_S64 pts; /* with unit of us*/ RK_S64 dts; /* with unit of us*/ RK_U8 *data; /* start address of stream data per frame*/ RK_S32 size; /* length of the stream per frame*/ RK_U32 capability; /* NOTE: 0->no packet loss 1 RK_U32 nflags; VideoPacket_t; 输出存放解码后的图像结构体 : typedef struct DecoderOut RK_U8 *data; /*image data after decoding*/ RK_U32 size; /*image size after decoding*/ RK_S64 timeus; RK_S32 nflags; DecoderOut_t; 编码图像输入结构体 : typedef struct EncInputStream RK_U8 *buf; /* image data after encoding */ RK_S32 size; /* image size after encoding * RK_U32 bufphyaddr; /*image s physical address after encoding*/ RK_S64 timeus; RK_U32 nflags; EncInputStream_t; 编码码流输出结构体 : typedef struct EncoderOut RK_U8 *data; /*stream data per frame */ RK_S32 size; /*stream data per frame*/ RK_S64 timeus; RK_S32 keyframe; /*key frame*/ EncoderOut_t; 5

6 编码参数结构体 : typedef struct EncParameter int width; int height; int rc_mode; int bitrate; int framerate; int qp; int enablecabac; int cabacinitidc; int format; int intrapicrate; int framerateout; int profileidc; int levelidc; int reserved[3]; EncParameter_t; 编码参数结构体 : --> /* 未用到丌需要设置 */ typedef struct int width; int height; int rc_mode; int bitrate; int framerate; int qp; int reserved[10]; EncParams1; 编解码额外参数 : --> /* 未用到丌需要设置 */ typedef struct EXtraCfg RK_S32 vc1extra_size; RK_S32 vp6codeid; RK_S32 tsformat; RK_U32 reserved[20]; EXtraCfg_t; VPU 编解码上下文结构体 : typedef struct VpuCodecContext void* vpuapiobj; CODEC_TYPE codectype; 6

7 7 OMX_RK_VIDEO_CODINGTYPE videocoding; RK_U32 width; RK_U32 height; RK_U8 *extradata; RK_S32 extradata_size; RK_U8 enableparsing; RK_S32 no_thread; EXtraCfg_t extra_cfg; void* private_data; /* ** 1: error state(not working) 0: working */ RK_S32 decoder_err; /** * Allocate and initialize an VpuCodecContext. * ctx The context of vpu api, allocated in this function. extradata The extra data of codec, some codecs need / can * use extradata like Huffman tables, also live VC1 codec can * use extradata to initialize itself. extra_size The size of extra data. * 0 for init success, others for failure. * note: check whether ctx has been allocated success after you do init. */ RK_S32 (*init)(struct VpuCodecContext *ctx, RK_U8 *extradata, RK_U32 extra_size); /** 0 for decode success, others for failure. */ RK_S32 (*decode)(struct VpuCodecContext *ctx, VideoPacket_t *pkt, DecoderOut_t *adecout); /** 0 for encode success, others for failure. */ RK_S32 (*encode)(struct VpuCodecContext *ctx, EncInputStream_t *aencinstrm, EncoderOut_t *aencout); /** * flush codec while do fast forward playing. * 0 for flush success, others for failure. */ RK_S32 (*flush)(struct VpuCodecContext *ctx); RK_S32 (*control)(struct VpuCodecContext *ctx, VPU_API_CMD cmdtype, void* param); /**

8 *seperate the decode function to two function * */ RK_S32 (*decode_sendstream)(struct VpuCodecContext *ctx, VideoPacket_t *pkt); RK_S32 (*decode_getframe)(struct VpuCodecContext *ctx, DecoderOut_t *adecout); RK_S32 (*encoder_sendframe)(struct VpuCodecContext *ctx, EncInputStream_t *aencinstrm); RK_S32 (*encoder_getstream)(struct VpuCodecContext *ctx, EncoderOut_t *aencout); VpuCodecContext_t; /* allocated vpu codec context */ #ifdef cplusplus extern "C" #endif RK_S32 vpu_open_context(struct VpuCodecContext **ctx); #ifdef cplusplus #endif #ifdef cplusplus extern "C" #endif RK_S32 vpu_close_context(struct VpuCodecContext **ctx); #ifdef cplusplus #endif 4. 解码调用流程 解码不大于 720 P30fps 情况下的设置示例 : VpuCodecContext_t *_vpu_ctx = NULL; 4.1 解码创建过程 (1) 创建 _vpu_ctx int ret = vpu_open_context(&_vpu_ctx); if (ret < 0 (_vpu_ctx == NULL)) ERROR ("can not create context"); return -1; (2) 初始化 _vpu_ctx->width = 1280; _vpu_ctx->height = 720;/*resolution720P*/ _vpu_ctx->videocoding = OMX_RK_VIDEO_CodingAVC;/*H264*/ 8

9 _vpu_ctx->codectype = CODEC_DECODER;/*decoding*/ ret = _vpu_ctx->init(_vpu_ctx, NULL, 0); if (ret < 0) ERROR (" decoder init failed"); return -1; 4.2 解码过程 VideoPacket_t pkt; DecoderOut_t picture; VPU_FRAME* _vpu_fm; memset(&pkt, 0, sizeof(videopacket_t)); memset(&picture, 0, sizeof(decoderout_t)); pkt.data = coded_data_ptr; pkt.size = frame_len; picture.data = (RK_U8*)_vpu_fm; picture.size = 0; int ret = _vpu_ctx->decode(_vpu_ctx, &pkt, &picture); if (ret!= 0) ALOGE("[ER] failed to decode this frame"); return -1; if (_vpu_fm->vpumem.vir_addr == NULL) 解码出数据, 需要缓存 2 帧数据, 解码需要小于 30fps 数据 注意 : 数据使用完后需要释放 if (_vpu_fm->vpumem.vir_addr!= NULL) VPUMemLink(&_vpu_fm->vpumem); VPUFreeLinear(&_vpu_fm->vpumem); memset(_vpu_fm, 0, sizeof(vpu_frame)); 注 :decoder_getstream 和 decoder_sendframe 与 decode 接口功能相同 ; 4.3 解码销毁过程 if (_vpu_ctx!= NULL) int res = vpu_close_context(&_vpu_ctx); _vpu_ctx = NULL; 9

10 5. 编码调用流程 编码不大于 720 P30fps 的设置示例 : VpuCodecContext_t *_vpu_ctx = NULL; 5.1 编码创建过程 (1) 创建 _vpu_ctx int ret = vpu_open_context(&_vpu_ctx); if (ret < 0 (_vpu_ctx == NULL)) ERROR ("can not create context"); return -1; (2) 初始化 EncParameter_t *_vpu_enc_param; _vpu_enc_param = (EncParameter_t*)malloc(sizeof(EncParameter_t)); memset(_vpu_enc_param, 0, sizeof(encparameter_t)); _vpu_ctx->width = 1280; _vpu_ctx->height = 720;/* 分辨率 720P*/ _vpu_ctx->videocoding = OMX_RK_VIDEO_CodingAVC;/*H264*/ _vpu_ctx->codectype = CODEC_ENCODER;/* 编码 */ _vpu_enc_param->bitrate = 512;/* 比特率 */ _vpu_enc_param->enablecabac = false;/* 使能 cabac*/ _vpu_enc_param->cabacinitidc = 0; _vpu_enc_param->format = 0; _vpu_enc_param->framerate =30;/* 帧率 */ _vpu_enc_param->width = 1280; _vpu_enc_param->height = 720; _vpu_enc_param->profileidc = profile; _vpu_enc_param->intrapicrate =_gop_len; _vpu_enc_param->levelidc = level_id; _vpu_enc_param->rc_mode = 1; _vpu_enc_param->qp = 35; _vpu_ctx->private_data = _vpu_enc_param; ret = _vpu_ctx->init(_vpu_ctx, NULL, 0); if (ret < 0) ERROR (" decoder init failed"); return -1; /* 编码参数控制, 获取编码参数 */ EncParameter_t vpug; _vpu_ctx->control(_vpu_ctx,vpu_api_enc_getcfg,(void*)&vpug); 10

11 /* 编码参数控制, 设置编码参数 */ vpug.rc_mode = 1; _vpu_ctx->control(_vpu_ctx,vpu_api_enc_setcfg,(void*)&vpug); /* 编码参数控制, 设置编码类型 */ H264EncPictureType enctype = VPU_H264ENC_YUV420_SEMIPLANAR; // nv12 res=_vpu_ctx->control(_vpu_ctx,vpu_api_enc_setformat, (void*) &enctype); if (res < 0) ERROR ("init control failed!"); return -1; 5.2 编码过程 EncInputStream_t input;/* 输入图片信息 */ input.buf = pic.viraddr /* 图像地址 */ input.size = size;/* 图像数据尺寸 */ res = _vpu_ctx->encoder_sendframe(_vpu_ctx, &input); if (res!= 0) ERROR ("enc send frame to vpu error"); return -1; EncoderOut_t output;/* 编码后的码流数据 */ memset(&output, 0, sizeof(encoderout_t)); output.data = NULL; output.size = 0; /* 码流尺寸 */ res = _vpu_ctx->encoder_getstream(_vpu_ctx, &output); if (res!= 0) ERROR ("enc get frame to vpu error"); return -1; 注 :encoder_getstream 和 encoder_sendframe 与 encoder 接口功能相同 ; 5.3 编码销毁过程 if (_vpu_ctx!= NULL) res = _vpu_ctx->flush(_vpu_ctx); if (res!= 0) 11

12 ERROR ("enc flush vpu error"); return -1; res = vpu_close_context(&_vpu_ctx); if (res!= 0) ERROR ("enc close vpu error"); return -1; _vpu_ctx = NULL; 注 : 丢包需要申请 I 帧,RK 硬件编码不支持多 slice 编码 12

bingdian001.com

bingdian001.com TSM12M TSM12 STM8L152C6, STM8L152R8 MSP430F5325 whym1987@126.com! /******************************************************************************* * : TSM12.c * : * : 2013/10/21 * : TSM12, STM8L f(sysclk)

More information

CC213

CC213 : (Ken-Yi Lee), E-mail: feis.tw@gmail.com 49 [P.51] C/C++ [P.52] [P.53] [P.55] (int) [P.57] (float/double) [P.58] printf scanf [P.59] [P.61] ( / ) [P.62] (char) [P.65] : +-*/% [P.67] : = [P.68] : ,

More information

int *p int a 0x00C7 0x00C7 0x00C int I[2], *pi = &I[0]; pi++; char C[2], *pc = &C[0]; pc++; float F[2], *pf = &F[0]; pf++;

int *p int a 0x00C7 0x00C7 0x00C int I[2], *pi = &I[0]; pi++; char C[2], *pc = &C[0]; pc++; float F[2], *pf = &F[0]; pf++; Memory & Pointer trio@seu.edu.cn 2.1 2.1.1 1 int *p int a 0x00C7 0x00C7 0x00C7 2.1.2 2 int I[2], *pi = &I[0]; pi++; char C[2], *pc = &C[0]; pc++; float F[2], *pf = &F[0]; pf++; 2.1.3 1. 2. 3. 3 int A,

More information

IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I

IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I 2004 5 IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I Abstract The techniques of digital video processing, transferring

More information

C/C++ - 文件IO

C/C++ - 文件IO C/C++ IO Table of contents 1. 2. 3. 4. 1 C ASCII ASCII ASCII 2 10000 00100111 00010000 31H, 30H, 30H, 30H, 30H 1, 0, 0, 0, 0 ASCII 3 4 5 UNIX ANSI C 5 FILE FILE 6 stdio.h typedef struct { int level ;

More information

Microsoft Word - 國慶問卷09簡報 _2_.doc

Microsoft Word - 國慶問卷09簡報 _2_.doc 國 慶 活 動 及 國 情 教 育 教 師 問 卷 調 查 簡 報 ( 二 零 零 九 年 十 一 月 十 日 ) 適 逢 今 年 為 中 華 人 民 共 和 國 成 立 六 十 周 年, 為 了 瞭 解 現 時 本 港 學 校 在 國 慶 期 間 進 行 慶 祝 活 動 的 情 況 和 教 師 對 國 情 教 育 的 看 法, 本 會 於 零 九 年 十 月 展 開 是 次 問 卷 調 查, 此

More information

Simulator By SunLingxi 2003

Simulator By SunLingxi 2003 Simulator By SunLingxi sunlingxi@sina.com 2003 windows 2000 Tornado ping ping 1. Tornado Full Simulator...3 2....3 3. ping...6 4. Tornado Simulator BSP...6 5. VxWorks simpc...7 6. simulator...7 7. simulator

More information

OSI OSI 15% 20% OSI OSI ISO International Standard Organization 1984 OSI Open-data System Interface Reference Model OSI OSI OSI OSI ISO Prototype Prot

OSI OSI 15% 20% OSI OSI ISO International Standard Organization 1984 OSI Open-data System Interface Reference Model OSI OSI OSI OSI ISO Prototype Prot OSI OSI OSI 15% 20% OSI OSI ISO International Standard Organization 1984 OSI Open-data System Interface Reference Model OSI OSI OSI OSI ISO Prototype Protocol OSI OSI OSI OSI OSI O S I 2-1 Application

More information

穨control.PDF

穨control.PDF TCP congestion control yhmiu Outline Congestion control algorithms Purpose of RFC2581 Purpose of RFC2582 TCP SS-DR 1998 TCP Extensions RFC1072 1988 SACK RFC2018 1996 FACK 1996 Rate-Halving 1997 OldTahoe

More information

Epson

Epson WH / MS CMP0087-00 TC WH/MS EPSON EPSON EXCEED YOUR VISION EXCEED YOUR VISION Seiko Corporation Microsoft and Windows are registered trademarks of Microsoft Corporation. Mac and Mac OS are registered trademarks

More information

Go构建日请求千亿微服务最佳实践的副本

Go构建日请求千亿微服务最佳实践的副本 Go 构建 请求千亿级微服务实践 项超 100+ 700 万 3000 亿 Goroutine & Channel Goroutine Channel Goroutine func gen() chan int { out := make(chan int) go func(){ for i:=0; i

More information

Panaboard Overlayer help

Panaboard Overlayer help Panaboard Overlayer Image Capture Software for Electronic Whiteboard (Panaboard) ... 3... 5... 6... 13...14 Panaboard Overlayer 1. 2. 3. 4. 4-1. 4-2. [ / ] ( ) 4-3. 5. 6. 6-1. 6-2. [ / ] ( ) 7. Panaboard

More information

, 7, Windows,,,, : ,,,, ;,, ( CIP) /,,. : ;, ( 21 ) ISBN : -. TP CIP ( 2005) 1

, 7, Windows,,,, : ,,,, ;,, ( CIP) /,,. : ;, ( 21 ) ISBN : -. TP CIP ( 2005) 1 21 , 7, Windows,,,, : 010-62782989 13501256678 13801310933,,,, ;,, ( CIP) /,,. : ;, 2005. 11 ( 21 ) ISBN 7-81082 - 634-4... - : -. TP316-44 CIP ( 2005) 123583 : : : : 100084 : 010-62776969 : 100044 : 010-51686414

More information

K301Q-D VRT中英文说明书141009

K301Q-D VRT中英文说明书141009 THE INSTALLING INSTRUCTION FOR CONCEALED TANK Important instuction:.. Please confirm the structure and shape before installing the toilet bowl. Meanwhile measure the exact size H between outfall and infall

More information

FFMpeg SDK 开发手册

FFMpeg SDK 开发手册 FFMpeg SDK 开发手册 FFMpeg 中比较重要的函数以及数据结构如下 : 1. 数据结构 : (1) AVFormatContext (2) AVOutputFormat (3) AVInputFormat (4) AVCodecContext (5) AVCodec (6) AVFrame (7) AVPacket (8) AVPicture (9) AVStream 2. 初始化函数

More information

Gerotor Motors Series Dimensions A,B C T L L G1/2 M G1/ A 4 C H4 E

Gerotor Motors Series Dimensions A,B C T L L G1/2 M G1/ A 4 C H4 E Gerotor Motors Series Size CC-A Flange Options-B Shaft Options-C Ports Features 0 0 5 5 1 0 1 0 3 3 0 0 SAE A 2 Bolt - (2) 4 Bolt Magneto (4) 4 Bolt Square (H4) 1.0" Keyed (C) 25mm Keyed (A) 1.0' 6T Spline

More information

38 47995529 威 福 髮 藝 店 桃 園 市 蘆 竹 區 中 山 里 福 祿 一 街 48 號 地 下 一 樓 50,000 獨 資 李 依 純 105/04/06 府 經 登 字 第 1059003070 號 39 47995534 宏 品 餐 飲 桃 園 市 桃 園 區 信 光 里 民

38 47995529 威 福 髮 藝 店 桃 園 市 蘆 竹 區 中 山 里 福 祿 一 街 48 號 地 下 一 樓 50,000 獨 資 李 依 純 105/04/06 府 經 登 字 第 1059003070 號 39 47995534 宏 品 餐 飲 桃 園 市 桃 園 區 信 光 里 民 1 08414159 惠 鴻 眼 鏡 行 桃 園 市 中 壢 區 福 德 里 中 華 路 一 段 186 號 1 樓 30,000 獨 資 宋 耀 鴻 105/04/27 府 經 登 字 第 1059003866 號 2 17891110 承 元 冷 氣 空 調 工 程 行 桃 園 市 桃 園 區 中 德 里 國 際 路 1 段 98 巷 50 號 2 樓 之 4 200,000 獨 資 詹 安 平

More information

03 最 新 計 算 機 概 論 3-1 文 字 表 示 法 (multimedia) (text) (image) (audio) (video) (text) (bit pattern) 01010101 11111111 ASCII (American Standard Code for In

03 最 新 計 算 機 概 論 3-1 文 字 表 示 法 (multimedia) (text) (image) (audio) (video) (text) (bit pattern) 01010101 11111111 ASCII (American Standard Code for In 03 最 新 計 算 機 概 論 3-1 3-2 3-3 3-4 3-5 3-6 03 最 新 計 算 機 概 論 3-1 文 字 表 示 法 (multimedia) (text) (image) (audio) (video) (text) (bit pattern) 01010101 11111111 ASCII (American Standard Code for Information

More information

Guide to Install SATA Hard Disks

Guide to Install SATA Hard Disks SATA RAID 1. SATA. 2 1.1 SATA. 2 1.2 SATA 2 2. RAID (RAID 0 / RAID 1 / JBOD).. 4 2.1 RAID. 4 2.2 RAID 5 2.3 RAID 0 6 2.4 RAID 1.. 10 2.5 JBOD.. 16 3. Windows 2000 / Windows XP 20 1. SATA 1.1 SATA Serial

More information

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO Car DVD New GUI IR Flow User Manual V0.1 Jan 25, 2008 19, Innovation First Road Science Park Hsin-Chu Taiwan 300 R.O.C. Tel: 886-3-578-6005 Fax: 886-3-578-4418 Web: www.sunplus.com Important Notice SUNPLUS

More information

Microsoft Word - template.doc

Microsoft Word - template.doc HGC efax Service User Guide I. Getting Started Page 1 II. Fax Forward Page 2 4 III. Web Viewing Page 5 7 IV. General Management Page 8 12 V. Help Desk Page 13 VI. Logout Page 13 Page 0 I. Getting Started

More information

概述

概述 OPC Version 1.8 build 0925 KOCRDK Knight OPC Client Rapid Development Toolkits Knight Workgroup, eehoo Technology 2002-9 OPC 1...4 2 API...5 2.1...5 2.2...5 2.2.1 KOC_Init...5 2.2.2 KOC_Uninit...5 2.3...5

More information

OK dvp5990k_93_cs.indd :41:08

OK dvp5990k_93_cs.indd :41:08 56......... dvp5990k_93_cs.indd 56 2008-3-25 16:41:08 57............ OK............ dvp5990k_93_cs.indd 57 2008-3-25 16:41:08 58 dvp5990k_93_cs.indd 58 2008-3-25 16:41:09 DVD 1 2 3 4 5 6 7 8 9 a 1 f u

More information

Bus Hound 5

Bus Hound 5 Bus Hound 5.0 ( 1.0) 21IC 2007 7 BusHound perisoft PC hound Bus Hound 6.0 5.0 5.0 Bus Hound, IDE SCSI USB 1394 DVD Windows9X,WindowsMe,NT4.0,2000,2003,XP XP IRP Html ZIP SCSI sense USB Bus Hound 1 Bus

More information

Improved Preimage Attacks on AES-like Hash Functions: Applications to Whirlpool and Grøstl

Improved Preimage Attacks on AES-like Hash Functions: Applications to Whirlpool and Grøstl SKLOIS (Pseudo) Preimage Attack on Reduced-Round Grøstl Hash Function and Others Shuang Wu, Dengguo Feng, Wenling Wu, Jian Guo, Le Dong, Jian Zou March 20, 2012 Institute. of Software, Chinese Academy

More information

Gerolor Motors Series Dimensions A,B C T L L G1/2 M8 G1/ A 4 C H4 E

Gerolor Motors Series Dimensions A,B C T L L G1/2 M8 G1/ A 4 C H4 E Gerolor Motors Series Size CC-A Flange Options-B Shaft Options-C Ports Features 0 0 12 12 1 1 0 0 2 2 31 31 0 0 SAE A 2 Bolt - (2) 4 Bolt Magneto (4) 4 Bolt Square (H4) 1.0" Keyed (C) 2mm Keyed (A) 1.0'

More information

2009.05

2009.05 2009 05 2009.05 2009.05 璆 2009.05 1 亿 平 方 米 6 万 套 10 名 20 亿 元 5 个 月 30 万 亿 60 万 平 方 米 Data 围 观 CCDI 公 司 内 刊 企 业 版 P08 围 观 CCDI 管 理 学 上 有 句 名 言 : 做 正 确 的 事, 比 正 确 地 做 事 更 重 要 方 向 的 对 错 于 大 局 的 意 义 而 言,

More information

一量动…

一量动… 语 言 教 学 与 研 究,1998(3):102-113. 一 量 VP 的 语 法 语 义 特 点 李 宇 明 根 据 量 词 的 不 同, 一 量 VP 可 以 分 为 三 类 : (1) 畜 力 车, 哪 怕 是 牛 车, 竟 一 辆 没 有 ( 陈 冲 不 自 然 的 黑 色, 十 月 1989 年 6 期 34 (2) 一 刻 都 不 敢 离 开 你 呢 ( 小 牛 上 路 谣, 当 代

More information

TX-NR3030_BAS_Cs_ indd

TX-NR3030_BAS_Cs_ indd TX-NR3030 http://www.onkyo.com/manual/txnr3030/adv/cs.html Cs 1 2 3 Speaker Cable 2 HDMI OUT HDMI IN HDMI OUT HDMI OUT HDMI OUT HDMI OUT 1 DIGITAL OPTICAL OUT AUDIO OUT TV 3 1 5 4 6 1 2 3 3 2 2 4 3 2 5

More information

( CIP) /. :, ( ) ISBN TP CIP ( 2005) : : : : * : : 174 ( A ) : : ( 023) : ( 023)

( CIP) /. :, ( ) ISBN TP CIP ( 2005) : : : : * : : 174 ( A ) : : ( 023) : ( 023) ( CIP) /. :, 2005. 2 ( ) ISBN 7-5624-3339-9.......... TP311. 1 CIP ( 2005) 011794 : : : : * : : 174 ( A ) :400030 : ( 023) 65102378 65105781 : ( 023) 65103686 65105565 : http: / /www. cqup. com. cn : fxk@cqup.

More information

联 合 早 报 文 章 新 加 坡 的 经 验 其 实 不 复 杂, 但 要 学 过 来 却 不 容 易 新 加 坡 是 个 既 没 有 天 然 资 源 又 没 有 经 济 腹 地 的 岛 国, 面 积 只 有 700 平 方 公 里 这 个 小 岛 能 够 在 短 短 几 十 年 时 间 内 变

联 合 早 报 文 章 新 加 坡 的 经 验 其 实 不 复 杂, 但 要 学 过 来 却 不 容 易 新 加 坡 是 个 既 没 有 天 然 资 源 又 没 有 经 济 腹 地 的 岛 国, 面 积 只 有 700 平 方 公 里 这 个 小 岛 能 够 在 短 短 几 十 年 时 间 内 变 讲 师 聚 焦 陈 抗 : 新 加 坡 的 经 验 其 实 不 复 杂, 但 要 学 过 来 却 不 容 易 陈 抗 教 授 陈 抗 教 授 自 厦 门 大 学 毕 业 后 留 学 美 国, 获 得 俄 亥 俄 大 学 硕 士 学 位 和 马 里 兰 大 学 博 士 学 位 曾 经 任 职 于 世 界 银 行 以 及 新 加 坡 国 立 大 学 和 南 洋 理 工 大 学 ; 目 前 是 新 加 坡

More information

(Guangzhou) AIT Co, Ltd V 110V [ ]! 2

(Guangzhou) AIT Co, Ltd V 110V [ ]! 2 (Guangzhou) AIT Co, Ltd 020-84106666 020-84106688 http://wwwlenxcn Xi III Zebra XI III 1 (Guangzhou) AIT Co, Ltd 020-84106666 020-84106688 http://wwwlenxcn 230V 110V [ ]! 2 (Guangzhou) AIT Co, Ltd 020-84106666

More information

1 LINUX IDE Emacs gcc gdb Emacs + gcc + gdb IDE Emacs IDE C Emacs Emacs IDE ICE Integrated Computing Environment Emacs Unix Linux Emacs Emacs Emacs Un

1 LINUX IDE Emacs gcc gdb Emacs + gcc + gdb IDE Emacs IDE C Emacs Emacs IDE ICE Integrated Computing Environment Emacs Unix Linux Emacs Emacs Emacs Un Linux C July 27, 2016 Contents 1 Linux IDE 1 2 GCC 3 2.1 hello.c hello.exe........................... 5 2.2............................... 9 2.2.1 -Wall................................ 9 2.2.2 -E..................................

More information

AN INTRODUCTION TO PHYSICAL COMPUTING USING ARDUINO, GRASSHOPPER, AND FIREFLY (CHINESE EDITION ) INTERACTIVE PROTOTYPING

AN INTRODUCTION TO PHYSICAL COMPUTING USING ARDUINO, GRASSHOPPER, AND FIREFLY (CHINESE EDITION ) INTERACTIVE PROTOTYPING AN INTRODUCTION TO PHYSICAL COMPUTING USING ARDUINO, GRASSHOPPER, AND FIREFLY (CHINESE EDITION ) INTERACTIVE PROTOTYPING 前言 - Andrew Payne 目录 1 2 Firefly Basics 3 COMPONENT TOOLBOX 目录 4 RESOURCES 致谢

More information

Open topic Bellman-Ford算法与负环

Open topic   Bellman-Ford算法与负环 Open topic Bellman-Ford 2018 11 5 171860508@smail.nju.edu.cn 1/15 Contents 1. G s BF 2. BF 3. BF 2/15 BF G Bellman-Ford false 3/15 BF G Bellman-Ford false G c = v 0, v 1,..., v k (v 0 = v k ) k w(v i 1,

More information

6-7 6-8 6-9 Process Data flow Data store External entity 6-10 Context diagram Level 0 diagram Level 1 diagram Level 2 diagram 6-11 6-12

6-7 6-8 6-9 Process Data flow Data store External entity 6-10 Context diagram Level 0 diagram Level 1 diagram Level 2 diagram 6-11 6-12 6-1 6-2 6-3 6-4 6-5 6-6 6-7 6-8 6-9 Process Data flow Data store External entity 6-10 Context diagram Level 0 diagram Level 1 diagram Level 2 diagram 6-11 6-12 6-13 6-14 6-15 6-16 6-17 6-18 6-19 6-20 6-21

More information

Fun Time (1) What happens in memory? 1 i n t i ; 2 s h o r t j ; 3 double k ; 4 char c = a ; 5 i = 3; j = 2; 6 k = i j ; H.-T. Lin (NTU CSIE) Referenc

Fun Time (1) What happens in memory? 1 i n t i ; 2 s h o r t j ; 3 double k ; 4 char c = a ; 5 i = 3; j = 2; 6 k = i j ; H.-T. Lin (NTU CSIE) Referenc References (Section 5.2) Hsuan-Tien Lin Deptartment of CSIE, NTU OOP Class, March 15-16, 2010 H.-T. Lin (NTU CSIE) References OOP 03/15-16/2010 0 / 22 Fun Time (1) What happens in memory? 1 i n t i ; 2

More information

財金資訊-80期.indd

財金資訊-80期.indd IPv6 / LINE YouTube TCP/IP TCP (Transmission Control Protocol) IP (Internet Protocol) (node) (address) IPv4 168.95.1.1 IPv4 1981 RFC 791 --IP IPv4 32 2 32 42 IP (Internet Service Provider ISP) IP IP IPv4

More information

Microsoft PowerPoint - Performance Analysis of Video Streaming over LTE using.pptx

Microsoft PowerPoint - Performance Analysis of Video Streaming over LTE using.pptx ENSC 427 Communication Networks Spring 2016 Group #2 Project URL: http://www.sfu.ca/~rkieu/ensc427_project.html Amer, Zargham 301149920 Kieu, Ritchie 301149668 Xiao, Lei 301133381 1 Roadmap Introduction

More information

FY.DOC

FY.DOC 高 职 高 专 21 世 纪 规 划 教 材 C++ 程 序 设 计 邓 振 杰 主 编 贾 振 华 孟 庆 敏 副 主 编 人 民 邮 电 出 版 社 内 容 提 要 本 书 系 统 地 介 绍 C++ 语 言 的 基 本 概 念 基 本 语 法 和 编 程 方 法, 深 入 浅 出 地 讲 述 C++ 语 言 面 向 对 象 的 重 要 特 征 : 类 和 对 象 抽 象 封 装 继 承 等 主

More information

第 3 章 数 据 在 计 算 机 中 的 表 示 43 在 进 位 计 数 制 中 有 数 码 数 位 ( 位 置 ) 基 数 和 位 权 等 用 语 数 码 是 在 一 个 计 数 制 中 用 来 表 示 数 值 的 符 号 ; 数 位 是 指 数 码 在 一 个 数 中 所 处 的 位 置 ;

第 3 章 数 据 在 计 算 机 中 的 表 示 43 在 进 位 计 数 制 中 有 数 码 数 位 ( 位 置 ) 基 数 和 位 权 等 用 语 数 码 是 在 一 个 计 数 制 中 用 来 表 示 数 值 的 符 号 ; 数 位 是 指 数 码 在 一 个 数 中 所 处 的 位 置 ; 第 3 章 数 据 在 计 算 机 中 的 表 示 3.1 数 据 与 数 制 计 算 机 中 使 用 的 数 据 一 般 可 以 分 为 两 大 类 : 数 值 数 据 和 字 符 数 据 数 值 数 据 常 用 于 表 示 数 的 大 小 与 正 负 ; 字 符 数 据 则 用 于 表 示 非 数 值 的 信 息, 例 如 : 英 文 汉 字 图 形 和 语 音 等 数 据 数 据 在 计 算

More information

Microsoft Word - 11.doc

Microsoft Word - 11.doc 除 錯 技 巧 您 將 於 本 章 學 到 以 下 各 項 : 如 何 在 Visual C++ 2010 的 除 錯 工 具 控 制 下 執 行 程 式? 如 何 逐 步 地 執 行 程 式 的 敘 述? 如 何 監 看 或 改 變 程 式 中 的 變 數 值? 如 何 監 看 程 式 中 計 算 式 的 值? 何 謂 Call Stack? 何 謂 診 斷 器 (assertion)? 如 何

More information

72-P5986K-980B1

72-P5986K-980B1 ....64....65................ ............... 5cm (2.0") 10cm (4.0") 10cm (4.0") 5cm (2.0") ALL ALL ALL ALL ALL ALL 1 2 3 4 5 6 COMPONENT VIDEO IN S-VIDEO IN V (Pr/Cr) AUDIO OUT U (Pb/Cb) VIDEO IN Y COMPONENT

More information

C 1

C 1 C homepage: xpzhangme 2018 5 30 C 1 C min(x, y) double C // min c # include # include double min ( double x, double y); int main ( int argc, char * argv []) { double x, y; if( argc!=

More information

第一章

第一章 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1500 1450 1400 1350 1300 1250 1200 15 16 17 18 19 20 21 22 23 24 25 26 27 28 INPUT2006 29 30 31 32 33 34 35 9000 8500 8000 7500 7000 6500 6000 5500 5000 4500 4000 3500

More information

MPEG AVS AV AVS:JVT AVS

MPEG AVS AV AVS:JVT AVS AVS 2003 7 30 MPEG AVS AV AVS:JVT AVS HPA Customer site A HPA Customer site B Harmonic Enterprise 1 Customer site C / (MPEG, H26x, AVS) (ISMA) DVB DVD (S/C/T) (TCP/IP) MPEG MPEG VCD: MPEG-1(ISO/IEC 11172)

More information

A VALIDATION STUDY OF THE ACHIEVEMENT TEST OF TEACHING CHINESE AS THE SECOND LANGUAGE by Chen Wei A Thesis Submitted to the Graduate School and Colleg

A VALIDATION STUDY OF THE ACHIEVEMENT TEST OF TEACHING CHINESE AS THE SECOND LANGUAGE by Chen Wei A Thesis Submitted to the Graduate School and Colleg 上 海 外 国 语 大 学 SHANGHAI INTERNATIONAL STUDIES UNIVERSITY 硕 士 学 位 论 文 MASTER DISSERTATION 学 院 国 际 文 化 交 流 学 院 专 业 汉 语 国 际 教 育 硕 士 题 目 届 别 2010 届 学 生 陈 炜 导 师 张 艳 莉 副 教 授 日 期 2010 年 4 月 A VALIDATION STUDY

More information

RAQMON Context Setting MG PDA Applications RTP / FTP/ HTTP TCP/UDP S ignaling control plane (e.g. RS VP, NS IS) Streaming Media, Transaction, Bulk dat

RAQMON Context Setting MG PDA Applications RTP / FTP/ HTTP TCP/UDP S ignaling control plane (e.g. RS VP, NS IS) Streaming Media, Transaction, Bulk dat Realtime Application QOS Monitoring (RAQMON) Dan Romascanu dromasca@avaya.com 1 RAQMON Context Setting MG PDA Applications RTP / FTP/ HTTP TCP/UDP S ignaling control plane (e.g. RS VP, NS IS) Streaming

More information

Hi3518EV200 HD IP Camera SoC Hi3516A

Hi3518EV200 HD IP Camera SoC Hi3516A Hi3518EV200 HD IP Camera SoC Hi3516A - - - - www.lestina.com www.lestina.com.cn 59 60 www.lestina.com www.lestina.com.cn Hi3516CV200 HD IP Camera SoC www.lestina.com www.lestina.com.cn 61 62 www.lestina.com

More information

MAN- Metropolitan Area Network Resilient Packet Ring a : 5GHz 54Mbps b : 2.4GHz 11Mbps c : MAC Bridge 802.1D 80

MAN- Metropolitan Area Network Resilient Packet Ring a : 5GHz 54Mbps b : 2.4GHz 11Mbps c : MAC Bridge 802.1D 80 IEEE 802.11a s0323516@ncnu.edu.tw 1 (WLAN) [1] 1963 IEEE Institute Of Electrical and Electronics Engineers LAN MAN-Metropolitan Area Network IEEE 802 IEEE 802 Working Group 802.11 IEEE 802 802.1 LAN MAN

More information

龍華科技大學數位典藏論文

龍華科技大學數位典藏論文 龍 華 科 技 大 學 電 子 工 程 研 究 所 碩 士 學 位 論 文 使 用 FPGA 完 成 低 成 本 霍 夫 曼 碼 解 碼 器 Using FPGA Hardware Implementation of Huffman Decoder 研 究 生 : 周 文 正 指 導 教 授 : 吳 東 旭 博 士 中 華 民 國 九 十 九 年 七 月 摘 要 論 文 名 稱 : 使 用 FPGA

More information

PowerPoint Presentation

PowerPoint Presentation TOEFL Practice Online User Guide Revised September 2009 In This Guide General Tips for Using TOEFL Practice Online Directions for New Users Directions for Returning Users 2 General Tips To use TOEFL Practice

More information

untitled

untitled 1 5 IBM Intel 1. IBM 第 1/175 页 第 2/175 页 第 3/175 页 80 第 4/175 页 2. IBM 第 5/175 页 3. (1) 第 6/175 页 第 7/175 页 第 8/175 页 = = 第 9/175 页 = = = = = 第 10/175 页 = = = = = = = = 3. (2) 第 11/175 页 第 12/175 页 第 13/175

More information

13 根 据 各 种 网 络 商 务 信 息 对 不 同 用 户 所 产 生 的 使 用 效 用, 网 络 商 务 信 息 大 致 可 分 为 四 级, 其 中 占 比 重 最 大 的 是 ( A ) A 第 一 级 免 费 信 息 B 第 二 级 低 收 费 信 息 C 第 三 级 标 准 收 费

13 根 据 各 种 网 络 商 务 信 息 对 不 同 用 户 所 产 生 的 使 用 效 用, 网 络 商 务 信 息 大 致 可 分 为 四 级, 其 中 占 比 重 最 大 的 是 ( A ) A 第 一 级 免 费 信 息 B 第 二 级 低 收 费 信 息 C 第 三 级 标 准 收 费 助 理 电 子 商 务 考 试 真 题 试 题 第 一 部 分 : 理 论 部 分 一 单 项 选 择 题 1 ( B ) 是 信 息 系 统 的 核 心 组 成 部 分 A 逻 辑 模 型 B 数 据 库 C 概 念 模 型 D 以 上 全 部 2 ping www.163.com -t 中 参 数 t 的 作 用 是 :( A ) A 进 行 连 续 测 试 B 在 新 窗 口 中 显 示 C

More information

0000001

0000001 烟 台 市 综 合 实 践 教 育 研 究 室 文 件 烟 教 实 研 发 2016 4 号 烟 台 市 综 合 实 践 教 育 研 究 室 关 于 公 布 第 二 届 全 市 中 小 学 综 合 实 践 活 动 优 课 及 优 质 课 程 资 源 评 选 获 奖 名 单 的 通 知 各 县 市 区 教 体 局 教 研 室, 开 发 区 综 合 实 践 教 育 中 心, 高 新 区 教 育 办 公

More information

Microsoft PowerPoint - ch6 [相容模式]

Microsoft PowerPoint - ch6 [相容模式] UiBinder wzyang@asia.edu.tw UiBinder Java GWT UiBinder XML UI i18n (widget) 1 2 UiBinder HelloWidget.ui.xml: UI HelloWidgetBinder HelloWidget.java XML UI Owner class ( Composite ) UI XML UiBinder: Owner

More information

RUN_PC連載_10_.doc

RUN_PC連載_10_.doc PowerBuilder 8 (10) Jaguar CTS ASP Jaguar CTS PowerDynamo Jaguar CTS Microsoft ASP (Active Server Pages) ASP Jaguar CTS ASP Jaguar CTS ASP Jaguar CTS ASP Jaguar CTS ASP Jaguar CTS ASP Jaguar Server ASP

More information

K7VT2_QIG_v3

K7VT2_QIG_v3 ............ 1 2 3 4 5 [R] : Enter Raid setup utility 6 Press[A]keytocreateRAID RAID Type: JBOD RAID 0 RAID 1: 2 7 RAID 0 Auto Create Manual Create: 2 RAID 0 Block Size: 16K 32K

More information

untitled

untitled Lwip Swedish Institute of Computer Science February 20, 2001 Adam Dunkels adam@sics.se (QQ: 10205001) (QQ: 329147) (QQ:3232253) (QQ:3232253) QQ ARM TCPIP LCD10988210 LWIP TCP/IP LWIP LWIP lwip API lwip

More information

v1.0.cdr

v1.0.cdr V21C V21C 7 1. 2. 3. 4. 5. 6. 7. 8. 9. 1 2 3 4 5 6 7 8 9 4 1. 2. 3. SD/MMC 6 4. SD MMC SD MMC 5. 4 5 6 6 7 7 8 1. / 2. 3. 8 8 8 8 9 9 9 9 10 10 4. 11 11 12 12 12 2. 13 ~1~ 1. MENU/OK / MENU MENU 14 14

More information

The Development of Color Constancy and Calibration System

The Development of Color Constancy and Calibration System The Development of Color Constancy and Calibration System The Development of Color Constancy and Calibration System LabVIEW CCD BMP ii Abstract The modern technologies develop more and more faster, and

More information

資料HDR作1-03 HDR技術動向

資料HDR作1-03 HDR技術動向 作 1-3 TV Platform Div. TV Platform Div. FHD () more UHD UHD (BT.2020) [cd/m 2 ] 10 9 10 8 10 6 10 4 10 2 10 0 10-2 10-4 10-6 () ~10 5 [cd/m 2 ] 10 9 10 8 10 6 10 4 10 2 10 0 10-2 10-4 10-6 2014 XDR/XDR-Pro

More information

Microsoft Word - ²Ä158´Á«ß®v³q°T

Microsoft Word - ²Ä158´Á«ß®v³q°T 台 南 律 師 通 訊 第 158 期 發 行 人 : 吳 信 賢 出 版 者 : 台 南 律 師 通 訊 雜 誌 社 地 址 :708 台 南 市 健 康 路 三 段 三 0 八 號 ( 台 南 地 方 法 院 內 ) 電 話 :(06) 298-7373 傳 真 :(06) 298-8383 E-Mail:tnnbar@tnnbar.org.tw 網 址 :www.tnnbar.org.tw 本

More information

論故宮書畫的典藏、維護與數位化

論故宮書畫的典藏、維護與數位化 13,552-1 - Metadata - 2 - 1736-1795 1949 1 2 960-1279 321-379 1 8 10 933-993 岀 - 3 - 3 2 4-4 - Digital Archives 5 Metadata 2000 Digital Museum 2001 2002 6-5 - Metadata 2001 MAAT 7 Metadata 8 3 Metadata

More information

Microsoft Word - 三峽鎮衛生所_3_-張家宸.李永繁.doc

Microsoft Word - 三峽鎮衛生所_3_-張家宸.李永繁.doc 暑 期 社 區 醫 學 見 習 報 告 見 習 單 位 : 台 北 縣 三 峽 鎮 衛 生 所 見 習 日 期 :8/22~8/26 見 習 組 員 姓 名 ( 學 號 ):491940011 張 家 宸 491940499 李 永 繁 一 前 言 : 衛 生 所 是 推 行 公 共 衛 生 的 第 一 線, 也 是 最 基 層 的 醫 療 照 護 機 構, 尤 其 是 在 一 些 偏 遠 的 地

More information

Microsoft Word - 武漢大學交流營心得_黃莉云_.doc

Microsoft Word - 武漢大學交流營心得_黃莉云_.doc 武 漢 大 學 交 流 營 心 得 貿 三 丙 黃 莉 云 2010.7.11 懷 著 期 待 又 有 點 害 怕 的 心 情 踏 上 往 大 陸 的 旅 程, 這 是 我 人 生 頭 一 次 到 大 陸 去, 因 此 對 於 即 將 遇 上 的 事 物 和 人, 都 抱 著 非 常 好 奇 和 冒 險 的 心 態, 加 上 說 明 會 得 知 我 們 是 要 自 己 搭 飛 機 過 去 到 武 漢

More information

AL-M200 Series

AL-M200 Series NPD4754-00 TC ( ) Windows 7 1. [Start ( )] [Control Panel ()] [Network and Internet ( )] 2. [Network and Sharing Center ( )] 3. [Change adapter settings ( )] 4. 3 Windows XP 1. [Start ( )] [Control Panel

More information

<4D6963726F736F667420576F7264202D20B1B1BEA9B1A9B7E7BFC6BCBCB9C9B7DDD3D0CFDEB9ABCBBECAD7B4CEB9ABBFAAB7A2D0D0B2A2D4DAB4B4D2B5B0E5C9CFCAD0D5D0B9C9CBB5C3F7CAE9A3A8C9EAB1A8B8E532303134C4EA3132D4C23233C8D5B1A8CBCDA3A92E646F63>

<4D6963726F736F667420576F7264202D20B1B1BEA9B1A9B7E7BFC6BCBCB9C9B7DDD3D0CFDEB9ABCBBECAD7B4CEB9ABBFAAB7A2D0D0B2A2D4DAB4B4D2B5B0E5C9CFCAD0D5D0B9C9CBB5C3F7CAE9A3A8C9EAB1A8B8E532303134C4EA3132D4C23233C8D5B1A8CBCDA3A92E646F63> 本 公 司 本 次 股 票 发 行 后 拟 在 创 业 板 市 场 上 市, 该 市 场 具 有 较 高 的 投 资 风 险 创 业 板 公 司 具 有 业 绩 不 稳 定 经 营 风 险 高 退 市 风 险 大 等 特 点, 投 资 者 面 临 较 大 的 市 场 风 险 投 资 者 应 充 分 了 解 创 业 板 市 场 的 投 资 风 险 及 本 公 司 所 披 露 的 风 险 因 素, 审

More information

<4D6963726F736F667420576F7264202D20C8EDC9E82DCFC2CEE7CCE22D3039C9CF>

<4D6963726F736F667420576F7264202D20C8EDC9E82DCFC2CEE7CCE22D3039C9CF> 全 国 计 算 机 技 术 与 软 件 专 业 技 术 资 格 ( 水 平 考 试 2009 年 上 半 年 软 件 设 计 师 下 午 试 卷 ( 考 试 时 间 14:00~16:30 共 150 分 钟 请 按 下 述 要 求 正 确 填 写 答 题 纸 1. 在 答 题 纸 的 指 定 位 置 填 写 你 所 在 的 省 自 治 区 直 辖 市 计 划 单 列 市 的 名 称 2. 在 答

More information

(Pattern Recognition) 1 1. CCD

(Pattern Recognition) 1 1. CCD ********************************* ********************************* (Pattern Recognition) 1 1. CCD 2. 3. 4. 1 ABSTRACT KeywordsMachine Vision, Real Time Inspection, Image Processing The purpose of this

More information

CH01.indd

CH01.indd 3D ios Android Windows 10 App Apple icloud Google Wi-Fi 4G 1 ( 3D ) 2 3 4 5 CPU / / 2 6 App UNIX OS X Windows Linux (ios Android Windows 8/8.1/10 BlackBerry OS) 7 ( ZigBee UWB) (IEEE 802.11/a/b/g/n/ad/ac

More information

<4D F736F F D20D5D0B9C9CBB5C3F7CAE95FB4FDCCE6BBBBB7E2C3E6BACDC7A9D7D6D2B35F636C65616E>

<4D F736F F D20D5D0B9C9CBB5C3F7CAE95FB4FDCCE6BBBBB7E2C3E6BACDC7A9D7D6D2B35F636C65616E> 本 公 司 本 次 股 票 发 行 后 拟 在 创 业 板 市 场 上 市, 该 市 场 具 有 较 高 的 投 资 风 险 创 业 板 公 司 具 有 业 绩 不 稳 定 经 营 风 险 高 退 市 风 险 大 等 特 点, 投 资 者 面 临 较 大 的 市 场 风 险 投 资 者 应 充 分 了 解 创 业 板 市 场 的 投 资 风 险 及 本 公 司 所 披 露 的 风 险 因 素, 审

More information

OK dvp3266k_93_cs.indd :43:44

OK dvp3266k_93_cs.indd :43:44 52........... dvp3266k_93_cs.indd 52 2008-3-27 9:43:43 53............... OK.................. dvp3266k_93_cs.indd 53 2008-3-27 9:43:44 54 dvp3266k_93_cs.indd 54 2008-3-27 9:43:44 DVD 8 9 10 a sdbn f plpuseu

More information

SHIMPO_表1-表4

SHIMPO_表1-表4 For servo motor ABLEREDUCER SSeries Coaxial shaft series Features S series Standard backlash is 3 arc-min, ideal for precision control. High rigidity & high torque were achived by uncaged needle roller

More information

1 A H (8625) (8625)

1 A H (8625) (8625) 2017 1 2 3 4 5 2017 12 31 913,838,529 10 0.70 63,968,697.03 1 1 A 600775 H 00553 7 7 (8625) 84801144 (8625) 84801144 dms@panda.cn dms@panda.cn 2 2.1 2 2.2 2.3 2017 2017 13.8% 4.5 7.1 7.5% 13.7% 2017 12

More information

untitled

untitled 3 C++ 3.1 3.2 3.3 3.4 new delete 3.5 this 3.6 3.7 3.1 3.1 class struct union struct union C class C++ C++ 3.1 3.1 #include struct STRING { typedef char *CHARPTR; // CHARPTR s; // int strlen(

More information

chap07.key

chap07.key #include void two(); void three(); int main() printf("i'm in main.\n"); two(); return 0; void two() printf("i'm in two.\n"); three(); void three() printf("i'm in three.\n"); void, int 标识符逗号分隔,

More information

dvp3258_93_cs.indd :35:27

dvp3258_93_cs.indd :35:27 50...... dvp3258_93_cs.indd 50 2008-3-27 13:35:26 51...... 74...75... 75 dvp3258_93_cs.indd 51 2008-3-27 13:35:27 52 dvp3258_93_cs.indd 52 2008-3-27 13:35:27 DVD 1 2 3 4 5 6 7 8 a STANDBY-ON f PLAY/PAUSE

More information

SHIMPO_表1-表4

SHIMPO_表1-表4 For servo motor ABLEREDUCER L Series Features Coaxial shaft series L series Helical gears contribute to reduce vibration and noise. Standard backlash is 5 arc-min, ideal for precision control. High rigidity

More information

C o n t e n t s...7... 15 1. Acceptance... 17 2. Allow Love... 19 3. Apologize... 21 4. Archangel Metatron... 23 5. Archangel Michael... 25 6. Ask for

C o n t e n t s...7... 15 1. Acceptance... 17 2. Allow Love... 19 3. Apologize... 21 4. Archangel Metatron... 23 5. Archangel Michael... 25 6. Ask for Doreen Virtue, Ph.D. Charles Virtue C o n t e n t s...7... 15 1. Acceptance... 17 2. Allow Love... 19 3. Apologize... 21 4. Archangel Metatron... 23 5. Archangel Michael... 25 6. Ask for a Sign... 27 7.

More information

高雄市左營國民小學八十九學年度第一學期一年級總體課程教學進度表

高雄市左營國民小學八十九學年度第一學期一年級總體課程教學進度表 高 雄 市 前 鎮 區 紅 毛 港 國 民 小 學 102 學 年 度 第 1 學 期 ( 五 ) 年 級 各 領 域 教 學 進 度 總 表 教 學 者 :( 五 ) 年 級 教 學 團 隊 彈 性 學 習 時 數 -5 節 班 級 活 動 週 別 日 期 一 0830-0901 二 0902-0908 三 0909-0915 四 0916-0922 五 0923-0929 學 校 活 動 學 年

More information

ebook50-11

ebook50-11 11 Wi n d o w s C A D 53 M F C 54 55 56 57 58 M F C 11.1 53 11-1 11-1 MFC M F C C D C Wi n d o w s Wi n d o w s 4 11 199 1. 1) W M _ PA I N T p W n d C W n d C D C * p D C = p W n d GetDC( ); 2) p W n

More information

How to Debug Tuxedo Server printf( Input data is: %s, inputstr); fprintf(stdout, Input data is %s, inputstr); fprintf(stderr, Input data is %s, inputstr); printf( Return data is: %s, outputstr); tpreturn(tpsuccess,

More information

SLC SLC V V

SLC SLC V V SLC-2000A/B 0755 26055191 26068286 0755 26068385 26068586 2 1-1 2 1-2 2 1-3 2 1-4 3 4 2-1 SLC-2000 4 2-1-1 4 2-1-2 4 2-2 SLC-2000 5 2-2-1 12V 5 2-2-2 220V 6 7 3-1 7 3-2 8 4-1 9 4-2 9 4-3 10 11 5-1 11 5-2

More information

影視後製全攻略 Premiere Pro After Effects Encore 自序 Adobe Premiere Pro After Effects Encore 2008 Adobe CS Adobe CS5 Adobe CS4 Premiere Pro After Effect

影視後製全攻略 Premiere Pro After Effects Encore 自序 Adobe Premiere Pro After Effects Encore 2008 Adobe CS Adobe CS5 Adobe CS4 Premiere Pro After Effect 自序 Adobe Premiere Pro After Effects Encore 2008 Adobe CS3 2010 Adobe CS5 Adobe CS4 Premiere Pro After Effects Encore 18 ii Tony Cathy 2010/8 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 iii Premiere

More information

untitled

untitled 1 1. 1 1. 1. 1 image I(x,y,z,t) object to image 1. 1. 2 1 X Rays, Gamma-Rays, X Rays CT 1. 1. 3 INPUT Processing OUTPUT 1. 1. 4 Anolog Image Processing 2 25 / 1. 1. 5 Digital Image Processing Digitizing,

More information

<4D6963726F736F667420506F776572506F696E74202D2030342DA578C657B27BA6E6ABD8BF76B5B2BA63A475B57BAABABADEB27AA8EEABD7BB50A7EFB669ABD8C4B32DBDB2A7D3B4AD2E707074205BACDBAE65BCD2A6A15D>

<4D6963726F736F667420506F776572506F696E74202D2030342DA578C657B27BA6E6ABD8BF76B5B2BA63A475B57BAABABADEB27AA8EEABD7BB50A7EFB669ABD8C4B32DBDB2A7D3B4AD2E707074205BACDBAE65BCD2A6A15D> 台 灣 現 行 建 築 結 構 工 程 的 管 理 制 度 與 改 進 建 議 中 華 民 國 結 構 工 程 技 師 公 會 全 國 聯 合 會 理 事 長 蔡 榮 根 宏 道 法 律 事 務 所 主 持 律 師 蔡 志 揚 建 造 執 照 結 構 審 查 法 制 民 國 60 年 65 年 73 年 建 築 法 第 34 條 主 管 建 築 機 關 審 查 工 程 圖 樣 計 算 書 說 明 書

More information

Microsoft Word - Learn Objective-C.doc

Microsoft Word - Learn Objective-C.doc Learn Objective C http://cocoadevcentral.com/d/learn_objectivec/ Objective C Objective C Mac C Objective CC C Scott Stevenson [object method]; [object methodwithinput:input]; output = [object methodwithoutput];

More information

Microsoft Word - PHP7Ch01.docx

Microsoft Word - PHP7Ch01.docx PHP 01 1-6 PHP PHP HTML HTML PHP CSSJavaScript PHP PHP 1-6-1 PHP HTML PHP HTML 1. Notepad++ \ch01\hello.php 01: 02: 03: 04: 05: PHP 06:

More information

States and capital package

States and capital package : 1 Students are required to know 50 states and capitals and their geological locations. This is an independent working packet to learn about 50 states and capital. Students are asked to fulfill 4 activities

More information

epub 33-8

epub 33-8 8 1) 2) 3) A S C I I 4 C I / O I / 8.1 8.1.1 1. ANSI C F I L E s t d i o. h typedef struct i n t _ f d ; i n t _ c l e f t ; i n t _ m o d e ; c h a r *_ n e x t ; char *_buff; /* /* /* /* /* 1 5 4 C FILE

More information

014315 市 立 永 平 高 中 無 填 報 無 填 報 (02)22319670 014322 市 立 樹 林 高 中 已 填 報 已 填 報 (02)86852011 014326 市 立 明 德 高 中 已 填 報 (02)26723302 014332 市 立 秀 峰 高 中 已 填 報

014315 市 立 永 平 高 中 無 填 報 無 填 報 (02)22319670 014322 市 立 樹 林 高 中 已 填 報 已 填 報 (02)86852011 014326 市 立 明 德 高 中 已 填 報 (02)26723302 014332 市 立 秀 峰 高 中 已 填 報 加 總 - 人 數 每 位 填 報 人 只 能 填 一 種 學 制 欄 標 籤 列 標 籤 高 級 中 學 進 修 學 校 010301 國 立 華 僑 高 級 中 等 學 校 無 填 報 已 填 報 (02)29684131 011301 私 立 淡 江 高 中 無 填 報 已 填 報 (02)26203850 011302 私 立 康 橋 高 中 已 填 報 (02)22166000 011306

More information

2. 禁 止 母 乳 代 用 品 之 促 銷 活 動, 以 及 不 得 以 贊 助 試 用 或 免 費 等 方 式, 取 得 奶 瓶 及 安 撫 奶 嘴 認 證 說 明 以 贊 助 試 用 或 免 費 等 方 式, 取 得 奶 瓶 及 安 撫 奶 嘴, 並 在 婦 產 科 門 診 兒 科 門 診 產

2. 禁 止 母 乳 代 用 品 之 促 銷 活 動, 以 及 不 得 以 贊 助 試 用 或 免 費 等 方 式, 取 得 奶 瓶 及 安 撫 奶 嘴 認 證 說 明 以 贊 助 試 用 或 免 費 等 方 式, 取 得 奶 瓶 及 安 撫 奶 嘴, 並 在 婦 產 科 門 診 兒 科 門 診 產 104 年 母 嬰 親 善 醫 療 院 所 認 證 基 準 及 評 分 說 明 ( 調 整 對 照 表 ) 認 證 說 明 措 施 一 : 明 訂 及 公 告 明 確 的 支 持 哺 餵 母 乳 政 策 (8 分 ) ( 一 ) 醫 療 院 所 成 立 母 嬰 親 善 推 動 委 員 會, 由 副 院 長 級 以 上 人 員 擔 任 主 任 委 員, 並 定 期 召 開 會 議, 評 估 醫 療 院

More information

IEC 传输帧格式

IEC 传输帧格式 IEC 60870-5-1 GB GB/T XXXXX XXXX idt IEC 60870-5-1:1990 Telecontrol Equipment and Systems Part 5:Transmission Protocol Section 1: Transmission frame formats ( ) 1998.6.28 2000.2.10 2000.5.7 200x-xx-xx

More information

chp6.ppt

chp6.ppt Java 软 件 设 计 基 础 6. 异 常 处 理 编 程 时 会 遇 到 如 下 三 种 错 误 : 语 法 错 误 (syntax error) 没 有 遵 循 语 言 的 规 则, 出 现 语 法 格 式 上 的 错 误, 可 被 编 译 器 发 现 并 易 于 纠 正 ; 逻 辑 错 误 (logic error) 即 我 们 常 说 的 bug, 意 指 编 写 的 代 码 在 执 行

More information

第11章 可调内核参数

第11章 可调内核参数 11 11 Unix BSD 4.4 Linux sysctl Unix Linux /proc window /proc /proc/sys /proc/sys sysctl Unix root /proc/sys/vm root /proc/sys sysctl /proc/sys struct ctl_table 18274 struct ctl_tables /proc/sys struct

More information

目 录 第 一 部 分 档 案 局 概 况 一 主 要 职 责 二 部 门 决 算 单 位 构 成 第 二 部 分 档 案 局 2016 年 度 部 门 预 算 表 一 2016 年 度 市 级 部 门 收 支 预 算 总 表 二 2016 年 度 市 级 部 门 支 出 预 算 表 三 2016

目 录 第 一 部 分 档 案 局 概 况 一 主 要 职 责 二 部 门 决 算 单 位 构 成 第 二 部 分 档 案 局 2016 年 度 部 门 预 算 表 一 2016 年 度 市 级 部 门 收 支 预 算 总 表 二 2016 年 度 市 级 部 门 支 出 预 算 表 三 2016 档 案 局 2016 年 度 部 门 预 算 1 目 录 第 一 部 分 档 案 局 概 况 一 主 要 职 责 二 部 门 决 算 单 位 构 成 第 二 部 分 档 案 局 2016 年 度 部 门 预 算 表 一 2016 年 度 市 级 部 门 收 支 预 算 总 表 二 2016 年 度 市 级 部 门 支 出 预 算 表 三 2016 年 度 市 级 部 门 财 政 拨 款 支 出 预

More information

2015 年 度 收 入 支 出 决 算 总 表 单 位 名 称 : 北 京 市 朝 阳 区 卫 生 局 单 位 : 万 元 收 入 支 出 项 目 决 算 数 项 目 ( 按 功 能 分 类 ) 决 算 数 一 财 政 拨 款 168738.36 一 一 般 公 共 服 务 支 出 53.83 二

2015 年 度 收 入 支 出 决 算 总 表 单 位 名 称 : 北 京 市 朝 阳 区 卫 生 局 单 位 : 万 元 收 入 支 出 项 目 决 算 数 项 目 ( 按 功 能 分 类 ) 决 算 数 一 财 政 拨 款 168738.36 一 一 般 公 共 服 务 支 出 53.83 二 2015 年 度 部 门 决 算 报 表 ( 含 三 公 经 费 决 算 ) 2015 年 度 收 入 支 出 决 算 总 表 单 位 名 称 : 北 京 市 朝 阳 区 卫 生 局 单 位 : 万 元 收 入 支 出 项 目 决 算 数 项 目 ( 按 功 能 分 类 ) 决 算 数 一 财 政 拨 款 168738.36 一 一 般 公 共 服 务 支 出 53.83 二 上 级 补 助 收 入

More information

1.ai

1.ai HDMI camera ARTRAY CO,. LTD Introduction Thank you for purchasing the ARTCAM HDMI camera series. This manual shows the direction how to use the viewer software. Please refer other instructions or contact

More information