Size: px
Start display at page:

Download "https://moodle2.tu-ilmenau.de/course/view.php?id=206"

Transcription

1 Lecture Fundamentals of Video technology Gerald Schuller Gerald. Assistent: Oleg Golokolenko, ilmenau.de Website -> lectures -> Bachelor for MT -> Grundlagen der Videotechnik We also have a Moodle2 website:

2 For this lecture, every participant needs to register in Moodle2, to access learning materials (Lectures), seminars and quizzes. Moodle2 link: Seminars: The Seminars are based on Raspberry Pi microcontroller, with Raspbian Linux as operating system. There will be biweekly homework assignments. Seminars count 30% of the final grade, and final exam would count remaining 70%. The first homework assignment will help with practicing or revising the Python concepts. Everyone should have a Raspberry Pi or a computer with Linux distribution installed. Ubuntu is relatively easy to install and much more

3 user-friendly when it comes for programming rather than Windows. Also, Windows causes too many software problems. Ubuntu is the most popular Linux distribution available and can be installed next to Windows (Dual-boot). Instructions for installing Ubuntu: or: or:

4 Programming homework assignments will be uploaded on Moodle2. There will be short quizzes in Moodle2, which counts 25% for homework (you should register in Moodle2) and will be available weekly after every lecture and should be done in one week. These homework tasks are an integral part of this course. This is the only way to get the concepts to acquire the required skills for building video systems. The course has total of 4 LP (credit points). Each LP is about 2-3 hours of work per week, so altogether about 8-12 hours per week.

5 Note: For every week, around 3 hours will be for lecture, therefore the remaining 5-9 hours will be for homework i.e., about 1 working day per week. Note: The scripts in Copyshop are not up to date. The most up-to-date slides will be available in Moodle2 (and possibly in the website). Note: The lecture slides are not the replacement of course book, they are just a guide for self-study, not as a complete source. For self-study, the slides contain the references and to books and websites. The slides are deliberately kept in the editing mode because they are supposed to function like a blackboard. In this way, we can respond flexibly to questions from students and enter

6 the answers at the same time. One of the main aims of the lecture is to answer questions. The latest versions of the slides will then be uploaded on Moodle2.

7 Goal of this lecture: - Learn about the techniques and principles of wireless transmission of video streams and audio streams. - The example of Raspberry Pi: Transmission of an image using sound.

8 Content overview: - Introduction to Python - Python basics - Psycho-physics (properties of eyes: vision; ear: hearing) - Digital Filters - Digital transmission

9

10 - Stone age: cave painting -> Illustration of 3 dimensions on a 2-dimensional surface. - Brain interpolates the original 3-dimensional scenery - Ancient Rome: Wall newspapers, in public places: mass media - Book printing: more distribution. - Modern time: Pinhole camera

11 Lochblende Objekt - Schirm für Abbildung Unschärfe Nachzeichnen oder Fotoplatte Illustration from 3D to 2D Apparatus, not by hand. - Later: perforated plate replaced by lens for more light.

12 Photozelle Stromquelle Glühlampe -> 2500 decomposition of the image into lots of pixels, which are transferred individually. -> brain/eye interpolates every individual pixel into connected image.

13 Nipkow Aufnahme Stromquelle Wiedergabe Bild blende Photozelle Blende für abzutastendes Bild. Je nur ein Loch streift über das Bild Glühlampe, leuchtet entsprechend dem eingefangenem Licht -> but impractical, too complex/costly. Dreht synchron zur Aufnehme Scheibe

14 -> Image is scanned and rebuilt line by line. -> Principle used Not only local interpolation but also temporal interpolation! The rapid flickering is perceived as constant light. -> Therefore: Reduction of complexity/cost. Limiting this mechanical system: a few lines and a few frames per second, so low quality.

15 Transmission: High carrier frequency required because of the required bandwidth. TV analog ca. 5,5 Mhz Bandwidth UHF: ca MHz, corr. ca. 200 MHz, ca. 40 TV channels B/W Television, USA: 30, 40s Germany widely established in 50s years

16 Color TV -> Used: Eye has only receptors for 3 different primary colors (RGB: Red, Green, Blue) Empfindl Wellenlänge -> Just the 3 primary colors need to be transferred

17 -> Spatial and temporal resolution of color perception is less than in case of brightness perception. -> Required bandwidth for color information is less than for brightness information. -> TV: the lower bandwidth makes it possible to embed the color information into the gaps of B/W-Signal. -> Color TV is backwards compatible with B/W TV. -> Very important for introduction of a new System.

18 Digital TV: DVB: Digital Video Broadcast: Not backward compatible - But: it uses the same frequencies and channels as the analog TV - Set-top Box for conversion into analog TV is relatively cheap. Thüringen: Nov. 2005, Berlin was Uses the higher information density of digital transmission: 1 analog programme is supported by 3-5 digital programmes.

19 Programme Resolution of analog TV approximately like VGA exactly: 50 Hz countries: 625 lines, 25 frames per sec. 60 Hz countries: 525 lines, 30 frames per sec. Number of Connected to the lines per mains frequency to seconds avoid artifacts in the is similar picture. Digital TV, HDTV -> essential for High Definition TV the transmissionbandwidth - An analog channel is not replaced by 3-5 digital channels Power suply 220 V, 50 Hz 110 V, 60 Hz

20 of the same resolution, but by one digital channel of higher resolution. - Resolution approximately like modern Computer monitors. HDTV televisions already available (see e.g. last Radio exhibition) Operation : official in USA, Germany: Sky (ehem. Premiere). Satellite programmes: various digital offers. Technique for recording, transmission, playback available. Monitors, color mixing: Example, close-up of a LCD Monitor or TV screen (recorded with a USB Microscope):

21 1 Pixel Further magnification:

22 Note: Every Pixel ( Picture Element ) consists of 3 short strips in colors Blue, Green, Red. The colors of the pixels are created by color mixing, depending on the proportion of the three colors, and each pixel represents a small color point of our image. The principle of color mixing is also found in book

23 printing. Example of a microscope image of a printed color image, the same principle: Brief Introduction to Python with Numpy, Scipy

