OpenCV & Custom Boards.

Size: px
Start display at page:

Download "OpenCV & Custom Boards."

Transcription

1 OpenCV & Custm Bards. Cncurrent Cmputer Crpratin. Prfessinal Service Dept. Cncurrent Cmputer Crpratin 2013/5/15 1

2 PEX Channel NTSC Frame Grabber PCI Express Prduct Cncurrent Cmputer Crpratin 2013/5/15 2

3 VCC F22V39APCL VCC-F22V39APCL is a high-reslutin industrial clr digital vide camera mdule utilizing a 1/3 type PS IT CCD. 330K CCD image sensr with n-chip micr-lenses realizes high sensitivity and high reslutin. At Full Frame Scan Mde, entire pixels can be read ut within apprx. 1/120s. Interface f F22V39APCL cmplies with camera link standard. Cncurrent Cmputer Crpratin 2013/5/15 3

4 VCC F22V39APCL Key Features Either PCL r PCL-Lite interface utput can be selectable. Camera settings can be changed via serial cmmunicatins. Selectable RGB and RAW 8 bit r 10 bit. 1/120~1/100,000s shutter speeds can be set per 1H. Full frame scan mde and three different partial scan mdes are available. Apprx. 120 fps at full frame scan mde. Only 29mm cubic in size (excluding prjectin), light weight 50g, and speed makes it a best match fr use in embedded systems. Cncurrent Cmputer Crpratin 2013/5/15 4

5 APX 3312 CameraLink I/F Cncurrent Cmputer Crpratin 2013/5/15 5

6 Mdel Supprted Cameras APX 3312 Specificatin APX 3312 CameraLink Mnchrme/Clr camera Area/Line scan camera PCL Safe Pwer mde Acquisitin I/F: CameraLink Base Cnfiguratin 2ch Sampling Clck 85MHz(MAX)24bit(MAX) Image Input Frmats RGB clr: 24bit Mnchrme: 8/10/12bit(1/2TAP) *1 Synchrnus Output (Camera cntrl signals) Synchrnus Input Encder CC1 t CC4 GPOUT 2ch asynchrnus External trigger (TTL/Open cllectr/differential signal RS 422) RS 422(Line driver) A/B/Z phase 1MHz(MAX) 32 bit cunter, 32 bit/16 bit cmparatr (each ne set ) (Generates image capture trigger when cmparatr matched) Cncurrent Cmputer Crpratin 2013/5/15 6

7 APX 3312 Specificatin Cnt. GPIN Memry Other Functins TTL/Open cllectr 128MByte Serial cmmunicatin fr camera cntrl(virtual COM) System Bus PCI Express 1.0a Gen1(2.5GT/s) 4 lane *2 Pwer Requirements +12V 0.9A *3 Envirnment Operating temperature: 0 t 50 Humidity: 35% t 85% (nn cndensing) Dimensin OS Sftware(Optin) 168mm 112mm, Panel width 20mm (nn prjectin) WindwsXP/Vista/7 (32/64bit) r linux (32/64bit) Develpment kit: SDK AcapLib2 Cncurrent Cmputer Crpratin 2013/5/15 7

8 Summary ID Interface Pixel Clck Ch r Size PCL e.t.c. PEX #0 NTSC MHz 5(multiplex) 640x x240 32bit DMA 30 Hz APX 3312 #0 Camera Link Base 85 MHz (max) 2 Yes 64Bit DMA Nrmal F22V39 Camera Link 1Tap Base MHz 640x480 1Tap APCL: Yes CL: N 120 Hz PCL : Pwer ver Camera Link Cncurrent Cmputer Crpratin 2013/5/15 8

9 Perfrmance APX 3312,3313,3318 Camera PEX Camera Camera On Bard Memry 32bits DMA Reserved Memry 32bits DMA On Bard Memry 64bits DMA User Buffer memcpy() memcpy() User Buffer User Buffer H i S p e e d Nt Supprt Cncurrent Cmputer Crpratin 2013/5/15 9

10 OpenCV OpenCV (Open Surce Cmputer Visin) is a library f prgramming functins fr real time cmputer visin. OpenCV is released under a BSD license and hence it s free fr bth academic and cmmercial use. It has C++, C, Pythn and Java interfaces and supprts Windws, Linux, Mac OS, ios and Andrid. OpenCV was designed fr cmputatinal efficiency and with a strng fcus n real-time applicatins. Written in ptimized C/C++, the library can take advantage f multi-cre prcessing. Adpted all arund the wrld, OpenCV has mre than 47 thusand peple f user cmmunity and estimated number f dwnlads exceeding 5.5 millin. Usage ranges frm interactive art, t mines inspectin, stitching maps n the web r thrugh advanced rbtics. Cncurrent Cmputer Crpratin 2013/5/15 10

11 OpenCV dcumentatin Welcme t pencv dcumentatin! OpenCV API Reference Intrductin cre. The Cre Functinality imgprc. Image Prcessing highgui. High-level GUI and Media I/O vide. Vide Analysis calib3d. Camera Calibratin and 3D Recnstructin features2d. 2D Features Framewrk bjdetect. Object Detectin ml. Machine Learning flann. Clustering and Search in Multi-Dimensinal Spaces gpu. GPU-accelerated Cmputer Visin pht. Cmputatinal Phtgraphy stitching. Images stitching nnfree. Nn-free functinality cntrib. Cntributed/Experimental Stuff legacy. Deprecated stuff cl. OpenCL-accelerated Cmputer Visin OpenCV4Andrid Reference Andrid OpenCV Manager Java API OpenCV User Guide Operatins with images Features2d HighGUI Cascade Classifier Training OpenCV Tutrials Cncurrent Cmputer Crpratin 2013/5/15 11

12 High level GUI and Media I/O Add 4 Bards Interface INTEFACE PEX NTSC signal Input AVAL DATA APX-3312 (PCL) APX-3313 (Nt PCL) APX-3318 (Nt PCL) Tested 2 Camera Link Device VCC-F22V39APCL(PCL) with AVALDATA APX3312&3313 IMPERX DVICL (nt PCL) AVALDATA APX3312&3313 VGA,XGA, Cncurrent Cmputer Crpratin 2013/5/15 12

13 OpenCV s Structure High level GUI and Media I/O Class library APX library PEX library OpenCV Appricatins OpenCV library Other Class library Other OpenCV Class library Cncurrent Cmputer Crpratin 2013/5/15 13

