Multimedia Summer Camp

Slides:



Advertisements
Similar presentations
Image Effects 2.01 Investigate graphic image design.
Advertisements

Isotherm LAB.
Compositing and Blending - Chapter 8 modified by Ray Wisman Ed Angel Professor of Computer Science, Electrical and Computer Engineering,
Image Compositing and Matting. Introduction Matting and compositing are important operations in the production of special effects. These techniques enable.
Green Screen. Objectives: 2. Understand what the difference is between a Luma key and a Chroma key. By the end of todays lesson students will: 3. Understand.
Graphics File Formats. 2 Graphics Data n Vector data –Lines –Polygons –Curves n Bitmap data –Array of pixels –Numerical values corresponding to gray-
Image Representation.
Basic Rendering Techniques V Recognizing basic rendering techniques.
NAME MANDALAS E. Lyon Lyon 1. Review – Last Class 9/8/2014  We folded our paper to create a lot of overlapping triangles  Then we wrote our.
3-D Movies, Stop Motion: Claymation, Blue Screen Lilibeth Cureño Rachel Marsh Anthony Torres.
I-1 Steps of Image Generation –Create a model of the objects –Create a model for the illumination of the objects –Create an image (render) the result I.
Addison Wesley is an imprint of © 2010 Pearson Addison-Wesley. All rights reserved. Chapter 5 Working with Images Starting Out with Games & Graphics in.
CS 638, Fall 2001 Multi-Pass Rendering The pipeline takes one triangle at a time, so only local information, and pre-computed maps, are available Multi-Pass.
CSC Computing with Images
1. 2 What do these things have in common?
Studio Production Terminology Part 2. Establishing Shot An establishing shot in film and television sets up, or establishes the context for a scene by.
CS 450: Introduction to Digital Signal and Image Processing Image Arithmetic.
Image Manipulation CSC361/661 – Digital Media Spring 2002 Burg/Wong.
Conditionals-Mod8-part41 Conditionals – part 4 Replace background Barb Ericson Georgia Institute of Technology May 2007.
Material obtained from Summer workshop in Guildford County, July, 2014 Unit 6.
TOPIC 10 THE IF STATEMENT 1 Notes adapted from Introduction to Computing and Programming with Java: A Multimedia Approach by M. Guzdial and B. Ericson,
Colors of Pigment The primary colors of pigment are magenta, cyan, and yellow. [
CMPS1371 Introduction to Computing for Engineers IMAGES.
UniS CS297 Graphics with Java and OpenGL Blending.
Final Year Project. Project Title Kalman Tracking For Image Processing Applications.
1 Printing & Imaging Technology Working with Layers Copyright © Texas Education Agency, All rights reserved. Images and other multimedia content.
Color.
Com·pos·ite k ə m ˈ päz ə t/ verb Compositing is the combining of visual elements from separate sources into single images, often to create the illusion.
Do Now Review the parts of an effective advertisement and complete the Matching Activity Worksheet.
1,2,3,4,5,6…..... Fun and Games What am I Learning Today? Prime and Composite Numbers.
Objective % Select and utilize tools for digital video production.
Landscape Photography
Elements of Art Art I
T .V. STUDIOS Size of the studio Structure of walls Cyclorama
CS1315: Introduction to Media Computation
Colour theory.
Basic Rendering Techniques
Introduction To Photo Editing SHIELA MAE A. AQUINO SRNHS.
Topic 10 The if statement Notes adapted from Introduction to Computing and Programming with Java: A Multimedia Approach by M. Guzdial and B. Ericson,
Georgia Institute of Technology
Video Titles The Titler is a versatile tool enabling you to create not just titles and credits, but animated graphics and text as well. Titles may.
Basic Rendering Techniques
Barb Ericson Georgia Institute of Technology August 2005
Chapter 5 Working with Images
Images Presentation Name Course Name Unit # – Lesson #.# – Lesson Name
Importing Files Importing is not the same as capturing.
This is the starting file for the Test 4 review
Georgia Institute of Technology
2.01 Investigate graphic image design.
Colour Theories.
Video Titles The Titler is a versatile tool enabling you to create not just titles and credits, but animated graphics and text as well. Titles may be placed.
blending blending textures reflection fog
1.02 Investigate image editing.
Lesson 11 Key Concepts.
Two ways to discuss color 1) Addition 2) Subtraction
SWITCHING.
Color Theory.
Images Presentation Name Course Name Unit # – Lesson #.# – Lesson Name
Color Model By : Mustafa Salam.
Chapter 6 Conditionals - part 4
2.01 Investigate graphic image design.
2.01 Investigate graphic image design.
2.01 Investigate graphic image design.
2.01 Investigate graphic image design.
blending blending textures reflection fog
Multiplying Fractions: Visual Fraction Models
HW#4: Image Compositing
1.02 Investigate image editing.
CSC/FAR 020, Computer Graphics, October 7, 2009
Fractions with Pattern Blocks
Presentation transcript:

Multimedia Summer Camp Blending pictures and Chromakey

Outline Creating pictures from other pieces Blending pictures Chromakey

Blending pictures Given two pictures, we can create a new pictures by mixing the colors of the pixels to reflect both pictures. When we create collages by copying, any overlap typically means that one picture shows over another. We can blend pictures by multiplying their colors and adding them. This gives us the effect of transparency.

Blending pictures We want to blending the following two pictures

Blending Picture We compute the red, green, and blue for the final pixel by taking 50% of the red, green, and blue of each of the pictures.

Blending pictures

Fade-out Simulation of fade-out feature Let’s say we have two pictures: pict1 and pict2 we can copy pict2 to pict1 multiple times using blend function. At first copy, use 100% color of pict2, and 0% color of pict1 At the second copy, use 95% color of pict2, and 5% color of pict1 At the third copy, use 90% color of pict2, and 10% color of pict1 Repeat this until copy using 0% color of pict2 and 100% color of pict1

Fade-out

Fade-out: Result

Chromakey Chroma key compositing (or chroma keying) is a technique for compositing two images or frames together in which a color (or a small color range) from one image is removed (or made transparent), revealing another image behind it. It is commonly used for weather forecast broadcast, wherein the presenter appears to be standing in front of a large map, but in the studio it is actually a large blue or green background. The meteorologist stands in front of a bluescreen, and then different weather maps are added on those parts in the image where the color is blue.

+ Subtract background (green) from the bride Copy the bride only to the beautiful scene

Chromakey There are more than one way to decide if a pixel’s color “green”. Here we consider a pixel is green if the greenness is greater than both redness and blueness.