24 Note: This is not a course to introduce in Python, but a course on algorithms that are implemented using Python. Knowledge of Python is therefore required. The following is a brief introduction for those who need a quick introduction. Python is a powerful, Object-oriented programming language. At the same time, it does not need to be compiled, but can be interpreted at runtime. It also has a convenient command line interface, making it easy to try out a few program lines. In addition, there is an enormous variety of program packages or libraries for it, and everything in OpenSource! With the command line interpreter "ipython" and the packages "Numpy", "Scipy" and "matplotlib" the operation is very similar to Matlab. Matlab, however, is a commercial, paid program. In addition, Python is more

25 powerful; Audio and video streams in real-time, which is not in Matlab. Python Numpy and Scipy are packages that are very similar to Matlab, which are generally used in digital signal processing, and therefore also for digital video technology, for the calculation, simulation and implementation of algorithms. Because of the wide distribution and the importance of the ability to program in Matlab, or here in Numpy and Scipy, it is also used for our homework. Octave is the Open Source version of Matlab, however slower and a bit less comfortable. For (non-real-time and non-

26 video) computation, it is still very comfortable, but because of its limitations, we will use Python. Numpy and Scipy are the packages, that run under Python, they are OpenSource, and can be installed directly on the Raspberry Pi from the Software Center, as python-numpy and python-scipy. Since they run under Python, they also have the extended capabilities of Python, such as video streaming for recording and playback, which we want to use. The most comfortable and to Matlab most similar environment is obtained with ipython and the option --pylab, which automatically loads numpy and matplotlib, and runs under the Raspberry Pi.

27 First, the installation of ipython in the Linux console window with: sudo apt-get install ipython Start from console window with: ipython --pylab The "--pylab" option is equivalent to calling: ipython and then within ipython, import the relevant libraries : from numpy import * from matplotlib.pyplot import * This also shows a kind of importing of libraries that directly imports all the functions of the library. Most interesting

28 mathematical functions are in the library "Numpy". We can also use them in python with: import numpy as np The "as np" means that we can refer to the "numpy" library as a "np" in abbreviated form, which simply means simplification in writing. This referencing of the library has the advantage that we can distinguish functions of the same name from different libraries. If we want to access all the functions of Numpy without referencing (if no duplicates from other libraries are there), we can use instead: from numpy import *

29 Python Basics: On Ubuntu start a shell / console via menu or with the shortcut Alt-Ctrl-T, then enter python followed by the return key. Commands are generally completed with the return key. Alternatively, we type ipython, which is basically the same but contains more comfort features like auto-completion. This opens the interactive mode of Python, where we can now directly enter Python commands, for example: help(<function-name>): help function for command Example:

30 help(sin) Assignment of a value to a variable in memory with =, e.g. : A = Display of value of the variable in memory: print(a) Testing for equality with ==, e.g. : if A == B: print(a)

31 In Python, with Library OpenCV, an image is represented as an array, one Pixel consists of 3 values (1 value per primary color). Example for input of an array (for a Black/White image) in Python: C = array([[1,2],[3,4]]) Or, as the array is a type from the numpy library, so it can be used as: C = numpy.array([[1,2], [3,4]]) For a color image, not only a brightness value appears for each pixel, but an array of 3 intensities, one per basic color. Example:

32 C = numpy.array([[[1,2,3],[2,3,4]],[[3,4,5], [4,5,6]]]) The intensities of the base colors of the pixel at the position [0,0] (upper left) are then obtained with: C[0,0] array([1, 2, 3]) for pixel of position [0,0] we can obtain the intensity of the primary color Red with: C[0,0,2] 3 Note: Python distinguishes between arrays and matrices. Example for entering a 2x2 matrix in Python: A=matrix([[1, 2],[3, 4]]) Or as it is a part of library numpy, we can define it as :

33 A=numpy.matrix([[1, 2],[3, 4]]) A matrix([[1, 2], [3, 4]]) B=matrix([[5, 6],[7, 8]]) B matrix([[5, 6], [7, 8]]) Addition of two matrices: A+B

34 matrix([[ 6, 8], [10, 12]]) Multiplication: A*B matrix([[19, 22], [43, 50]]) Element by element multiplication: multiply(a,b) matrix([[ 5, 12], [21, 32]]) Inverse of a matrix: inv(a)

35 matrix([[-2., 1. ], [ 1.5, -0.5]]) Alternative representation for the matrix inversion: A.I We can display the dimension of an array or a matrix with the function "shape": shape(a) or A.shape Example of a simple Python script: The function y = 2 * a + 3 * b is to be programmed as a script. Create a file with the extension.py eg: testscript.py

36 This requires a so-called text editor. A text editor differs from a word processor such as "Word" or "Writer" by storing only the pure text entered, no formatting information. Each programming language only understands files created by editors! A common recommended editor, which runs also on Raspberry Pi, is gedit.if necessary, it can be installed with: sudo apt-get install gedit and we type there the following content: #command: this is a Test script a=4 b=5 y=2*a+3*b

37 print y This is then stored (with "save as") under the name "testscript.py". The presence of the file can be checked in the terminal window with the command ls (list). It shows all files in the current folder. With "cd foldername" we switch to a subfolder, with "cd.." to the higher folder. The contents of the file can be viewed for checking in the console window with the command: more testscript.py In the console/shell window we then type python testscript.py The output is then: >>23

38 Alternatively, we can also define a function within Python. To do this we write a file with the name "testfunktion.py", which contains our functions (it can also be several), with the content: def myfunction(a,b): """This is the help text for myfunction...""" y=2*a+3*b return y Note the indentation below the function declaration: The has in python the function of parentheses. Then we start ipython (or we have already started it) with:

39 ipython In ipython, we can import our function(s) with: import testfunction Now our function is a part of our own Library "testfunction". We then call our function in ipython with parameters (by a = 7 and b = 8): testfunction.myfunction(7,8) Out[6]: 38 Note the prefix of "testfunction". This has the advantage that we can distinguish several similar functions from several files ("libraries"). We obtain the help text of our function with:

40 help(testfunction.myfunction) >>>Help on function myfunction in the module testfunction: myfunction(a, b) This is the help text for myfunction... In order to avoid the library name "testfunction", if we are sure there are no name conflicts, we can import: from testfunction import * Then we can easily access our function with: myfunction(7,8)