14 OpenCV : Example0 #include <cv.h> #include <highgui.h> using namespace cv; int main (int argc, char **argv) { cnst duble WIDTH = 640; cnst duble HEIGHT = 480; cnst int CAMERANUM = CV_CAP_AVALDATA3312+0; CvCapture *capture = NULL; IplImage *frame = 0; int ch; CV_CAP_AVALDATA // #0 fr F22V39APC CV_CAP_AVALDATA // #1 fr DVI CL VGA CV_CAP_PEX // fr NTSC capture = cvcreatecameracapture(cameranum); cvsetcaptureprperty (capture, CV_CAP_PROP_FRAME_WIDTH, WIDTH); cvsetcaptureprperty (capture, CV_CAP_PROP_FRAME_HEIGHT, HEIGHT); namedwindw ("Capture", CV_WINDOW_AUTOSIZE CV_WINDOW_FREERATIO); while (1) { frame = cvqueryframe (capture); cvshwimage ("Capture", frame); ch = cvwaitkey ( 5 ); if (ch == ' x1b') { break; } } cvreleasecapture (&capture); cvdestrywindw ("Capture"); return 0; } Display Speed (Hz) Cncurrent Cmputer Crpratin 2013/5/15 14

15 OpenCV:Makefile OPTIMIZE = -O4 CCFLAGS = $(OPTIMIZE) -I/usr/lcal/include/pencv2 -I/usr/lcal/include/pencv LDFLAGS = -L/usr/lcal/lib LDLIBS = -lpencv_highgui -lpencv_cre EX0 all: TEMPFILES EX0_SRC $(EX0): clean:: ### ex1.: = ex0 $(EX0) = cre cre.* *. = ex0.cc g++ $(CCFLAGS) $(LDFLAGS) - $@ $(EX0_SRC) $(LDLIBS) rm -f $(EX0) ex1.cc Cncurrent Cmputer Crpratin 2013/5/15 15

16 Supprt Capture Prperty Only Size cvsetcaptureprperty (capture, CV_CAP_PROP_FRAME_WIDTH, WIDTH); cvsetcaptureprperty (capture, CV_CAP_PROP_FRAME_HEIGHT, HEIGHT); WIDTH, HEIGHT 320,240 r 640,480 r 1024x768 Default 640x480 Cncurrent Cmputer Crpratin 2013/5/15 16

17 Image file read & display #include <cv.h> #include <highgui.h> using namespace cv; int main( int argc, char** argv ) { Mat rgb; rgb = imread( "/usr/lcal/opencv-2.4.3/samples/c/fruits.jpg", /* 3-channel clr image */ 1 ); namedwindw( "Display Image", CV_WINDOW_AUTOSIZE CV_WINDOW_FREERATIO ); imshw( "Display Image", rgb ); waitkey(0); return 0; } Cncurrent Cmputer Crpratin 2013/5/15 17

18 Cnversin in the gray scale picture f a clr image #include <cv.h> #include <highgui.h> using namespace cv; int main( int argc, char** argv ) { Mat rgb, gray; rgb = imread( "/usr/lcal/opencv-2.4.3/samples/c/fruits.jpg", /* 3-channel clr image */ 1 ); cvtclr(rgb, gray, CV_BGR2GRAY); namedwindw( "Display Image", CV_WINDOW_AUTOSIZE CV_WINDOW_FREERATIO ); imshw( "Display Image", gray ); waitkey(0); return 0; } Cncurrent Cmputer Crpratin 2013/5/15 18

19 Mrphlgic peratin using a structural element. r - use rectangle structuring element Cncurrent Cmputer Crpratin 2013/5/15 19

20 Cnt. e - use elliptic structuring element Cncurrent Cmputer Crpratin 2013/5/15 20

21 Cnt. c - use crss-shaped structuring element Cncurrent Cmputer Crpratin 2013/5/15 21

22 Maximal External Regins interest pint detect. Cncurrent Cmputer Crpratin 2013/5/15 22

23 Camera Input Dynamic Display & Optical Flw. This prgram demnstrate dense Farneback ptical flw. It read frm camera 0, and shws hw t use and display dense Franeback ptical flw Cncurrent Cmputer Crpratin 2013/5/15 23

24 Camera Cnfiguratin file /usr/lcal/share/avaldata apx ch0.ini Linked VCC-F22V39APCL.ini apx ch1.ini Linked VGA.ini Cncurrent Cmputer Crpratin 2013/5/15 24

25 Other Sample Prgrams Device library Direct call /usr/lcal/acplib2/sample_x/sample_x.c /usr/lcal/cnc/drivers/pex530215/util/pex530215_example.c Real time example prgram /hme/prgram/* Cncurrent Cmputer Crpratin 2013/5/15 25

26 Easy tunings run b0 u0 all user0 prcess assigned by CPU 0 run b0 g0 all grup0 prcess assigned by CPU 0 shield a 1-11 all IRQ, Lcal Interrupt, Daemn assigned by CPU 0 run b 1-11 s fif(rr) P 99 realtime_prcess mre tunings.( IRQ assigned by CPU X) ech 2 > /prc/irq/*/smp_affinity 1 is CPU0 2 is CPU1 : IRQ Number Cncurrent Cmputer Crpratin 2013/5/15 26

27 Traffics VCC-F22V39APCL.ini 640x480x4(bytes)x120Hz = Mbytes/sec 120Hz VGA 640x480x4(bytes)x 60Hz = Mbytes/sec 60Hz NTSC( Interlace ) 640x480x4(bytes)x 30Hz = Mbytes/sec 320Hz All Interrupts Assigned by CPU 0 Ttal Mbytes/sec 2 mre than 500Hz Interrupts Camera VGA Main memry Nvidia NTSC Cncurrent Cmputer Crpratin 2013/5/15 27

28 Remark APX 3312(3threads/Prcess) Camera On Bard Memry 64bitsAddres DMA OpenCV Buffer PEX (1thread/Prcess) Camera Scramnet On Bard Memry 32bitsAddress DMA 32bitsAddress DMA Reserved Memry 64bitsAddress memcpy() Reserved Memry 64bitsAddress memcpy() OpenCV Buffer Only Supprt SimWB 4MB/sec 64bitsAddress memcpy() User Buffer S i m W B Cncurrent Cmputer Crpratin 2013/5/15 28

29 Thanks. Questins? Cncurrent Cmputer Crpratin 2013/5/15 29

PCI Multiple I/O Host Adapter 1. Introduction

PCI Multiple I/O Host Adapter 1. Introduction PCI Multiple I/O Hst Adapter 1. Intrductin This PCI Hst Adapter is a PCI cntrller bard which can upgrade yur desktp cmputer t have Multiple RS232 (UART) prts. This Lw Prfile Frm factr can supprt Lw prfile

More information

SBC8140 single board computer

