Colour Space Conversion

Total Page:16

File Type:pdf, Size:1020Kb

Colour Space Conversion Colour 1 Shan He 2013 What is light? 'White' light is a combination of many different light wavelengths 2 Shan He 2013 Colour spectrum – visible light • Colour is how we perceive variation in the energy (oscillation wavelength) of visible light waves/particles. Ultraviolet Infrared 400 nm Wavelength 700 nm • Our eye perceives lower energy light (longer wavelength) as so-called red; and higher (shorter wavelength) as so-called blue • Our eyes are more sensitive to light (i.e. see it with more intensity) in some frequencies than in others 3 Shan He 2013 Colour perception . It seems that colour is our brain's perception of the relative levels of stimulation of the three types of cone cells within the human eye . Each type of cone cell is generally sensitive to the red, blue and green regions of the light spectrum Images of living human retina with different cones sensitive to different colours. 4 Shan He 2013 Colour perception . Spectral sensitivity of the cone cells overlap somewhat, so one wavelength of light will likely stimulate all three cells to some extent . So by mixing multiple components pure light (i.e. of a fixed spectrum) and altering intensity of the mixed components, we can vary the overall colour that is perceived by the brain. 5 Shan He 2013 Colour perception: Eye of Brain? • Stroop effect 6 Shan He 2013 Do you see same colours I see? • The number of color-sensitive cones in the human retina differs dramatically among people • Language might affect the way we perceive colour 7 Shan He 2013 Colour spaces . A colour space represents a system for accurately describing colours by some well defined parameters (e.g. some mixture of varying intensities of well-defined primary colours). Most colours can be represented using three colour components - but not all! . They are called the primary colours (or the primaries) 8 Shan He 2013 Colour spaces . There are many colour spaces. The choice of a particular space depends on the context in which we wish to describe colours. The four most common colour spaces are: • RGB: additive colour space • HSV: artistic colour space • CMY: subtractive colour space • XYZ: based on human colour perception . Others include: YIQ, YUV, YdbDr, YcbCr, xvYCC 9 Shan He 2013 RGB . Primaries: Red - Green - Blue – Note that even with the general RGB space there may be slight variations in the choice of primaries . Primaries are similar to the colour sensitivities of receptors (cone cells) in the eye . Used in TV and computer display technology . We can visualise the RGB colour space as a 3D space with axis for the intensity of red, green, and blue. Blue Cyan White Magenta Black Red Yellow 10 Shan He 2013 RGB • RGB space rendered as an opaque cube. • Note that within the cube are infinite combinations of the three primaries • Though our eyes will not be sensitive to all of these subtle variations. 11 Shan He 2013 RGB – an additive system 12 Shan He 2013 HSV . Primaries: Hue - Saturation - Value . Colour space is parametrised to be more useful to artists and designers, who are usually interested in the hue (mixture of primary colours) primarily, then they may vary the value (i.e. overall brightness) and saturation (strength of primary colours in the mix) . This is simply another geometry for expressing that of RGB . Sometimes called HSB. B (Brightness) 13 Shan He 2013 HSV 14 Shan He 2013 HSV 15 Shan He 2013 CMY . Primaries: Cyan - Magenta – Yellow . Used in printing technology . Mixing is subtractive 16 Shan He 2013 CMY – subtractive system 17 Shan He 2013 CIE XYZ . Primaries: X, Y, Z . Based on colour perception of humans (derived from colour matching experiments), so it tries to evenly distribute perceived colour changes over the space . Device independent (i.e. not specifically designed for printing or displays) . The most common representation of the CIE XYZ space is the CIE chromaticity diagram, which is a 2D projection of its cross section 18 Shan He 2013 CIE XYZ Chromacity diagram • Triangle represents a sub-space of the CIE which has red,green, and blue primaries (i.e. an RGB space) • CIE XYZ designed so all visible colours within a polygon can be mixed from the primary colours - hence strange shape • CIE XYZ can describe all visible colours, though our monitor (being RGB) cannot display those 19 Shan He 2013 Vector notation for colours [ Primary1 Primary2 Primary 3 ] [ R G B ] yellow = [ 1 1 0 ] orange = [ 1 0.5 0 ] Pink = [ 1 0.7 0.7 ] [ H S V ] pink = [ 0 0.3 1 ] [ C M Y ] red = [ 0 1 1 ] 20 Shan He 2013 Colour space conversion . Colours can be converted from one space to another . Conversion from RGB to CMY: [ C M Y ] = [ 1 1 1 ] - [ R G B ] . Example: Convert green from RGB to CMY [ C M Y ] = [ 1 1 1 ] - [ 0 1 0 ] = [ 1 0 1 ] 21 Shan He 2013 Conversion from RGB to XYZ . Each of the R, G and B primaries is a weighted sum of X, Y and Z primaries . Approx. Weights expressed in matrix notation . Conversion implemented as a matrix multiplication 0.41 0.21 0.02 [ R G B ] = [ X Y Z ] · 0.36 0.72 0.12 0.18 0.07 0.95 22 Shan He 2013 Conversion from RGB to XYZ . And for the reverse conversion... 0.584 0.311 0.047 [ X Y Z ] = [ R G B ] · 0.188 0.614 0.103 0.179 0.075 0.939 23 Shan He 2013 Colour Spaces in Java . Colour Spaces and Colours are implemented in the java.awt.color.* package . Abstract class ColorSpaces provides as constants • a number of standard colour spaces: CS_CIEXYZ, CS_sRGB • some specific colour space types: TYPE_HSV, TYPE_RGB, TYPE_CMY, TYPE_XYZ • some generic colour space types wrt. different number of components . One can obtain an instance of a colour space using the getInstance(int colorspace) method. For example: ColorSpace.getInstance(ColorSpace.CS_sRGB); returns a standard RGB colour space. 24 Shan He 2013 Colour Space Conversion in Java . It is often necessary to convert between colour spaces of different images. The ColorSpace class provides some simple methods to do this: • toRGB(float[ ] colorvalue): Transform colour value from the space to standard RGB • fromRGB(float[ ] rgbvalue): Transform colour value from RGB to the this space • toCIEXYZ(float[ ] colorvalue): Transform colour value from the space to CIEXYZ • fromCIEXYZ(float[ ] colorvalue): Transform colour value from CIEXYZ to this space 25 Shan He 2013 Colours in Java . Colours (e.g., for the Paint component) can be defined wrt. any colour space with constructor: Color(ColorSpace cspace, float[] components, float alpha) . More easily the can be defined via RGB values Color(float r, float g, float b) . Java also provides some default colours in the RGB model: • Color.RED, Color.BLUE, Color.GREEN, Color.YELLOW, Color.BLACK, Color.WHITE, Color.CYAN, etc. 26 Shan He 2013.
Recommended publications
  • COLOR SPACE MODELS for VIDEO and CHROMA SUBSAMPLING
    COLOR SPACE MODELS for VIDEO and CHROMA SUBSAMPLING Color space A color model is an abstract mathematical model describing the way colors can be represented as tuples of numbers, typically as three or four values or color components (e.g. RGB and CMYK are color models). However, a color model with no associated mapping function to an absolute color space is a more or less arbitrary color system with little connection to the requirements of any given application. Adding a certain mapping function between the color model and a certain reference color space results in a definite "footprint" within the reference color space. This "footprint" is known as a gamut, and, in combination with the color model, defines a new color space. For example, Adobe RGB and sRGB are two different absolute color spaces, both based on the RGB model. In the most generic sense of the definition above, color spaces can be defined without the use of a color model. These spaces, such as Pantone, are in effect a given set of names or numbers which are defined by the existence of a corresponding set of physical color swatches. This article focuses on the mathematical model concept. Understanding the concept Most people have heard that a wide range of colors can be created by the primary colors red, blue, and yellow, if working with paints. Those colors then define a color space. We can specify the amount of red color as the X axis, the amount of blue as the Y axis, and the amount of yellow as the Z axis, giving us a three-dimensional space, wherein every possible color has a unique position.
    [Show full text]
  • Er.Heena Gulati, Er. Parminder Singh
    International Journal of Computer Science Trends and Technology (IJCST) – Volume 3 Issue 2, Mar-Apr 2015 RESEARCH ARTICLE OPEN ACCESS SWT Approach For The Detection Of Cotton Contaminants Er.Heena Gulati [1], Er. Parminder Singh [2] Research Scholar [1], Assistant Professor [2] Department of Computer Science and Engineering Doaba college of Engineering and Technology Kharar PTU University Punjab - India ABSTRACT Presence of foreign fibers’ & cotton contaminants in cotton degrades the quality of cotton The digital image processing techniques based on computer vision provides a good way to eliminate such contaminants from cotton. There are various techniques used to detect the cotton contaminants and foreign fibres. The major contaminants found in cotton are plastic film, nylon straps, jute, dry cotton, bird feather, glass, paper, rust, oil grease, metal wires and various foreign fibres like silk, nylon polypropylene of different colors and some of white colour may or may not be of cotton itself. After analyzing cotton contaminants characteristics adequately, the paper presents various techniques for detection of foreign fibres and contaminants from cotton. Many techniques were implemented like HSI, YDbDR, YCbCR .RGB images are converted into these components then by calculating the threshold values these images are fused in the end which detects the contaminants .In this research the YCbCR , YDbDR color spaces and fusion technique is applied that is SWT in the end which will fuse the image which is being analysis according to its threshold value and will provide good results which are based on parameters like mean ,standard deviation and variance and time. Keywords:- Cotton Contaminants; Detection; YCBCR,YDBDR,SWT Fusion, Comparison I.
    [Show full text]
  • Ipf-White-Paper-Farbsensorik Ohne
    ipf_Brief_u_Rechn_Bg_Verw_27_04_09.qx7:IPF_Bb_Verwaltung_070206.qx5 27.04.2009 16:04 Uhr Seite 1 12 White Paper ‘True color’ sensors - See colors like a human does Author: Dipl.-Ing. Christian Fiebach Management Assistant © ipf electronic 2013 ipf_Brief_u_Rechn_Bg_Verw_27_04_09.qx7:IPF_Bb_Verwaltung_070206.qx5 27.04.2009 16:04 Uhr Seite 1 White Paper: ‘True color’ sensors - See colors like a human does _____________________________________________________________________ table of contents introduction 3 ‘normal observer’ determines the average value 4 Different color perception 5 standard colormetric system 6 three-dimensional color system 7 other color systems 9 sensors for ‘True color’detection 10 stating L*a*b* values is not possible with color sensors 11 2D presentations 12 3D presentations 13 different models for different tasks 14 the evaluation of ‘primary light sources’ 14 large detection areas 14 suitable for every surface 15 averages cope with difficult surfaces 15 application examples 16 1. type based selection of glass bottels 16 2. color markings on stainless steel 18 3. automated checking of paint 20 © ipf electronic 2013 2 ipf_Brief_u_Rechn_Bg_Verw_27_04_09.qx7:IPF_Bb_Verwaltung_070206.qx5 27.04.2009 16:04 Uhr Seite 1 White Paper: ‘True color’ sensors - See colors like a human does _____________________________________________________________________ introduction Applications where the color of certain objects has to be securely checked repeatedly present sensors with immense challenges. In particular, the different properties of artificial surfaces make it harder to reliably evaluate color. Why is that? And what solutions are available? In order to come closer to answering these questions, one must first know what abilities the human eye is capable of in the field of color recognition.
    [Show full text]
  • Basics of Video
    Basics of Video Yao Wang Polytechnic University, Brooklyn, NY11201 [email protected] Video Basics 1 Outline • Color perception and specification (review on your own) • Video capture and disppy(lay (review on your own ) • Analog raster video • Analog TV systems • Digital video Yao Wang, 2013 Video Basics 2 Analog Video • Video raster • Progressive vs. interlaced raster • Analog TV systems Yao Wang, 2013 Video Basics 3 Raster Scan • Real-world scene is a continuous 3-DsignalD signal (temporal, horizontal, vertical) • Analog video is stored in the raster format – Sampling in time: consecutive sets of frames • To render motion properly, >=30 frame/s is needed – Sampling in vertical direction: a frame is represented by a set of scan lines • Number of lines depends on maximum vertical frequency and viewingg, distance, 525 lines in the NTSC s ystem – Video-raster = 1-D signal consisting of scan lines from successive frames Yao Wang, 2013 Video Basics 4 Progressive and Interlaced Scans Progressive Frame Interlaced Frame Horizontal retrace Field 1 Field 2 Vertical retrace Interlaced scan is developed to provide a trade-off between temporal and vertical resolution, for a given, fixed data rate (number of line/sec). Yao Wang, 2013 Video Basics 5 Waveform and Spectrum of an Interlaced Raster Horizontal retrace Vertical retrace Vertical retrace for first field from first to second field from second to third field Blanking level Black level Ӈ Ӈ Th White level Tl T␷ T␷ ⌬t 2 ⌬ t (a) Խ⌿( f )Խ f 0 fl 2fl 3fl fmax (b) Yao Wang, 2013 Video Basics 6 Color
    [Show full text]
  • 39 Color Variations in Pseudo Color Processing of Graphical Images
    International Journal of Advanced Research and Development ISSN: 2455-4030 www.newresearchjournal.com/advanced Volume 1; Issue 2; February 2016; Page No. 39-43 Color variations in pseudo color processing of graphical images using multicolor perception 1 Selvapriya B, 2 Raghu B 1 Research Scholar, Department of Computer Science and Engineering, Bharath University, Chennai, India 2 Professor and Dean, Department of Computer Science and Engineering, Sri Raman jar Engineering College, Chennai, India Abstract In digital image processing, image enhancement is employed to give a better look to an image. Color is one of the best ways to visually enhance an image. Pseudo-color image processing assigns color to grayscale images. This is useful because the human eye can distinguish between millions of colures but relatively few shades of gray. Pseudo-coloring has many applications on images from devices capturing light outside the visible spectrum, for example, infrared and X-ray. A Color model is a specification of a color coordinate system and the subset of visible colors in this coordinate system. The key observation in this work is variation of colors in Pseudo color images using multicolor perception. This technique can be successfully applied to a variety of gray scale images and videos. Keywords: Pseudo color, color models, reference grey images, multicolor perception, image processing, computer graphics. 1. Introduction on the observer. Taking these advantages of human visual This paper is based on the idea that the human visual system perception to enhance an image a technique is applied which is more responsive to color than binary or monochrome is called pseudo color.
    [Show full text]
  • Color Space to Detect Skin Image: the Procedure and Implication
    Scientific Journal of Informatics Vol. 4, No. 2, November 2017 p-ISSN 2407-7658 http://journal.unnes.ac.id/nju/index.php/sji e-ISSN 2460-0040 Color Space to Detect Skin Image: The Procedure and Implication 1 2 3 Sukmawati Nur Endah , Retno Kusumaningrum , Helmie Arif Wibawa 1,2,3Computer Science Department, Universitas Diponegoro, Indonesia E-mail: [email protected],[email protected],[email protected] Abstract Skin detection is one of the processes to detect the presence of pornographic elements in an image. The most suitable feature for skin detection is the color feature. To be able to represent the skin color properly, it is needed to be processed in the appropriate color space. This study examines some color spaces to determine the most appropriate color space in detecting skin color. The color spaces in this case are RGB, HSV, HSL, YIQ, YUV, YCbCr, YPbPr, YDbDr, CIE XYZ, CIE L*a*b*, CIE L*u* v*, and CIE L*ch. Based on the test results using 400 image data consisting of 200 skin images and 200 non-skin images, it is obtained that the most appropriate color space to detect the color is CIE L*u*v*. Keywords: Skin Detection, Color Feature, Color Space Coversion 1. INTRODUCTION Skin is a part of human body. In an image, skin is able to present the existence of human. Furthermore, it can also be determined how many the skin is exposed in an image. The more skin is exposed, the more naked the human object in the image.
    [Show full text]
  • Habilitation `A Diriger Des Recherches from Image Coding And
    Habilitation `aDiriger des Recherches From image coding and representation to robotic vision Marie BABEL Universit´ede Rennes 1 June 29th 2012 Bruno Arnaldi, Professor, INSA Rennes Committee chairman Ferran Marques, Professor, Technical University of Catalonia Reviewer Beno^ıtMacq, Professor, Universit´eCatholique de Louvain Reviewer Fr´ed´ericDufaux, CNRS Research Director, Telecom ParisTech Reviewer Charly Poulliat, Professor, INP-ENSEEIHT Toulouse Examiner Claude Labit, Inria Research Director, Inria Rennes Examiner Fran¸oisChaumette, Inria Research Director, Inria Rennes Examiner Joseph Ronsin, Professor, INSA Rennes Examiner IRISA UMR CNRS 6074 / INRIA - Equipe Lagadic IETR UMR CNRS 6164 - Equipe Images 2 Contents 1 Introduction 3 1.1 An overview of my research project ........................... 3 1.2 Coding and representation tools: QoS/QoE context .................. 4 1.3 Image and video representation: towards pseudo-semantic technologies . 4 1.4 Organization of the document ............................. 5 2 Still image coding and advanced services 7 2.1 JPEG AIC calls for proposal: a constrained applicative context ............ 8 2.1.1 Evolution of codecs: JPEG committee ..................... 8 2.1.2 Response to the call for JPEG-AIC ....................... 9 2.2 Locally Adaptive Resolution compression framework: an overview . 10 2.2.1 Principles and properties ............................ 11 2.2.2 Lossy to lossless scalable solution ........................ 12 2.2.3 Hierarchical colour region representation and coding . 12 2.2.4 Interoperability ................................. 13 2.3 Quadtree Partitioning: principles ............................ 14 2.3.1 Basic homogeneity criterion: morphological gradient . 14 2.3.2 Enhanced color-oriented homogeneity criterion . 15 2.3.2.1 Motivations .............................. 15 2.3.2.2 Results ................................ 16 2.4 Interleaved S+P: the pyramidal profile ........................
    [Show full text]
  • Impact of Color Space on Human Skin Color Detection Using an Intelligent System
    Recent Advances in Image, Audio and Signal Processing Impact of Color Space on Human Skin Color Detection Using an Intelligent System HANI K. AL-MOHAIR, JUNITA MOHAMAD-SALEH* AND SHAHREL AZMIN SUANDI School Of Electrical & Electronic Engineering Universiti Sains Malaysia 14300 Nibong Tebal, Pulau Pinang MALAYSIA [email protected] Abstract: - Skin detection is a primary step in many applications such as face detection and online pornography filtering. Due to the robustness of color as a feature of human skin, skin detection techniques based on skin color information have gained much attention recently. Many researches have been done on skin color detection over the last years. However, there is no consensus on what color space is the most appropriate for skin color detection. Several comparisons between different color spaces used for skin detection are made, but one important question still remains unanswered is, “what is the best color space for skin detection. In this paper, a comprehensive comparative study using the Multi Layer Perceptron neural network MLP is used to investigate the effect of color-spaces on overall performance of skin detection. To increase the accuracy of skin detection the median filter and the elimination steps are implemented for all color spaces. The experimental results showed that the YIQ color space gives the highest separability between skin and non-skin pixels among the different color spaces tested. Key-Words: - skin detection, color-space, Neural Network 1 Introduction Image segmentation is a process of dividing an image into non-overlapping regions consisting of groups of connected homogeneous pixels. Typical parameters that define the homogeneity of a region in a segmentation process are color, depth of layers, gray levels, texture, etc [1].
    [Show full text]
  • Adaptive Color Space Model Based on Dominant Colors for Image and Video
    Adaptive color space model based on dominant colors for image and video... Madenda S., Darmayantie A. Adaptive color space model based on dominant colors for image and video compression performance improvement S. Madenda 1, A. Darmayantie 1 1 Computer Engineering Department, Gunadarma University, Jl. Margonda Raya. No. 100, Depok – Jawa Barat, Indonesia Abstract This paper describes the use of some color spaces in JPEG image compression algorithm and their impact in terms of image quality and compression ratio, and then proposes adaptive color space models (ACSM) to improve the performance of lossy image compression algorithm. The proposed ACSM consists of, dominant color analysis algorithm and YCoCg color space family. The YCoCg color space family is composed of three color spaces, which are YCcCr, YCpCg and YCyCb. The dominant colors analysis algorithm is developed which enables to automatically select one of the three color space models based on the suitability of the dominant colors contained in an image. The experimental results using sixty test images, which have varying colors, shapes and textures, show that the proposed adaptive color space model provides improved performance of 3 % to 10 % better than YCbCr, YDbDr, YCoCg and YCgCo-R color spaces family. In addition, the YCoCg color space family is a discrete transformation so its digital electronic implementation requires only two adders and two subtractors, both for forward and inverse conversions. Keywords: colors dominant analysis, adaptive color space, image compression, image quality, compression ratio. Citation: Madenda S, Darmayantie A. Adaptive color space model based on dominant colors for image and video compression performance improvement. Computer Optics 2021; 45(3): 405- 417.
    [Show full text]
  • VLSI Implementation of Efficient Video Processor for Worldwide TV-OUT
    VLSI Implementation of Efficient Video Processor for Worldwide TV-OUT Sungmok Lee#1, Jeonguk Im#2 , Jingun Song#3, Joohyun Kim *4, Bongsoon Kang#5 #Department of Electronics Engineering, Dong-A University 840 Hadan-dong, Saha-gu, Busan, Korea {1jackal13, 2hammer18, 3sjg123}@didec.donga.ac.kr [email protected] * SAMSUNG Electro-Mechanics Co. Ltd 314 Maetan-3-dong, Yeong-tong-gu, Suwon, Korea [email protected] Abstract-This paper presents the integrated architecture of compact architecture to reduce production costs and to cover worldwide TV-OUT video processor that can be used throughout worldwide TV-OUT formats. the world. SECAM, one of the color TV standards, uses FM modulation by contrast with NTSC and PAL. So SECAM must TABLE I have an anti-cloche filter, but the filter recommended by standard SUMMARY OF WORLDWIDE COLOR TV SYSTEM is not easy to implement the hardware due to the sharpness of the Modulation Sub-carrier Output formats frequency response. We modified characteristic of anti-cloche Method frequency(MHz) filter and modulation method so as to be identical with a result M, J/NTSC AM 3.5795454545 required by standard so that it is easy to design the hardware. 4.43/NTSC AM 4.43361875 The hardwired TV-out function is requisite since portable devices are widely getting popularized. Therefore, we propose TV-out M/PAL AM 3.5756118881 video processor that has low hardware complexity, which can be B,D,G,H,I, N/PAL AM 4.43361875 applied to various portable multimedia applications. Combination N/PAL AM 3.58206525 SECAM FM 4.40625 or 4.25 I.
    [Show full text]
  • Skin Detection in Image and Video Founded in Clustering and Region Growing
    SKIN DETECTION IN IMAGE AND VIDEO FOUNDED IN CLUSTERING AND REGION GROWING ABM Rezbaul Islam Dissertation Prepared for the Degree of DOCTOR OF PHILOSOPHY UNIVERSITY OF NORTH TEXAS August 2019 APPROVED: Bill Buckles, Major Professor Armin R. Mikler, Committee Member Robert Akl, Committee Member Kamesh Namuduri, Committee Member Barrett Bryant, Chair of the Department of Computer Science and Engineering Hanchen Huang, Dean of the College of Engineering Victor Prybutok, Dean of the Toulouse Graduate School Islam, ABM Rezbaul. Skin Detection in Image and Video Founded in Clustering and Region Growing. Doctor of Philosophy (Computer Science and Engineering), August 2019, 107 pp., 18 tables, 54 figures, 97 numbered references. Researchers have been involved for decades in search of an efficient skin detection method. Yet current methods have not overcome the major limitations. To overcome these limitations, in this dissertation, a clustering and region growing based skin detection method is proposed. These methods together with a significant insight result in a more effective algorithm. The insight concerns a capability to define dynamically the number of clusters in a collection of pixels organized as an image. In clustering for most problem domains, the number of clusters is fixed a priori and does not perform effectively over a wide variety of data contents. Therefore, in this dissertation, a skin detection method has been proposed using the above findings and validated. This method assigns the number of clusters based on image properties and ultimately allows freedom from manual thresholding or other manual operations. The dynamic determination of clustering outcomes allows for greater automation of skin detection when dealing with uncertain real-world conditions.
    [Show full text]
  • Video Demystified
    Contents i Video Demystified A Handbook for the Digital Engineer Second Edition by Keith Jack S E M I C O N D U C T O R An imprint of LLH Technology Publishing Eagle Rock, Virginia ii Contents About the Author Keith Jack has been the architect for numerous multimedia ICs for the PC and consumer markets, including the world’s first single-chip NTSC/PAL digital encoder/decoder (Brooktree Corpora- tion). Currently with Harris Semiconductor, he is now working on next-generation multimedia products. Library of Congress Cataloging-in-Publication Data Jack, Keith, 1955– Video demystified: a handbook for the digital engineer / Keith Jack. -2nd ed. p. cm. Includes bibliographical references and index. ISBN 1-878707-36-1 casebound ISBN 1-878707-23-X paperbound 1. Digital television. 2. Microcomputers. 3. Video recordings--Data processing. I. Title. TK6678.J33 1996 621.388--dc20 96-076446 CIP Many of the products designated in this book are trademarked. Their use has been respected through appropriate capitalization and spelling. Copyright © 1996 by HighText Interactive, Inc., San Diego, CA 92121 All rights reserved. No part of this book may be reproduced, in any form or means whatsoever, without permission in writing from the publisher. While every precaution has been taken in the preparation of this book, the publisher, and author assume no responsibility for errors or omissions. Neither is any liability assumed for damages resulting from the use of the information contained herein. Printed in the United States of America 10 9 8 7 6 5 4 3 2 1 Cover design: Sergio Villarreal Developmental editing: Carol Lewis Production: Lynn Edwards ISBN: 1-878707-23-X (paperbound) ISBN: 1-878707-36-1 (casebound) Library of Congress catalog card number: 96-076446 Contents iii Foreword The foreword to the first edition of this book started with “Video on computers is a hot topic.” If it was hot then, it is now white hot.
    [Show full text]