41 >>>38

Lecture 14: Computer Peripherals

Lecture 14: Computer Peripherals Lecture 14: Computer Peripherals The last homework and lab for the course will involve using programmable logic to make interesting things happen on a computer monitor should be even more fun than the

More information

Component Video Matrix Switcher Series ITEM NO.: YS04MA, YS04MD

Component Video Matrix Switcher Series ITEM NO.: YS04MA, YS04MD Component Video Matrix Switcher Series ITEM NO.: YS04MA, YS04MD Our component video switcher allows four different component video and stereo/digital audio sources to share two video displays. Manage multiple

More information

Communication Theory and Engineering

Communication Theory and Engineering Communication Theory and Engineering Master's Degree in Electronic Engineering Sapienza University of Rome A.A. 2018-2019 Practice work 14 Image signals Example 1 Calculate the aspect ratio for an image

More information

An Approach to Raspberry Pi Synchronization in a Multimedia Projection System for Applications in Presentation of Historical and Cultural Heritage

An Approach to Raspberry Pi Synchronization in a Multimedia Projection System for Applications in Presentation of Historical and Cultural Heritage An Approach to Raspberry Pi Synchronization in a Multimedia Projection System for Applications in Presentation of Historical and Cultural Heritage Nemanja D. Savić, Dušan B. Gajić, Radomir S. Stanković

More information

Ensemble QLAB. Stand-Alone, 1-4 Axes Piezo Motion Controller. Control 1 to 4 axes of piezo nanopositioning stages in open- or closed-loop operation

Ensemble QLAB. Stand-Alone, 1-4 Axes Piezo Motion Controller. Control 1 to 4 axes of piezo nanopositioning stages in open- or closed-loop operation Ensemble QLAB Motion Controllers Ensemble QLAB Stand-Alone, 1-4 Axes Piezo Motion Controller Control 1 to 4 axes of piezo nanopositioning stages in open- or closed-loop operation Configurable open-loop

More information

RECOMMENDATION ITU-R BT.1203 *

RECOMMENDATION ITU-R BT.1203 * Rec. TU-R BT.1203 1 RECOMMENDATON TU-R BT.1203 * User requirements for generic bit-rate reduction coding of digital TV signals (, and ) for an end-to-end television system (1995) The TU Radiocommunication

More information

Display-Shoot M642HD Plasma 42HD. Re:source. DVS-5 Module. Dominating Entertainment. Revox of Switzerland. E 2.00

Display-Shoot M642HD Plasma 42HD. Re:source. DVS-5 Module. Dominating Entertainment. Revox of Switzerland. E 2.00 of Display-Shoot M642HD Plasma 42HD DVS-5 Module Dominating Entertainment. Revox of Switzerland. E 2.00 Contents DVS Module Installation DSV Connection Panel HDMI output YCrCb analogue output DSV General

More information

Understanding Compression Technologies for HD and Megapixel Surveillance

Understanding Compression Technologies for HD and Megapixel Surveillance When the security industry began the transition from using VHS tapes to hard disks for video surveillance storage, the question of how to compress and store video became a top consideration for video surveillance

More information

FPGA Laboratory Assignment 4. Due Date: 06/11/2012

FPGA Laboratory Assignment 4. Due Date: 06/11/2012 FPGA Laboratory Assignment 4 Due Date: 06/11/2012 Aim The purpose of this lab is to help you understanding the fundamentals of designing and testing memory-based processing systems. In this lab, you will

More information

Audio and Video II. Video signal +Color systems Motion estimation Video compression standards +H.261 +MPEG-1, MPEG-2, MPEG-4, MPEG- 7, and MPEG-21

Audio and Video II. Video signal +Color systems Motion estimation Video compression standards +H.261 +MPEG-1, MPEG-2, MPEG-4, MPEG- 7, and MPEG-21 Audio and Video II Video signal +Color systems Motion estimation Video compression standards +H.261 +MPEG-1, MPEG-2, MPEG-4, MPEG- 7, and MPEG-21 1 Video signal Video camera scans the image by following

More information

G-106 GWarp Processor. G-106 is multiple purpose video processor with warp, de-warp, video wall control, format conversion,

G-106 GWarp Processor. G-106 is multiple purpose video processor with warp, de-warp, video wall control, format conversion, G-106 GWarp Processor G-106 is multiple purpose video processor with warp, de-warp, video wall control, format conversion, scaler switcher, PIP/POP, 3D format conversion, image cropping and flip/rotation.

More information

MULTIMEDIA TECHNOLOGIES

MULTIMEDIA TECHNOLOGIES MULTIMEDIA TECHNOLOGIES LECTURE 08 VIDEO IMRAN IHSAN ASSISTANT PROFESSOR VIDEO Video streams are made up of a series of still images (frames) played one after another at high speed This fools the eye into

More information

An Alternative Architecture for High Performance Display R. W. Corrigan, B. R. Lang, D.A. LeHoty, P.A. Alioshin Silicon Light Machines, Sunnyvale, CA

An Alternative Architecture for High Performance Display R. W. Corrigan, B. R. Lang, D.A. LeHoty, P.A. Alioshin Silicon Light Machines, Sunnyvale, CA R. W. Corrigan, B. R. Lang, D.A. LeHoty, P.A. Alioshin Silicon Light Machines, Sunnyvale, CA Abstract The Grating Light Valve (GLV ) technology is being used in an innovative system architecture to create

More information

G-106Ex Single channel edge blending Processor. G-106Ex is multiple purpose video processor with warp, de-warp, video wall control, format

G-106Ex Single channel edge blending Processor. G-106Ex is multiple purpose video processor with warp, de-warp, video wall control, format G-106Ex Single channel edge blending Processor G-106Ex is multiple purpose video processor with warp, de-warp, video wall control, format conversion, scaler switcher, PIP/POP, 3D format conversion, image

More information

Multiband Noise Reduction Component for PurePath Studio Portable Audio Devices

Multiband Noise Reduction Component for PurePath Studio Portable Audio Devices Multiband Noise Reduction Component for PurePath Studio Portable Audio Devices Audio Converters ABSTRACT This application note describes the features, operating procedures and control capabilities of a

More information