SBC8140 single board computer SBC8140 single bard cmputer Order#: SBC8410 (T6010245 / T6010246) The SBC8140 is anther Single Bard Cmputer designed by Embest using Mini8510 prcessr card as the CPU cre bard. The bard is specially targeting

More information

RELEASE NOTES FOR PHOTOMESH 7.3.1

RELEASE NOTES FOR PHOTOMESH 7.3.1 RELEASE NOTES FOR PHOTOMESH 7.3.1 Abut PhtMesh Skyline s PhtMesh fully autmates the generatin f high-reslutin, textured, 3D mesh mdels frm standard 2D phtgraphs, ffering a significant reductin in cst and

More information

CONTROL-COMMAND. Software Technical Specifications for ThomX Suppliers 1.INTRODUCTION TECHNICAL REQUIREMENTS... 2

CONTROL-COMMAND. Software Technical Specifications for ThomX Suppliers 1.INTRODUCTION TECHNICAL REQUIREMENTS... 2 Réf. ThmX-NT-SI-CC001 Table f Cntents Sftware Technical Specificatins fr ThmX Authr : Philippe Page 1 / 9 1.INTRODUCTION... 2 2.TECHNICAL REQUIREMENTS... 2 3.DOCUMENTATION REQUIREMENTS... 4 4.COMPUTING

More information

ACR38T-D1. Smart Card Reader. Technical Specifications V1.07. Subject to change without prior notice.

ACR38T-D1. Smart Card Reader. Technical Specifications V1.07. Subject to change without prior notice. ACR38T-D1 Smart Card Reader Technical Specificatins V1.07 Subject t change withut prir ntice Table f Cntents 1.0. Intrductin... 3 1.1. Smart Card Reader... 3 1.2. Ease f Integratin... 3 2.0. Features...

More information

ACR1283L Standalone Contactless Reader

ACR1283L Standalone Contactless Reader ACR1283L Standalne Cntactless Reader Technical Specificatins V1.05 Subject t change withut prir ntice inf@acs.cm.hk www.acs.cm.hk Table f Cntents 1.0. Intrductin... 3 2.0. Features... 4 3.0. Typical Applicatins...

More information

Remoting SDK Release Notes

Remoting SDK Release Notes Remting SDK Release Ntes Release 2018 R2 Dcument Versin: 1.0 10 August 2018 This dcument is a cmpilatin f sftware and sftware dcumentatin defects, and sftware specificatin clarificatins, updates, and changes.

More information

QS Channel Surveillance Bundle

QS Channel Surveillance Bundle QS494-411-5 4-Channel Surveillance Bundle AT A GLANCE: 4 Channel H.264 CIF/D1 DVR 500GB Hard Drive Fur cameras with 400TV Lines f Reslutin Weatherprf cameras fr indr r utdr use 40 feet f night visin Email

More information

Xilinx Answer Xilinx PCI Express DMA Drivers and Software Guide

Xilinx Answer Xilinx PCI Express DMA Drivers and Software Guide Xilinx Answer 65444 Xilinx PCI Express DMA Drivers and Sftware Guide Imprtant Nte: This dwnladable PDF f an Answer Recrd is prvided t enhance its usability and readability. It is imprtant t nte that Answer

More information

It has hardware. It has application software.

It has hardware. It has application software. Q.1 What is System? Explain with an example A system is an arrangement in which all its unit assemble wrk tgether accrding t a set f rules. It can als be defined as a way f wrking, rganizing r ding ne

More information

NVIDIA Tesla K20X GPU Accelerator. Breton Minnehan, Beau Sattora

NVIDIA Tesla K20X GPU Accelerator. Breton Minnehan, Beau Sattora NVIDIA Tesla K20X GPU Acceleratr Bretn Minnehan, Beau Sattra Overview Jb f the GPU Histry What is the K20X GK110 Benchmark Perfrmance Jb f the GPU Vertex Shader Applies transfrms n each vertex Applies

More information

OpenCV. OpenCV Tutorials OpenCV User Guide OpenCV API Reference. docs.opencv.org. F. Xabier Albizuri

OpenCV. OpenCV Tutorials OpenCV User Guide OpenCV API Reference. docs.opencv.org. F. Xabier Albizuri OpenCV OpenCV Tutorials OpenCV User Guide OpenCV API Reference docs.opencv.org F. Xabier Albizuri - 2014 OpenCV Tutorials OpenCV Tutorials: Introduction to OpenCV The Core Functionality (core module) Image

More information

ACR39U-U1. (USB Type A) Smart Card Reader. Technical Specifications V1.05. Subject to change without prior notice.

ACR39U-U1. (USB Type A) Smart Card Reader. Technical Specifications V1.05. Subject to change without prior notice. ACR39U-U1 (USB Type A) Smart Card Reader Technical Specificatins V1.05 Subject t change withut prir ntice Table f Cntents 1.0. Intrductin... 3 1.1. Smart Card Reader... 3 1.2. Cmpact Design... 3 1.3. Ease

More information

ACR1281S-C1. Serial Dual Interface Reader. Technical Specifications V1.04. Subject to change without prior notice.

ACR1281S-C1. Serial Dual Interface Reader. Technical Specifications V1.04. Subject to change without prior notice. ACR1281S-C1 Serial Dual Interface Reader Technical Specificatins V1.04 Subject t change withut prir ntice inf@acs.cm.hk Table f Cntents 1.0. Intrductin... 3 2.0. Features... 4 3.0. Typical Applicatins...

More information

NVIDIA S KEPLER ARCHITECTURE. Tony Chen 2015