To discuss. Types of video signals Analog Video Digital Video. Multimedia Computing (CSIT 410) 2

To discuss. Types of video signals Analog Video Digital Video. Multimedia Computing (CSIT 410) 2 Video Lecture-5 To discuss Types of video signals Analog Video Digital Video (CSIT 410) 2 Types of Video Signals Video Signals can be classified as 1. Composite Video 2. S-Video 3. Component Video (CSIT

More information

SPL Analog Code Plug-ins Manual Classic & Dual-Band De-Essers

SPL Analog Code Plug-ins Manual Classic & Dual-Band De-Essers SPL Analog Code Plug-ins Manual Classic & Dual-Band De-Essers Sibilance Removal Manual Classic &Dual-Band De-Essers, Analog Code Plug-ins Model # 1230 Manual version 1.0 3/2012 This user s guide contains

More information

EECS150 - Digital Design Lecture 12 Project Description, Part 2

EECS150 - Digital Design Lecture 12 Project Description, Part 2 EECS150 - Digital Design Lecture 12 Project Description, Part 2 February 27, 2003 John Wawrzynek/Sandro Pintz Spring 2003 EECS150 lec12-proj2 Page 1 Linux Command Server network VidFX Video Effects Processor

More information

Design and Implementation of an AHB VGA Peripheral

Design and Implementation of an AHB VGA Peripheral Design and Implementation of an AHB VGA Peripheral 1 Module Overview Learn about VGA interface; Design and implement an AHB VGA peripheral; Program the peripheral using assembly; Lab Demonstration. System

More information

VIDEO GRABBER. DisplayPort. User Manual

VIDEO GRABBER. DisplayPort. User Manual VIDEO GRABBER DisplayPort User Manual Version Date Description Author 1.0 2016.03.02 New document MM 1.1 2016.11.02 Revised to match 1.5 device firmware version MM 1.2 2019.11.28 Drawings changes MM 2

More information

Traditionally video signals have been transmitted along cables in the form of lower energy electrical impulses. As new technologies emerge we are

Traditionally video signals have been transmitted along cables in the form of lower energy electrical impulses. As new technologies emerge we are 2 Traditionally video signals have been transmitted along cables in the form of lower energy electrical impulses. As new technologies emerge we are seeing the development of new connection methods within

More information

QUICK START GUIDE MODEL : PHD-VRX2

QUICK START GUIDE MODEL : PHD-VRX2 Full HD 1080p Dual Tuner Digital HDTV Recorder, Receiver and Media Center Box QUICK START GUIDE MODEL : PHD-VRX2 Copyright 2013, PrimeDTV Technologies, Inc. Front View Menu: Display On-screen (OSD) Main

More information

Scanning For Photonics Applications

Scanning For Photonics Applications Scanning For Photonics Applications 1 - Introduction The npoint LC.400 series of controllers have several internal functions for use with raster scanning. A traditional raster scan can be generated via

More information

DC-105 Quick Installation Guide

DC-105 Quick Installation Guide DC-105 Quick Installation Guide PACKAGE CONTENTS 2 POWER ON 2 CONNECT TO A DVB-T RECEIVER 3 ADJUST THE FOCUS OF THE LENS 3 CONNECT TO A CVBS MONITOR 4 MIC-IN 4 USB UART DONGLE 5 MONITOR BOOT MESSAGES 7

More information

What is a Visual Presenter? Flexible operation, ready in seconds. Perfect images. Progressive Scan vs. PAL/ NTSC Video

What is a Visual Presenter? Flexible operation, ready in seconds. Perfect images. Progressive Scan vs. PAL/ NTSC Video Visual Presenter and your presentation comes alive! The new standard for: Presentations Meetings and seminars Classroom & education Product presentations Video conferencing Medical care Courtrooms & Legal

More information

V9A01 Solution Specification V0.1

V9A01 Solution Specification V0.1 V9A01 Solution Specification V0.1 CONTENTS V9A01 Solution Specification Section 1 Document Descriptions... 4 1.1 Version Descriptions... 4 1.2 Nomenclature of this Document... 4 Section 2 Solution Overview...

More information

G-700LITELite multiple Channel warping processor

G-700LITELite multiple Channel warping processor G-700LITELite multiple Channel warping processor Version: 2.01, Date: 2017-07 G-700Lite is a warping processor with the ability to provide multiple processing modules to control from 1 to 4 projectors

More information

Design of VGA Controller using VHDL for LCD Display using FPGA

Design of VGA Controller using VHDL for LCD Display using FPGA International OPEN ACCESS Journal Of Modern Engineering Research (IJMER) Design of VGA Controller using VHDL for LCD Display using FPGA Khan Huma Aftab 1, Monauwer Alam 2 1, 2 (Department of ECE, Integral

More information

An Overview of Video Coding Algorithms

An Overview of Video Coding Algorithms An Overview of Video Coding Algorithms Prof. Ja-Ling Wu Department of Computer Science and Information Engineering National Taiwan University Video coding can be viewed as image compression with a temporal

More information

Live events staging. Media centers

Live events staging. Media centers Christie Spyder X80 80 megapixel, true 4K@60Hz performance across multiple displays Auditoriums Control rooms Live events staging Post-production Broadcast studios Corporate lobbies Media centers Sports

More information

SHOWLINE SL NITRO 510 LED STROBE LUMINAIRE SPECIFICATIONS.

SHOWLINE SL NITRO 510 LED STROBE LUMINAIRE SPECIFICATIONS. GENERAL. A.) Overview. SHOWLINE SL NITRO 510 LED STROBE LUMINAIRE SPECIFICATIONS. 1.) The luminaire shall be an LED strobe luminaire employing one-thousand, three-hundred and fifty (1350) white LED engines.

More information

Tele-Medicine Focusing on the future. Image and data ar Seize the

Tele-Medicine Focusing on the future. Image and data ar Seize the Image1 digital v 100% digita With the interdisciplinary IMAGE1 camera, image information is digitalized directly on the CCD sensor at the earliest possible point in time. Thanks to the unique DSS technology

More information

TV Synchronism Generation with PIC Microcontroller

TV Synchronism Generation with PIC Microcontroller TV Synchronism Generation with PIC Microcontroller With the widespread conversion of the TV transmission and coding standards, from the early analog (NTSC, PAL, SECAM) systems to the modern digital formats

More information

PROFESSIONAL D-ILA PROJECTOR DLA-G11

PROFESSIONAL D-ILA PROJECTOR DLA-G11 PROFESSIONAL D-ILA PROJECTOR DLA-G11 A new digital projector that projects true S-XGA images with breakthrough D-ILA technology Large-size projection images with all the sharpness and clarity of a small-screen

More information

2D/3D Multi-Projector Stacking Processor. User Manual AF5D-21

2D/3D Multi-Projector Stacking Processor. User Manual AF5D-21 2D/3D Multi-Projector Stacking Processor User Manual AF5D-21 Thank you for choosing AF5D-21 passive 3D processor. AF5D-21 is an advanced dual channel passive 3D processor with 10 bits high end scaler and

More information

Lecture 2 Video Formation and Representation

Lecture 2 Video Formation and Representation 2013 Spring Term 1 Lecture 2 Video Formation and Representation Wen-Hsiao Peng ( 彭文孝 ) Multimedia Architecture and Processing Lab (MAPL) Department of Computer Science National Chiao Tung University 1

More information

27" 10-point multi-touch interactive display

27 10-point multi-touch interactive display 27" 10-point multi-touch interactive display ViewBoard S IFP2710 10-point touch and passive pen touch Swivel and flat ergonomic design HDMI output to external display HDBaseT connection Durable 7H glass

More information

Transmitter Interface Program

Transmitter Interface Program Transmitter Interface Program Operational Manual Version 3.0.4 1 Overview The transmitter interface software allows you to adjust configuration settings of your Max solid state transmitters. The following

More information

1. Broadcast television

1. Broadcast television VIDEO REPRESNTATION 1. Broadcast television A color picture/image is produced from three primary colors red, green and blue (RGB). The screen of the picture tube is coated with a set of three different

More information

High Performance Raster Scan Displays

High Performance Raster Scan Displays High Performance Raster Scan Displays Item Type text; Proceedings Authors Fowler, Jon F. Publisher International Foundation for Telemetering Journal International Telemetering Conference Proceedings Rights

More information

Television History. Date / Place E. Nemer - 1

Television History. Date / Place E. Nemer - 1 Television History Television to see from a distance Earlier Selenium photosensitive cells were used for converting light from pictures into electrical signals Real breakthrough invention of CRT AT&T Bell

More information

Specifications LED Display Video Controller VX4. Xi an NovaStar Tech Co., Ltd. Rev1.0.4 NS

Specifications LED Display Video Controller VX4. Xi an NovaStar Tech Co., Ltd. Rev1.0.4 NS Specifications LED Display Video Controller VX4 Rev1.0.4 NS160110153 General Feature The VX4 is a professional LED display controller. Besides the function of display control, it also features in powerful

More information

Multi-Screen Splicing Video Processor. Xi an NovaStar Tech Co., Ltd. Specifications. Document Version: Document Number:

Multi-Screen Splicing Video Processor. Xi an NovaStar Tech Co., Ltd. Specifications. Document Version: Document Number: N9 Multi-Screen Splicing Video Processor Document Version: V1.0.0 Document Number: Copyright 2018 All Rights Reserved. No part of this document may be copied, reproduced, extracted or transmitted in any

More information

Understanding Multimedia - Basics

Understanding Multimedia - Basics Understanding Multimedia - Basics Joemon Jose Web page: http://www.dcs.gla.ac.uk/~jj/teaching/demms4 Wednesday, 9 th January 2008 Design and Evaluation of Multimedia Systems Lectures video as a medium

More information

Avivo and the Video Pipeline. Delivering Video and Display Perfection

Avivo and the Video Pipeline. Delivering Video and Display Perfection Avivo and the Video Pipeline Delivering Video and Display Perfection Introduction As video becomes an integral part of the PC experience, it becomes ever more important to deliver a high-fidelity experience

More information

Stockcode : Description:

Stockcode : Description: pg. 1 Features: HDMI 2.0 introduces support for 4K (2160p) @50 and 60 FPS, 3D playback at 4K resolution, up to 32 audio channels (up from a paltry eight), and some interesting features such as dynamic

More information

2004 UltraVision LCD Projection Televisions

2004 UltraVision LCD Projection Televisions 2004, Hitachi Ltd. UltraVision is a registered trademark of Hitachi Home Electronics (America), Inc. VirtualHD, Digital Window, and Roll and Click are trademarks of Hitachi Home Electronics (America),

More information

2.13inch e-paper HAT (D) User Manual

2.13inch e-paper HAT (D) User Manual 2.13inch e-paper HAT (D) User Manual OVERVIRE This is a flexible E-Ink display HAT for Raspberry Pi, 2.13inch, 212x104 resolution, with embedded controller, communicating via SPI interface, supports partial

More information

Specifications LED Display Video Controller VX4S

Specifications LED Display Video Controller VX4S Specifications LED Display Video Controller VX4S Rev1.0.3 NS160110155 General The VX4S is a professional LED display controller. Besides the function of display control, it also features in powerful front

More information

Module 3: Video Sampling Lecture 16: Sampling of video in two dimensions: Progressive vs Interlaced scans. The Lecture Contains:

Module 3: Video Sampling Lecture 16: Sampling of video in two dimensions: Progressive vs Interlaced scans. The Lecture Contains: The Lecture Contains: Sampling of Video Signals Choice of sampling rates Sampling a Video in Two Dimensions: Progressive vs. Interlaced Scans file:///d /...e%20(ganesh%20rana)/my%20course_ganesh%20rana/prof.%20sumana%20gupta/final%20dvsp/lecture16/16_1.htm[12/31/2015

More information

Pivoting Object Tracking System

Pivoting Object Tracking System Pivoting Object Tracking System [CSEE 4840 Project Design - March 2009] Damian Ancukiewicz Applied Physics and Applied Mathematics Department da2260@columbia.edu Jinglin Shen Electrical Engineering Department

More information

Understanding DVRs and Resolution From CIF to Full HD 1080P to Ultra HD 4K