NVIDIA S KEPLER ARCHITECTURE. Tony Chen 2015 NVIDIA S KEPLER ARCHITECTURE Tny Chen 2015 Overview 1. Fermi 2. Kepler a. SMX Architecture b. Memry Hierarchy c. Features 3. Imprvements 4. Cnclusin 5. Brief verlk int Maxwell Fermi ~2010 40 nm TSMC (sme

More information

ACR39U-U1. Smart Card Reader. Technical Specifications V1.00. Subject to change without prior notice.

ACR39U-U1. Smart Card Reader. Technical Specifications V1.00. Subject to change without prior notice. ACR39U-U1 Smart Card Reader Technical Specificatins V1.00 Subject t change withut prir ntice Table f Cntents 1.0. Intrductin... 3 1.1. Smart Card Reader... 3 1.2. Cmpact Design... 3 1.3. Ease f Integratin...

More information

ACR89U-A2 Handheld Smart Card Reader

ACR89U-A2 Handheld Smart Card Reader ACR89U-A2 Handheld Smart Card Reader Technical Specificatins V1.01 Subject t change withut prir ntice Table f Cntents 1.0. Intrductin... 3 2.0. Features... 4 3.0. Supprted Card Types... 5 3.1. MCU Cards...

More information

Operating systems. Module 15 kernel I/O subsystem. Tami Sorgente 1

Operating systems. Module 15 kernel I/O subsystem. Tami Sorgente 1 Operating systems Mdule 15 kernel I/O subsystem Tami Srgente 1 SWAP SPACE MANAGEMENT Swap space can be defined as a temprary strage lcatin that is used when system s memry requirements exceed the size

More information

QC Clearance 4-Channel Surveillance Bundle

QC Clearance 4-Channel Surveillance Bundle QC444-411-5 Clearance 4-Channel Surveillance Bundle AT A GLANCE: 4 Channel H.264 CIF/D1 DVR 500GB Hard Drive Fur cameras with 400TV Lines f Reslutin Weatherprf cameras fr indr r utdr use 40 feet f night

More information

VTR-4000B Encoder Evaluation Kit

VTR-4000B Encoder Evaluation Kit VTR-4000B Encder Evaluatin Kit Quick-Start Guide System-On-Chip Technlgies JAN 2017 This dcument is intended t be a quick-start guide fr getting familiar with the evaluatin kit envirnment. Fr a thrugh

More information

Greg Dias, Alex Wilson. Fermi

Greg Dias, Alex Wilson. Fermi Greg Dias, Alex Wilsn Fermi Agenda Cmputer Graphics and Parallelism Basic GPU structure NVIDIA Fermi and CUDA Graphics Rendering Methds Plygn Rendering Ray Tracing Plygn Rendering Apprximatin f cmplex

More information

ACR1251U USB NFC Reader with SAM Slot

ACR1251U USB NFC Reader with SAM Slot ACR1251U USB NFC Reader with SAM Slt Technical Specificatins V1.10 Subject t change withut prir ntice inf@acs.cm.hk www.acs.cm.hk Table f Cntents 1.0. Intrductin... 3 2.0. Features... 4 3.0. Typical Applicatins...

More information

ACM1252U-Z2. Small NFC Module Reader. Technical Specifications V1.01. Subject to change without prior notice.

ACM1252U-Z2. Small NFC Module Reader. Technical Specifications V1.01. Subject to change without prior notice. ACM1252U-Z2 Small NFC Mdule Reader Technical Specificatins V1.01 Subject t change withut prir ntice inf@acs.cm.hk www.acs.cm.hk Table f Cntents 1.0. Intrductin... 3 2.0. Features... 4 3.0. Typical Applicatins...

More information

Because this underlying hardware is dedicated to processing graphics commands, OpenGL drawing is typically very fast.

Because this underlying hardware is dedicated to processing graphics commands, OpenGL drawing is typically very fast. The Open Graphics Library (OpenGL) is used fr visualizing 2D and 3D data. It is a multipurpse pen-standard graphics library that supprts applicatins fr 2D and 3D digital cntent creatin, mechanical and

More information

Parallel Processing in NCAR Command Language for Performance Improvement

Parallel Processing in NCAR Command Language for Performance Improvement Parallel Prcessing in NCAR Cmmand Language fr Perfrmance Imprvement Ping Gu, University f Wyming Mentr: Wei Huang, NCAR C- Mentr: Dave Brwn, NCAR August 1, 2013 Intrductin and Mtivatin ² The NCAR Cmmand

More information

ARDUINO NANO INTRODUCTION

ARDUINO NANO INTRODUCTION ARDUINO NANO INTRODUCTION Arduin nan differ frm ther Arduin as it very small s it suitable fr small sized prjects and it supprts breadbards s it can be plugged with ther cmpnents in nly ne breadbard. ARDUINO

More information

ACR122U USB NFC Reader

ACR122U USB NFC Reader ACR122U USB NFC Reader Technical Specificatins V3.06 Subject t change withut prir ntice inf@acs.cm.hk www.acs.cm.hk Table f Cntents 1.0. Intrductin... 3 2.0. Features... 4 3.0. Typical Applicatins... 5

More information

ACM1252U-Y3. USB NFC Reader Module with Detachable Antenna Board. Technical Specifications V1.00. Subject to change without prior notice

ACM1252U-Y3. USB NFC Reader Module with Detachable Antenna Board. Technical Specifications V1.00. Subject to change without prior notice ACM1252U-Y3 USB NFC Reader Mdule with Detachable Antenna Bard Technical Specificatins V1.00 Subject t change withut prir ntice inf@acs.cm.hk www.acs.cm.hk Table f Cntents 1.0. Intrductin... 3 2.0. Features...

More information

ACR39U-NF PocketMate II

ACR39U-NF PocketMate II ACR39U-NF PcketMate II (USB Type C) Smart Card Reader Technical Specificatins V1.01 Subject t change withut prir ntice Table f Cntents 1.0. Intrductin... 3 1.1. Smart Card Reader... 3 1.2. Ingenius Design...

More information

Night Owl s B-PODVR PT: 8 Channel Smart DVR with 1TB Hard Drive, 4 x 600 TVL Cameras and 1 Pan/Tilt Remote Camera System

Night Owl s B-PODVR PT: 8 Channel Smart DVR with 1TB Hard Drive, 4 x 600 TVL Cameras and 1 Pan/Tilt Remote Camera System Night Owl s B-PODVR10-4600-PT: 8 Channel Smart DVR with 1TB Hard Drive, 4 x 600 TVL Cameras and 1 Pan/Tilt Remte Camera System Night Owl s special bundle B-PODVR10-4600-PT is an advanced 8 channel security

More information

ACR38U-I1. Smart Card Reader. Technical Specifications V1.09. Subject to change without prior notice.

ACR38U-I1. Smart Card Reader. Technical Specifications V1.09. Subject to change without prior notice. ACR38U-I1 Smart Card Reader Technical Specificatins V1.09 Subject t change withut prir ntice inf@acs.cm.hk www.acs.cm.hk Table f Cntents 1.0. Intrductin... 3 1.1. Smart Card Reader... 3 1.2. Mdern Design...

More information

Second Assignment Tutorial lecture

Second Assignment Tutorial lecture Secnd Assignment Tutrial lecture INF5040 (Open Distributed Systems) Faraz German (farazg@ulrik.ui.n) Department f Infrmatics University f Osl Octber 17, 2016 Grup Cmmunicatin System Services prvided by

More information

Troubleshooting Desktop & All In One Computers, Monitors, TVs, Video Walls Last Updated

Troubleshooting Desktop & All In One Computers, Monitors, TVs, Video Walls Last Updated TROUBLESHOOTING GUIDE Trubleshting Desktp & All In One Cmputers, Mnitrs, TVs, Vide Walls Last Updated Vide Picture is nt Centered n the Screen The vide settings n yur PC have changed. If yu made a change

More information

ACR3901U-S1. Bluetooth Contact Card Reader. Technical Specifications V1.02. Subject to change without prior notice.

ACR3901U-S1. Bluetooth Contact Card Reader. Technical Specifications V1.02. Subject to change without prior notice. ACR3901U-S1 Bluetth Cntact Card Reader Technical Specificatins V1.02 Subject t change withut prir ntice Table f Cntents 1.0. Intrductin... 3 1.1. Smart Card Reader... 3 1.2. Cmpact Design... 3 1.3. Firmware

More information

ACR38F Smart Floppy Smart Card Reader

ACR38F Smart Floppy Smart Card Reader ACR38F Smart Flppy Smart Card Reader Technical Specificatins V6.07 Subject t change withut prir ntice inf@acs.cm.hk www.acs.cm.hk Table f Cntents 1.0. Intrductin... 3 1.1. Smart Card Reader... 3 1.2. Ease

More information

ACR3901U-S1. Secure Bluetooth Contact Card Reader. Technical Specifications V1.07. Subject to change without prior notice

ACR3901U-S1. Secure Bluetooth Contact Card Reader. Technical Specifications V1.07. Subject to change without prior notice ACR3901U-S1 Secure Bluetth Cntact Card Reader Technical Specificatins V1.07 Subject t change withut prir ntice inf@acs.cm.hk www.acs.cm.hk Table f Cntents 1.0. Intrductin... 3 1.1. Smart Card Reader...

More information

ACR3801 Smart Card Reader

ACR3801 Smart Card Reader ACR3801 Smart Card Reader Technical Specificatins V2.07 Subject t change withut prir ntice inf@acs.cm.hk www.acs.cm.hk Table f Cntents 1.0. Intrductin... 3 1.1. Smart Card Reader... 3 1.2. Ease f Integratin...

More information

AVer IFP Software Release Note Aug

AVer IFP Software Release Note Aug AVer IFP Sftware Release Nte Aug 14 2017 FIRMWARE VERSION 1.0.1000.14 COMPATIBLE HARDWARE CP654i / CP754i / CP864i OPERATING SYSTEMS Andrid system T check yur panel s Firmware versin, g t the Andrid Settings

More information

Date: October User guide. Integration through ONVIF driver. Partner Self-test. Prepared By: Devices & Integrations Team, Milestone Systems

Date: October User guide. Integration through ONVIF driver. Partner Self-test. Prepared By: Devices & Integrations Team, Milestone Systems Date: Octber 2018 User guide Integratin thrugh ONVIF driver. Prepared By: Devices & Integratins Team, Milestne Systems 2 Welcme t the User Guide fr Online Test Tl The aim f this dcument is t prvide guidance

More information

Software Release Summary: Daniel MeterLink for Daniel Gas and Liquid Ultrasonic Flow Meters

Software Release Summary: Daniel MeterLink for Daniel Gas and Liquid Ultrasonic Flow Meters Sftware Release Summary: Daniel MeterLink fr Daniel Gas and Liquid Ultrasnic Flw Meters VERSION 1.50 The Dual-Cnfiguratin Meter Mnitr includes a Transmitter Head 2 vs. Transmitter Head 1 speed f sund and

More information

ACR38U-ND PocketMate. Smart Card Reader

ACR38U-ND PocketMate. Smart Card Reader ACR38U-ND PcketMate (Micr-USB) Smart Card Reader Technical Specificatins V1.05 Subject t change withut prir ntice inf@acs.cm.hk www.acs.cm.hk Table f Cntents 1.0. Intrductin... 3 1.1. Smart Card Reader...

More information

Parallel Image Searching Using PostgreSQL and PgOpenCL. Tim Child CEO 3DMashUp

Parallel Image Searching Using PostgreSQL and PgOpenCL. Tim Child CEO 3DMashUp Parallel Image Searching Using PstgreSQL and PgOpenCL Tim Child CEO 3DMashUp Speaker Bi Tim Child 35 years experience f sftware develpment Frmerly VP Oracle Crpratin VP BEA Systems Inc. VP Infrmix Leader

More information

Cntents 1 Intrductin Kit Cntents Requirements Installatin Gesture Sensr Kit Hardware and Jumper Settings De

Cntents 1 Intrductin Kit Cntents Requirements Installatin Gesture Sensr Kit Hardware and Jumper Settings De Thin Film Pyrelectric IR Gesture Sensr Demnstratr Kit Fr lw pwer, high perfrmance gesture cntrl User Guide Versin 1.0 Dcument Revisin 1.00 20 th February 2012 Cntents 1 Intrductin... 3 1.1 Kit Cntents...

More information

Wireless Access Point Features

Wireless Access Point Features SPA Cmputers (P) Ltd. SPA cmputers (P) Ltd Phne: 91-8025265348 2010, 100feet Rad, Indira Nagar, Bangalre-560 008 Fax Wireless Access Pint Features (IEEE 802.11 a/b/g) Feature 1 Wireless Access Pint Standard

More information

QS Channel Surveillance Bundle with Pan-Tilt Camera

QS Channel Surveillance Bundle with Pan-Tilt Camera QS558-493-1 8-Channel Surveillance Bundle with Pan-Tilt Camera AT A GLANCE: 8 Channel H.264 Full D1 DVR Real-time Reslutin HDMI Prt fr HD Viewing Optins 1TB Hard Drive Three High-Reslutin cameras with

More information

Operating systems. Module 7 IPC (Interprocess communication) PART I. Tami Sorgente 1

Operating systems. Module 7 IPC (Interprocess communication) PART I. Tami Sorgente 1 Operating systems Mdule 7 IPC (Interprcess cmmunicatin) PART I Tami Srgente 1 INTERPROCESS COMMUNICATION Prcesses within a system may be independent r cperating Cperating prcess can affect r be affected

More information

Westinghouse Nuclear Automation. Ovation -based Rod Control Logic Cabinet

Westinghouse Nuclear Automation. Ovation -based Rod Control Logic Cabinet Westinghuse Nuclear Autmatin Ovatin -based Rd Cntrl Lgic Cabinet Backgrund The Westinghuse slid state rd cntrl system has been in peratin at many plants fr ver 30 years. The riginal system has demnstrated

More information

CSE 3320 Operating Systems Computer and Operating Systems Overview Jia Rao

CSE 3320 Operating Systems Computer and Operating Systems Overview Jia Rao CSE 3320 Operating Systems Cmputer and Operating Systems Overview Jia Ra Department f Cmputer Science and Engineering http://ranger.uta.edu/~jra Overview Recap f last class What is an perating system?

More information

AVer IFP Software Release Note Nov

AVer IFP Software Release Note Nov AVer IFP Sftware Release Nte Nv-29 2017 FIRMWARE VERSION 1.0.1024.26 COMPATIBLE HARDWARE CP654i / CP754i / CP864i OPERATING SYSTEMS Andrid System Updates T check yur panel s Firmware versin, g t the Andrid

More information

Implementing a SQL Data Warehouse

Implementing a SQL Data Warehouse Implementing a SQL Data Warehuse Implementing a SQL Data Warehuse Curse Cde: 20767 Certificatin Exam: 70-767 Duratin: 5 Days Certificatin Track: MCSA: SQL 2016 BI Develpment Frmat: Classrm Level: 300 Abut

More information

Smart Arm Installation and Setup Guide

Smart Arm Installation and Setup Guide Smart Arm Installatin and Setup Guide PS1E, PS2E and PS150E Objective: The guideline is intended t detail the installatin and setup instructins fr the Smart Mtin Smart Arms systems, including the PS1E,

More information

K2 40GE QSFP+ Higher Speed Ethernet Load Module

K2 40GE QSFP+ Higher Speed Ethernet Load Module K2 40GE QSFP+ Higher Speed Ethernet Lad Mdule Ixia s K2 40-Gigabit Ethernet (GE) Quad Small Frm-factr Pluggable (QSFP+) SFF-8436-cmplaint test mdule is the wrld s first-t-market layer 1 thrugh 7 measurement

More information

WaveBlade Traffic Generation and Analysis (TGA) Modules

WaveBlade Traffic Generation and Analysis (TGA) Modules WaveBlade Traffic Generatin and Analysis (TGA) Mdules Highlights Up t 500 fully independent stateful clients per prt WaveBlade Wi-Fi (WBW): Highly scaled setup in a single test-bed t test real-wrld deplyment

More information

LIBRA 32 LASER ENGRAVER:

LIBRA 32 LASER ENGRAVER: LIBRA 32 LASER ENGRAVER: Special design f carriage where 2 lens r 5 lens bth can be used. 5 lens gives yu better quality f cutting, if the thickness f material is mre than 10mm and 2 lens shuld be used

More information

Admin Report Kit for Exchange Server

Admin Report Kit for Exchange Server Admin Reprt Kit fr Exchange Server Reprting tl fr Micrsft Exchange Server Prduct Overview Admin Reprt Kit fr Exchange Server (ARKES) is an Exchange Server Management and Reprting slutin that addresses

More information

FIRMWARE RELEASE NOTES. Versions V2.0.0 to V Model HDL-32E. High Definition LiDAR Sensor

FIRMWARE RELEASE NOTES. Versions V2.0.0 to V Model HDL-32E. High Definition LiDAR Sensor FIRMWARE RELEASE NOTES Versins V2.0.0 t V2.2.21.0 Mdel HDL-32E High Definitin LiDAR Sensr HDL-32E Firmware Release Ntes Page 2 Fr all new features and changes, refer t the dcumentatin that accmpanies the

More information

Block 1: ZYNQ-7000 Architecture. Objectives:

Block 1: ZYNQ-7000 Architecture. Objectives: Blck 1: ZYNQ-7000 Architecture Describe the architecture and cmpnents that cmprise the Zynq All Prgrammable SC prcessing system (PS) Relate a user design gal t the functin, benefit, and use f the Zynq

More information

NGY 10GE FUSION Load Modules

NGY 10GE FUSION Load Modules NGY 10GE FUSION Lad Mdules The architectural breakthrugh f Ixia s 10 Gigabit Ethernet (10GE) NGY lad mdules delivers an industry-leading, high-density, and affrdable layer 2 thrugh 7, 10GE IP test slutin.

More information

FIREWALL RULE SET OPTIMIZATION

FIREWALL RULE SET OPTIMIZATION Authr Name: Mungle Mukupa Supervisr : Mr Barry Irwin Date : 25 th Octber 2010 Security and Netwrks Research Grup Department f Cmputer Science Rhdes University Intrductin Firewalls have been and cntinue

More information

ACR100I SIMFlash II (CCID)

ACR100I SIMFlash II (CCID) ACR100I SIMFlash II (CCID) SIMFlash with Embedded MIFARE Technical Specificatins V1.02 Subject t change withut prir ntice inf@acs.cm.hk www.acs.cm.hk Table f Cntents 1.0. Intrductin... 3 1.1. SIM-sized

More information

GE Multilin 850 Feeder Protection Relay Specifications

GE Multilin 850 Feeder Protection Relay Specifications GE Multilin 850 Feeder Prtectin Relay Specificatins Prtectin, mnitring and metering shall be supplied in ne integrated digital relay package fr applicatin t mtrs suitable fr incrpratin int an integrated

More information

SVC-T using DM36x H.264 codec

SVC-T using DM36x H.264 codec SVC-T using DM36x H.264 cdec Applicatin nte Versin 1.1 Date: 10 th Dec 2010 Scalable vide cding n DM36x This dcument describes hw t use tempral scalability in the beta H.264 ver 2.1 cdec. It is assumed

More information

INVENTION DISCLOSURE

INVENTION DISCLOSURE 1. Inventin Title. Light Transprt and Data Serializatin fr TR-069 Prtcl 2. Inventin Summary. This inventin defines a light prtcl stack fr TR-069. Even thugh TR-069 is widely deplyed, its prtcl infrastructure

More information

AMR220-C1. Secure Bluetooth mpos Reader. Technical Specifications v1.02. Subject to change without prior notice.

AMR220-C1. Secure Bluetooth mpos Reader. Technical Specifications v1.02. Subject to change without prior notice. AMR220-C1 Secure Bluetth mpos Reader Technical Specificatins v1.02 Subject t change withut prir ntice Table f Cntents 1.0. Intrductin... 3 1.1. Smart Card Reader... 3 1.2. Cmpact Design... 3 1.3. Firmware

More information

Datasheet Face Detection. Version 3.6. Datasheet Face Detection Version AllGo Embedded Systems Pvt. Ltd.

Datasheet Face Detection. Version 3.6. Datasheet Face Detection Version AllGo Embedded Systems Pvt. Ltd. Datasheet Face Detectin Versin 3.6 This Specificatin Sheet gives the details f system requirements, features and ther salient pints f AllGVisin Face Detectin & Face Capture applicatin. AllG Embedded Systems

More information

NGY 10GE FUSION Load Modules

NGY 10GE FUSION Load Modules NGY 10GE FUSION Lad Mdules The architectural breakthrugh f Ixia s 10 Gigabit Ethernet (10GE) NGY lad mdules delivers an industry-leading, high-density, and affrdable layer 2 thrugh 7, 10GE IP test slutin.

More information

Application Note. Digi Connect Wi-SP Troubleshooting Guide. Digi Technical Support 10 May 2016

Application Note. Digi Connect Wi-SP Troubleshooting Guide. Digi Technical Support 10 May 2016 Applicatin Nte Digi Cnnect Wi-SP Trubleshting Guide Digi Technical Supprt 10 May 2016 Cntents 1 Intrductin... 3 1.1 Assumptins... 3 1.2 Crrectins... 3 2 Quick Facts... 3 2.1 Cmmn Questins Abut the Cnnect

More information

ACR123S. Intelligent Contactless Reader. Technical Specifications V1.05. Subject to change without prior notice.

ACR123S. Intelligent Contactless Reader. Technical Specifications V1.05. Subject to change without prior notice. ACR123S Intelligent Cntactless Reader Technical Specificatins V1.05 Subject t change withut prir ntice inf@acs.cm.hk www.acs.cm.hk Table f Cntents 1.0. Intrductin... 3 2.0. Features... 4 3.0. Typical Applicatins...

More information

GE Multilin F650 Feeder Protection Relay and Bay Controller Specifications

GE Multilin F650 Feeder Protection Relay and Bay Controller Specifications GE Multilin F650 Feeder Prtectin Relay and Bay Cntrller Specificatins Prtectin, mnitring and metering shall be supplied in ne integrated digital relay package fr applicatins suitable fr incrpratin int

More information

ES93x INCA Add-On V1.4.0

ES93x INCA Add-On V1.4.0 ES93x INCA Add-On V1.4.0 Page 1 f 9 Cpyright The data in this dcument may nt be altered r amended withut special ntificatin frm ETAS GmbH. ETAS GmbH undertakes n further bligatin in relatin t this dcument.

More information

Infrastructure Series

Infrastructure Series Infrastructure Series TechDc WebSphere Message Brker / IBM Integratin Bus Parallel Prcessing (Aggregatin) (Message Flw Develpment) February 2015 Authr(s): - IBM Message Brker - Develpment Parallel Prcessing

More information

ACR123S Intelligent Contactless Reader

ACR123S Intelligent Contactless Reader ACR123S Intelligent Cntactless Reader Technical Specificatins V1.01 Subject t change withut prir ntice inf@acs.cm.hk www.acs.cm.hk Table f Cntents 1.0. Intrductin... 3 2.0. Features... 4 3.0. Typical Applicatins...

More information

ACR123U. Intelligent Contactless Reader. Technical Specifications V1.06. Subject to change without prior notice.

ACR123U. Intelligent Contactless Reader. Technical Specifications V1.06. Subject to change without prior notice. ACR123U Intelligent Cntactless Reader Technical Specificatins V1.06 Subject t change withut prir ntice inf@acs.cm.hk www.acs.cm.hk Table f Cntents 1.0. Intrductin... 3 2.0. Features... 4 3.0. Typical Applicatins...

More information

BIOS Update Release Notes

BIOS Update Release Notes BIOS Update Release Ntes PRODUCTS: NUC5i3MYBE, NUC5i3MYHE (Standard BIOS) BIOS Versin 0043 - MYBDWi30.86A.0043.2017.1016.1739 Date: Date: Octber 16, 2017 SATA RAID Optin ROM: 14.5.0.2241 SATA nn-raid Optin

More information

This document lists hardware and software requirements for Connected Backup

This document lists hardware and software requirements for Connected Backup HPE Cnnected Backup Versin 8.8.6.1 Matrix Revisin 0 This dcument lists hardware and sftware requirements fr Cnnected Backup 8.8.6.1. Data Center This sectin lists the installatin requirements fr the Cnnected

More information

B Tech Project First Stage Report on

B Tech Project First Stage Report on B Tech Prject First Stage Reprt n GPU Based Image Prcessing Submitted by Sumit Shekhar (05007028) Under the guidance f Prf Subhasis Chaudhari 1. Intrductin 1.1 Graphic Prcessr Units A graphic prcessr unit

More information

Overview. Features. Intel Media SDK 2014 Audio Library has API version 1.8. The following audio formats are supported: Decoding

Overview. Features. Intel Media SDK 2014 Audio Library has API version 1.8. The following audio formats are supported: Decoding Intel Media Sftware Develpment Kit 2014 Audi Library Release Ntes (Versin 5.0.337.79303) Overview Features System Requirements Package Cntents Installatin Knwn Limitatins Legal Infrmatin Overview The Intel

More information

Analysing Big Data with Microsoft R

Analysing Big Data with Microsoft R Analysing Big Data with Micrsft R Analysing Big Data with Micrsft R Curse Cde: 20773 Certificatin Exam: 70-773 Duratin: 3 Days Certificatin Track: MCSA: Machine Learning Frmat: Classrm Level: 300 Abut

More information

APG8201 PINhandy 1. Technical Specifications V2.00. Subject to change without prior notice.

APG8201 PINhandy 1. Technical Specifications V2.00. Subject to change without prior notice. APG8201 PINhandy 1 Technical Specificatins V2.00 Subject t change withut prir ntice Table f Cntents 1.0. Intrductin... 3 2.0. Features... 4 3.0. Typical Applicatins... 6 4.0. Technical Specificatins...

More information

ScandAll PRO software change history

ScandAll PRO software change history ScandAll PRO sftware change histry V2.0.15 Update Pack (Changes frm V2.0.12 t V2.0.15) V2.0.14 V2.0.15 The fllwing prblems may ccur because f the defect f V2.0.14 installer: Kfax VRS des nt functin Scanning

More information

The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL

The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL Yu will learn the fllwing in this lab: The UNIVERSITY f NORTH CAROLINA at CHAPEL HILL Designing a mdule with multiple memries Designing and using a bitmap fnt Designing a memry-mapped display Cmp 541 Digital

More information

CS4500/5500 Operating Systems Introduction

CS4500/5500 Operating Systems Introduction Operating Systems Intrductin Yanyan Zhuang Department f Cmputer Science http://www.cs.uccs.edu/~yzhuang UC. Clrad Springs Ref. MOS4E, OS@Austin, Clumbia, UWisc Intr f Intr Yanyan Zhuang PhD in netwrk systems

More information

CS4500/5500 Operating Systems Computer and Operating Systems Overview

CS4500/5500 Operating Systems Computer and Operating Systems Overview Operating Systems Cmputer and Operating Systems Overview Yanyan Zhuang Department f Cmputer Science http://www.cs.uccs.edu/~yzhuang UC. Clrad Springs Ref. MOS4E, OS@Austin, Clumbia, UWisc Overview Recap

More information

Paraben s Phone Recovery Stick

Paraben s Phone Recovery Stick Paraben s Phne Recvery Stick v. 3.0 User manual Cntents Abut Phne Recvery Stick... 3 What s new!... 3 System Requirements... 3 Applicatin User Interface... 4 Understanding the User Interface... 4 Main

More information

Model WM100. Product Manual

Model WM100. Product Manual Mdel WM100 Prduct Manual Table f Cntents Sectin Page 1. Hardware... 3 2. Sftware... 4 3. Features... 5 4. Installatin... 6 5. App Devices... 9 6. App Rms... 12 7. App Scenes... 14 8. App Setup... 18 Cntents

More information

Course 6368A: Programming with the Microsoft.NET Framework Using Microsoft Visual Studio 2008

Course 6368A: Programming with the Microsoft.NET Framework Using Microsoft Visual Studio 2008 Curse 6368A: Prgramming with the Micrsft.NET Framewrk Using Micrsft Visual Studi 2008 5 Days Abut this Curse This five-day, instructr-led curse prvides an intrductin t develping n-tier applicatins fr the

More information

Questions and Answers

Questions and Answers AutCAD Revit MEP Suite 2010 (Including Autdesk Revit MEP 2010 and AutCAD MEP 2010) Questins and Answers AutCAD Revit MEP Suite 2010 sftware is awidely-used engineering design slutin fr mechanical, electrical,

More information

AVer IFP Software Release Note Nov

AVer IFP Software Release Note Nov AVer IFP Sftware Release Nte Nv-7 2017 FIRMWARE VERSION 1.0.1017.24 COMPATIBLE HARDWARE CP654i / CP754i / CP864i OPERATING SYSTEMS Andrid System Updates T check yur panel s Firmware versin, g t the Andrid

More information

SMART Room System for Microsoft Lync. Software configuration guide

SMART Room System for Microsoft Lync. Software configuration guide SMART Rm System fr Micrsft Lync Sftware cnfiguratin guide Fr mdels SRS-LYNC-S, SRS-LYNC-M and SRS-LYNC-L In this guide: Fr yur recrds 1 Preparing fr yur rm system 2 Befre cnfiguring yur rm system s sftware

More information

Andrid Develpment Intrductin Sessin bjectives What s Andrid http://vvanhai.wrdpress.cm/ 3 What s Andrid Andrid architecture Andrid sftware develpment Hell Wrld n Andrid Mre Andrid Phnes 2 4 1 OHA and Andrid

More information

The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL

The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL Yu will learn the fllwing in this lab: The UNIVERSITY f NORTH CAROLINA at CHAPEL HILL Cmp 541 Digital Lgic and Cmputer Design Spring 2016 Lab Prject (PART A): A Full Cmputer! Issued Fri 4/8/16; Suggested

More information

ACR123U. Intelligent Contactless Reader. Technical Specifications V1.03. Subject to change without prior notice.

ACR123U. Intelligent Contactless Reader. Technical Specifications V1.03. Subject to change without prior notice. ACR123U Intelligent Cntactless Reader Technical Specificatins V1.03 Subject t change withut prir ntice inf@acs.cm.hk www.acs.cm.hk Table f Cntents 1.0. Intrductin... 3 2.0. Features... 4 3.0. Typical Applicatins...

More information

EView/400i Management Pack for Systems Center Operations Manager (SCOM)

EView/400i Management Pack for Systems Center Operations Manager (SCOM) EView/400i Management Pack fr Systems Center Operatins Manager (SCOM) Cncepts Guide Versin 7.0 July 2015 1 Legal Ntices Warranty EView Technlgy makes n warranty f any kind with regard t this manual, including,

More information

PE2G2FI35 Dual Port Fiber Gigabit Ethernet PCI Express Server Adapter Intel i350am2 Based

PE2G2FI35 Dual Port Fiber Gigabit Ethernet PCI Express Server Adapter Intel i350am2 Based PE2G2FI35 Dual Prt Fiber Gigabit Ethernet PCI Express Server Adapter Intel i350am2 Based Prduct Descriptin Silicm s Dual Prt Fiber Gigabit Ethernet PCI Express Server adapter is PCI-Express X4 Fiber Gigabit

More information

CS4500/5500 Operating Systems Processes

CS4500/5500 Operating Systems Processes Operating Systems Prcesses Yanyan Zhuang Department f Cmputer Science http://www.cs.uccs.edu/~yzhuang UC. Clrad Springs Ref. MOS3E, OS@Austin, Clumbia, Rchester Recap f the Last Class Cmputer hardware

More information

GPU Accelerated Rendering In Adobe Illustrator CC

GPU Accelerated Rendering In Adobe Illustrator CC GPU Accelerated Rendering In Adbe Illustratr CC Vineet Batra Senir Cmputer Scientist Adbe Systems 2014 Adbe Systems Incrprated. All Rights Reserved. Intrductin Adbe s very first applicatin when released

More information

ACR38U-H1 Smart Card Reader

ACR38U-H1 Smart Card Reader ACR38U-H1 Smart Card Reader Technical Specificatins V6.05 Subject t change withut prir ntice Table f Cntents 1.0. Intrductin... 3 1.1. Smart Card Reader... 3 1.2. Unique Casing... 3 1.3. Ease f Integratin...

More information

Setac: A Phased Deterministic Testing Framework for Scala Actors. Samira Tasharofi Jun 02, 2011 Stanford, CA

Setac: A Phased Deterministic Testing Framework for Scala Actors. Samira Tasharofi Jun 02, 2011 Stanford, CA Setac: A Phased Deterministic Testing Framewrk fr Scala Actrs Samira Tasharfi Jun 02, 2011 Stanfrd, CA Mtivatin Schedule is a surce f nn-determinism in cncurrent prgrams Shared memry: rder f accesses Message-passing:

More information

Introduction to Programming ArcObjects using the Microsoft.Net Framework

Introduction to Programming ArcObjects using the Microsoft.Net Framework Intrductin t Prgramming ArcObjects using the Micrsft.Net Framewrk Three days Overview ArcObjects cmpnents are the building blcks f the ArcGIS family f prducts, and the ArcObjects libraries prvide a set

More information

Multilevel Updating Method of Three- Dimensional Spatial Database Presented By: Tristram Taylor SE521

Multilevel Updating Method of Three- Dimensional Spatial Database Presented By: Tristram Taylor SE521 Multilevel Updating Methd f Three- Dimensinal Spatial Database Presented By: Tristram Taylr SE521 Written By: Yangting Liu, Gang Liu, Zhenwen He, Zhengping Weng Frm: China University f Gesciences Fr: 2010

More information