Understanding DVRs and Resolution From CIF to Full HD 1080P to Ultra HD 4K Understanding DVRs and Resolution From CIF to Full HD 1080P to Ultra HD 4K CIF stands for Common Intermediate Format, and is used to represent the size of an image based on the number of horizontal and

More information

RX-W42 Surveillance LCD Display

RX-W42 Surveillance LCD Display RX-W42 Surveillance LCD Display Product Introduction Date: July 01, 2012 Version: 7.0 RX-Series Surveillance Performance Bringing a widescreen format to high performance surveillance displays designed

More information

UTILIZATION OF MATLAB FOR THE DIGITAL SIGNAL TRANSMISSION SIMULATION AND ANALYSIS IN DTV AND DVB AREA. Tomáš Kratochvíl

UTILIZATION OF MATLAB FOR THE DIGITAL SIGNAL TRANSMISSION SIMULATION AND ANALYSIS IN DTV AND DVB AREA. Tomáš Kratochvíl UTILIZATION OF MATLAB FOR THE DIGITAL SIGNAL TRANSMISSION SIMULATION AND ANALYSIS IN DTV AND DVB AREA Tomáš Kratochvíl Institute of Radio Electronics, Brno University of Technology Faculty of Electrical

More information

Stream Labs, JSC. Stream Logo SDI 2.0. User Manual

Stream Labs, JSC. Stream Logo SDI 2.0. User Manual Stream Labs, JSC. Stream Logo SDI 2.0 User Manual Nov. 2004 LOGO GENERATOR Stream Logo SDI v2.0 Stream Logo SDI v2.0 is designed to work with 8 and 10 bit serial component SDI input signal and 10-bit output

More information

Digital Video Telemetry System

Digital Video Telemetry System Digital Video Telemetry System Item Type text; Proceedings Authors Thom, Gary A.; Snyder, Edwin Publisher International Foundation for Telemetering Journal International Telemetering Conference Proceedings

More information

Lecture 23: Digital Video. The Digital World of Multimedia Guest lecture: Jayson Bowen

Lecture 23: Digital Video. The Digital World of Multimedia Guest lecture: Jayson Bowen Lecture 23: Digital Video The Digital World of Multimedia Guest lecture: Jayson Bowen Plan for Today Digital video Video compression HD, HDTV & Streaming Video Audio + Images Video Audio: time sampling

More information

Getting Started with the LabVIEW Sound and Vibration Toolkit

Getting Started with the LabVIEW Sound and Vibration Toolkit 1 Getting Started with the LabVIEW Sound and Vibration Toolkit This tutorial is designed to introduce you to some of the sound and vibration analysis capabilities in the industry-leading software tool

More information

R H Y T H M G E N E R A T O R. User Guide. Version 1.3.0

R H Y T H M G E N E R A T O R. User Guide. Version 1.3.0 R H Y T H M G E N E R A T O R User Guide Version 1.3.0 Contents Introduction... 3 Getting Started... 4 Loading a Combinator Patch... 4 The Front Panel... 5 The Display... 5 Pattern... 6 Sync... 7 Gates...

More information

SPATIAL LIGHT MODULATORS

SPATIAL LIGHT MODULATORS SPATIAL LIGHT MODULATORS Reflective XY Series Phase and Amplitude 512x512 A spatial light modulator (SLM) is an electrically programmable device that modulates light according to a fixed spatial (pixel)

More information

PROFESSIONAL D-ILA PROJECTOR DLA-G11

PROFESSIONAL D-ILA PROJECTOR DLA-G11 PROFESSIONAL D-ILA PROJECTOR DLA-G11 A new digital projector that projects true S-XGA images with breakthrough D-ILA technology Large-size projection images with all the sharpness and clarity of a small-screen

More information

4. Power output: All channels driven into 8 ohms, 50 Hz 20,000 Hz at no more than 10% THD, measured from auxiliary input to load.

4. Power output: All channels driven into 8 ohms, 50 Hz 20,000 Hz at no more than 10% THD, measured from auxiliary input to load. HT/HS Series Highlights - DRC Multi-Function - CineMotion Reverse 3-2 Pulldown - Hi-Scan 1080i Display - 16:9 Enhanced Mode - High Contrast Protective Screen - Flexible Twin-View Two Tuner Picture-and-Picture

More information

Overview E165BV-SS. Display

Overview E165BV-SS. Display E165BV-SS Overview Discover superior color and clarity in every pixel of the Sceptre E165BV-SS 720P LED HDTV. HDMI transports the highest quality of high-definition video and audio all on one, durable

More information

GatesAir Service Support

GatesAir Service Support GatesAir Service Support HD Radio Overview and Quick Start Guide Featuring GatesAir s April 12, 2015 NAB Show 2015 Tim Anderson Radio Product & Business Development Manager Copyright 2015 GatesAir, Inc.

More information

AMD-53-C TWIN MODULATOR / MULTIPLEXER AMD-53-C DVB-C MODULATOR / MULTIPLEXER INSTRUCTION MANUAL

AMD-53-C TWIN MODULATOR / MULTIPLEXER AMD-53-C DVB-C MODULATOR / MULTIPLEXER INSTRUCTION MANUAL AMD-53-C DVB-C MODULATOR / MULTIPLEXER INSTRUCTION MANUAL HEADEND SYSTEM H.264 TRANSCODING_DVB-S2/CABLE/_TROPHY HEADEND is the most convient and versatile for digital multichannel satellite&cable solution.

More information

Kramer Electronics, Ltd. USER MANUAL. Model: FC-46xl. HDMI Audio De-Embedder

Kramer Electronics, Ltd. USER MANUAL. Model: FC-46xl. HDMI Audio De-Embedder Kramer Electronics, Ltd. USER MANUAL Model: FC-46xl HDMI Audio De-Embedder Contents Contents 1 Introduction 1 2 Getting Started 1 2.1 Quick Start 2 3 Overview 3 3.1 About HDCP 3 3.2 Defining EDID 3 3.3

More information

Video to SXGA Converter Box ID#475

Video to SXGA Converter Box ID#475 Video to SXGA Converter Box ID#475 Operation Manual Introduction The Video to SXGA Converter Box is a composite video signal. S-Video signal and YCbCr signal format converter for AV System (Such as DVD.

More information

ZONE PLATE SIGNALS 525 Lines Standard M/NTSC

ZONE PLATE SIGNALS 525 Lines Standard M/NTSC Application Note ZONE PLATE SIGNALS 525 Lines Standard M/NTSC Products: CCVS+COMPONENT GENERATOR CCVS GENERATOR SAF SFF 7BM23_0E ZONE PLATE SIGNALS 525 lines M/NTSC Back in the early days of television

More information

By David Acker, Broadcast Pix Hardware Engineering Vice President, and SMPTE Fellow Bob Lamm, Broadcast Pix Product Specialist

By David Acker, Broadcast Pix Hardware Engineering Vice President, and SMPTE Fellow Bob Lamm, Broadcast Pix Product Specialist White Paper Slate HD Video Processing By David Acker, Broadcast Pix Hardware Engineering Vice President, and SMPTE Fellow Bob Lamm, Broadcast Pix Product Specialist High Definition (HD) television is the

More information

P1: OTA/XYZ P2: ABC c01 JWBK457-Richardson March 22, :45 Printer Name: Yet to Come

P1: OTA/XYZ P2: ABC c01 JWBK457-Richardson March 22, :45 Printer Name: Yet to Come 1 Introduction 1.1 A change of scene 2000: Most viewers receive analogue television via terrestrial, cable or satellite transmission. VHS video tapes are the principal medium for recording and playing

More information

Release Notes for LAS AF version 1.8.0

Release Notes for LAS AF version 1.8.0 October 1 st, 2007 Release Notes for LAS AF version 1.8.0 1. General Information A new structure of the online help is being implemented. The focus is on the description of the dialogs of the LAS AF. Configuration

More information

Digital Television Fundamentals

Digital Television Fundamentals Digital Television Fundamentals Design and Installation of Video and Audio Systems Michael Robin Michel Pouiin McGraw-Hill New York San Francisco Washington, D.C. Auckland Bogota Caracas Lisbon London

More information

HDMI to Video Scan Converter w/audio output - ID# 921

HDMI to Video Scan Converter w/audio output - ID# 921 HDMI to Video Scan Converter w/audio output - ID# 921 Operation Manual Introduction HDMI to Video Scan Converter w/audio output is designed to convert a digital HDMI source signal to an analog Video /

More information

SM02. High Definition Video Encoder and Pattern Generator. User Manual

SM02. High Definition Video Encoder and Pattern Generator. User Manual SM02 High Definition Video Encoder and Pattern Generator User Manual Revision 0.2 20 th May 2016 1 Contents Contents... 2 Tables... 2 Figures... 3 1. Introduction... 4 2. acvi Overview... 6 3. Connecting

More information

DPD80 Visible Datasheet

DPD80 Visible Datasheet Data Sheet v1.3 Datasheet Resolved Inc. www.resolvedinstruments.com info@resolvedinstruments.com 217 Resolved Inc. All rights reserved. General Description The DPD8 is a low noise digital photodetector

More information

Spartan-II Development System

Spartan-II Development System 2002-May-4 Introduction Dünner Kirchweg 77 32257 Bünde Germany www.trenz-electronic.de The Spartan-II Development System is designed to provide a simple yet powerful platform for FPGA development, which

More information

Watch PC Desktop or Play PC Game on your TV

Watch PC Desktop or Play PC Game on your TV Seite 1 von 5 Select Coun Studio 715 PC to TV Converter KW-PCTV PC to TV Converter Watch PC Desktop or Play PC Game on your TV Model No. KW-PCTV-1600 Highlights Features Specifications System Requirements

More information

DPD80 Infrared Datasheet

DPD80 Infrared Datasheet Data Sheet v1.4 DPD8 Infrared DPD8 Infrared Datasheet Resolved Inc. www.resolvedinstruments.com info@resolvedinstruments.com 217 Resolved Inc. All rights reserved. DPD8 Infrared General Description The

More information

HDMI & VGA Receiver over IP with USB Connections - ID# & 15456

HDMI & VGA Receiver over IP with USB Connections - ID# & 15456 HDMI & VGA Receiver over IP with USB Connections - ID# 15455 & 15456 Operation Manual Introduction The 4K2K video and audio extender is multi-function extender supports up to 4K2K ultra high-definition

More information

LD-V4300D DUAL STANDARD PLAYER. Industrial LaserDisc TM Player

LD-V4300D DUAL STANDARD PLAYER. Industrial LaserDisc TM Player LD-V4300D DUAL STANDARD PLAYER Industrial LaserDisc TM Player Designed for Exceptional Versatility and Convenience Pioneer designed the LD-V4300D to make it easier than ever to use LaserDiscs for a broad

More information

Oscilloscopes, logic analyzers ScopeLogicDAQ

Oscilloscopes, logic analyzers ScopeLogicDAQ Oscilloscopes, logic analyzers ScopeLogicDAQ ScopeLogicDAQ 2.0 is a comprehensive measurement system used for data acquisition. The device includes a twochannel digital oscilloscope and a logic analyser

More information

Video Scaler Pro with RS-232

Video Scaler Pro with RS-232 Video Scaler Pro with RS-232 - ID# 783 Operation Manual Introduction Features The Video Scaler Pro with RS-232 is designed to convert Composite S-Video and YCbCr signals to a variety of computer and HDTV

More information

VDT-100 User Manual 1

VDT-100 User Manual 1 VDT-100 User Manual 1 Copyright Notice The use manual, including all its contents, is copyrighted by Videa Technology Inc.. All rights are reserved. Videa Technology Inc. reserves the right to improve

More information

Displays Open Frame Monitor Model Number: AND-TFT-150Bxx

Displays Open Frame Monitor Model Number: AND-TFT-150Bxx Displays 15.0 Open Frame Monitor Model Number: AND-TFT-150Bxx The AND-TFT-150Bxx 15.0 Open Frame Monitor series are rugged, high performance Industrial LCD Monitors, designed for commercial and industrial

More information

Sundance Multiprocessor Technology Limited. Capture Demo For Intech Unit / Module Number: C Hong. EVP6472 Intech Demo. Abstract

Sundance Multiprocessor Technology Limited. Capture Demo For Intech Unit / Module Number: C Hong. EVP6472 Intech Demo. Abstract Sundance Multiprocessor Technology Limited EVP6472 Intech Demo Unit / Module Description: Capture Demo For Intech Unit / Module Number: EVP6472-SMT949 Document Issue Number 1.1 Issue Data: 27th April 2012

More information

Information Transmission Chapter 3, image and video

Information Transmission Chapter 3, image and video Information Transmission Chapter 3, image and video FREDRIK TUFVESSON ELECTRICAL AND INFORMATION TECHNOLOGY Images An image is a two-dimensional array of light values. Make it 1D by scanning Smallest element

More information

PRODUCT NO.: PT-L735NT PRODUCT NAME: Ultra Portable Wireless LCD Projector

PRODUCT NO.: PT-L735NT PRODUCT NAME: Ultra Portable Wireless LCD Projector PRODUCT NO.: PRODUCT NAME: Ultra Portable Wireless LCD Projector MAJOR FEATURES Bright - High 2600 ANSI lumens brightness Easy wireless presentations - Easy-to-use settings - Useful Live mode - PC-free

More information

Essentials of the AV Industry Welcome Introduction How to Take This Course Quizzes, Section Tests, and Course Completion A Digital and Analog World

Essentials of the AV Industry Welcome Introduction How to Take This Course Quizzes, Section Tests, and Course Completion A Digital and Analog World Essentials of the AV Industry Welcome Introduction How to Take This Course Quizzes, s, and Course Completion A Digital and Analog World Audio Dynamics of Sound Audio Essentials Sound Waves Human Hearing

More information

SHOWLINE SL BAR 640 LINEAR WASH LUMINAIRE SPECIFICATIONS.

SHOWLINE SL BAR 640 LINEAR WASH LUMINAIRE SPECIFICATIONS. GENERAL. A.) Overview. SHOWLINE SL BAR 640 LINEAR WASH LUMINAIRE SPECIFICATIONS. 1.) The luminaire shall be a color mixing luminaire employing twenty-four (24) red, green, blue, and white LED engines.

More information

CPLUS-V2PE 4K UHD+ HDMI to Dual HDMI Scaler with Audio De-Embedding & Test Patterns

CPLUS-V2PE 4K UHD+ HDMI to Dual HDMI Scaler with Audio De-Embedding & Test Patterns CPLUS-V2PE 4K UHD+ HDMI to Dual HDMI Scaler with Audio De-Embedding & Test Patterns Operation Manual DISCLAIMERS The information in this manual has been carefully checked and is believed to be accurate.

More information

Elegance Series Components / New High-End Audio Video Products from Esoteric

Elegance Series Components / New High-End Audio Video Products from Esoteric Elegance Series Components / New High-End Audio Video Products from Esoteric Simple but elegant 3 inch height achieved in a new and original chassis Aluminum front panel. Aluminum and metal casing. Both

More information

Technical Reference. ATSC TV A/D Controller FOR TFT LCD. Model : SKY-4100M. Copyright 2008 All Rights Reserved. REV.1.0_

Technical Reference. ATSC TV A/D Controller FOR TFT LCD. Model : SKY-4100M. Copyright 2008 All Rights Reserved. REV.1.0_ Technical Reference ATSC TV A/D Controller FOR TFT LCD Model : SKY-4100M Copyright 2008 All Rights Reserved REV.1.0_2008.06.05 Page 1/13 1. Description The SKY-4100 is an interface board for LCD/PDP panel

More information

Microbolometer based infrared cameras PYROVIEW with Fast Ethernet interface

Microbolometer based infrared cameras PYROVIEW with Fast Ethernet interface DIAS Infrared GmbH Publications No. 19 1 Microbolometer based infrared cameras PYROVIEW with Fast Ethernet interface Uwe Hoffmann 1, Stephan Böhmer 2, Helmut Budzier 1,2, Thomas Reichardt 1, Jens Vollheim

More information

CORIO master C3-540 Series CORIO 3 Technology

CORIO master C3-540 Series CORIO 3 Technology C3-540 CORIO master offers a new, more efficient approach to building video systems. Using TV One s Remotely latest CORIO controlled 3 technology, version it gives the user access to new levels of video

More information

National Park Service Photo. Utah 400 Series 1. Digital Routing Switcher.

National Park Service Photo. Utah 400 Series 1. Digital Routing Switcher. National Park Service Photo Utah 400 Series 1 Digital Routing Switcher Utah Scientific has been involved in the design and manufacture of routing switchers for audio and video signals for over thirty years.

More information

DT3162. Ideal Applications Machine Vision Medical Imaging/Diagnostics Scientific Imaging

DT3162. Ideal Applications Machine Vision Medical Imaging/Diagnostics Scientific Imaging Compatible Windows Software GLOBAL LAB Image/2 DT Vision Foundry DT3162 Variable-Scan Monochrome Frame Grabber for the PCI Bus Key Features High-speed acquisition up to 40 MHz pixel acquire rate allows

More information

SECURITY RECORDING 101

SECURITY RECORDING 101 MODULE 2 SECURITY RECORDING 101 Page 1 BEGINNERS LEVEL MODULE 2. SECURITY RECORDING 101 Page 2 2.0 MODULE OUTLINE 2.1 Top DIY Recording Terms you need to know 2.2 DVR Features 2.3 DVR/NVR Technology Comparison

More information

TV4U QUAD DVB-S2 to DVB-C TRANSMODULATOR

TV4U QUAD DVB-S2 to DVB-C TRANSMODULATOR INSTRUCTION MANUAL Features of the new DVB-C transmodulators line Through the use of the FPGA technology the transmodulators provides the highest performance at the lowest price. Four carriers are formed

More information

PRODUCT NO.: PT-L735 PRODUCT NAME: Ultra Portable LCD Projector

PRODUCT NO.: PT-L735 PRODUCT NAME: Ultra Portable LCD Projector PRODUCT NO.: PRODUCT NAME: MAJOR FEATURES Bright - High 2600 ANSI lumens brightness Time-saving - One-touch auto setup - Automatic input signal detector - Speed start - Direct power off - Momentary switch

More information

43 Professional Monitors

43 Professional Monitors 43 Professional Monitors Budget Friendly Professional Displays These displays are designed to be a cost effective 24/7 commercial display solution. If your application calls for a commercial screen and

More information