Image Editing II. Simple Blending =.7 x+.5 x Each pixel in a layer is multiplied by the same opacity value.

Slides:



Advertisements
Similar presentations
How to Create a Transparent Image. Locate an image Locate an image, right-click on it and select “Save image as...” or “Save picture as…”
Advertisements

 Create an ID card which represents you. This could be who you really are or who you would like to be.
L.Ghadah R. Hadba CT1514-L1.  Computer Graphics :refers to processing of creating a new image from Geometry, Lighting parameters, Materials and Textures.Using.
Advanced Imaging Techniques Lumberton High Sci Vis II V
V Material obtained from a July, 2014 summer workshop in Guildford County.
Compositing Images in Photoshop FYS100 Creative Discovery in Digital Art Forms Spring 2007 Burg.
Welcome To Photoshop CS5 S.K. Sublania, Sr. Technical Officer, Division of Computer Applications, Indian Agricultural Statistics Research Institute, New.
Course Objectives… In this course, you will learn how to:  Capture pictures from many sources  Enhance your pictures with graphics software (Photoshop.
Fireworks MX. 2 Lesson 1a—Create Slices & Hotspots n Fireworks allows you to add animation (behaviors) already written in ___________. n However, users.
Photoshop Selection Tools Web Design Section 5-11 Part or all of this lesson was adapted from the University of Washington’s “Web Design & Development.
Adobe Photoshop CS5 – Illustrated Unit B: Selecting Pixels.
CSC/FAR 020, Computer Graphics, September 18, 2013 Dr. Dale E. Parson Outline for week 4, Assignment #3, due 10/2.
USING PHOTOSHOP ON PC (WINDOWS) SHORT COURSE SECTION II OFFERED BY INSTRUCTIONAL COMPUTING UNIVERSITY OF MISSOURI – ST.LOUIS.
Introduction to Computer Graphics
Transparency Transparency (alpha, opacity) defines a pixel color’s visibility in a layer Every element imported into AE contains an opacity channel If.
Discover Digital Textile Printing for Fashion & Textiles Introduction to Photoshop.
INF1090 Part Deux Photography- Photomanipulation.
Photoshop: Getting to Know Layers Computer Information Technology Section 7-5.
Lecture 4 - Introduction to Computer Graphics
Media Arts – Review Day 2 Photoshop Tools and Functions.
How To Use This Template
Photoshop I I450 Technology Seminar. Adobe Photoshop Illustrator Acrobat InDesign ImageReady.
Animate picture to peek from bottom (1 of 3) 1. Right click on picture you want to animate. 2. Click on Custom Animation. 2 1 R.
Digital Multimedia, 2nd edition Nigel Chapman & Jenny Chapman Chapter 3 This presentation © 2004, MacAvon Media Productions Introduction to Computer Graphics.
Photoshop Projects Cassie Paulsen. Atreyu I first found a picture of the band Atreyu. I started by lightening the whole image using the dodge tool. I.
Graphics. Graphic is the important media used to show the appearance of integrative media applications. According to DBP dictionary, graphics mean drawing.
CSC/FAR 020, Computer Graphics, September 24, 2014 Dr. Dale E. Parson Outline for week 5.
Saturday, September 16, 2006 By: April M. Bowser Photoshop 7 Session 1.
Show images on digital camera, select one and click open with… Photoshop. Camera Photos:
Adobe Photoshop CS Design Professional SELECTIONS ENHANCING SPECIFIC.
Adobe Photoshop Ch 5 Notes Selecting Image Content.
11in X 8.5in Resoultion:300 Color Mode: RGB Color 8 Bit.
Image Processing Part II. 2 Classes of Digital Filters global filters transform each pixel uniformly according to the function regardless of its location.
Picture This! Multiply Fractions by drawing arrays.
Lecture # 16 GIMP and Image Editing. GIMP by Example: Restoring Pictures.
Even more Photoshop Tools, techniques and more....
1 Layer up to keep warm… A short tutorial on the usage of layers.
Lecture # 19 Image Processing II. 2 Classes of Digital Filters Global filters transform each pixel uniformly according to the function regardless of.
Photoshop: Getting to Know Layers Computer Information Technology Section 7-5.
Presentations PowerPoint. Presentation A series of pictures (slides) to present in sequence What is a picture? –An array of graphical elements Lines,
DIRECTIONS for Landforms Power Point Presentation (grade 3) After you are done, delete this slide –EDIT  DELETE SLIDE On the title slide, replace the.
WORKING WITH SELECTIONS MASKS and CHANNELS 3D IMAGES LAYER BASICS PHOTO.
* Edit photos * Create banners * Create animations * Enhance documents/presentations * Create documents * And many more.
Aim: How can we make basic adjustments to layers?
ITEC2110, Digital Media Chapter 3 Digital Image Processing 1 GGC -- ITEC Digital Media.
Photoshop: Getting to Know Layers Computer Information Technology Section 7-5.
Chapter 7 Working with Distortions, Gradient Meshes, Envelopes, and Blends.
CSC/FAR 020, Computer Graphics, September 28-30, 2009
Spring 2007.
Adobe Photoshop 101 With Professor John Blandin Technology Department
Bitmap Basics in Fireworks
Photoshop and Image Editing II
Photoshop Selection Tools
Watercolor and ink wash face tutorial
IMAGES.
SELECTIVE COLOUR 1)Select one area and Image Adjustments black and White. Or 2)Right click Duplicate layer. Turn to black and white. Select one area and.
Chemical or Physical Change.
Introduction to Computer Graphics
Transparency Skills: selecting irregular shapes with the magic wand tool, using layers Concepts: transparency This work is licensed under a Creative.
Working with layers in Photoshop
To create my banner I started off with making a blank Photoshop document and removing the background. I then needed to add my page boarder which features.
Images to play around with
More Layers, Moving, Copying
Photoshop Bell Work Hand Tool: The hand tool moves an image within its window Zoom Tool: The Zoom Tool magnifies and reduces the view of an image. CTRL.
CSC020, Computer Graphics, Assignment 3 1.
The Image The pixels in the image The mask The resulting image 255 X
Use of Photo Shop.
To be able to create my first advert, I needed an image to go along of the bottom of my advert. I decided to use an image that match the colours on my.
Op Art Directions.
Changing Background Will Schafer.
Presentation transcript:

Image Editing II

Simple Blending =.7 x+.5 x Each pixel in a layer is multiplied by the same opacity value

Simple Blending =+ xx Opacity values can be visualized as gray levels

Each pixel in a layer can have a different opacity value The opacity values for a layer’s pixels can be visualized as a grayscale image This grayscale image is called a “mask” Complex Blending

=+ xx Layer Masks

Selection Mask One bit for each pixel 1 = selected 0 = not selected

Selection Mask ImageSelectMask Selecting all yellow and some red pixels

Copy ImageSelectMask PasteImagePasteMask

Copy Algorithm for (every pixel [x,y] in the image) { if (selectMask[x,y] == 1) { pasteImage[x,y] = image[x,y]; pasteMask[x,y] = 1; } else { pasteMask[x,y] = 0; }

Layer Composition Algorithm Layer = mask+image Image for (every pixel [x,y] in the layer) { if (mask[x,y] == 1) { new[x,y] = layer[x,y]; } else { new[x,y] = image[x,y]; } New

Moving a Layer

Layer = mask+image Image New Move layer pixels without touching image pixels

Cut What happens to the deleted pixels? Replace with background color

Picture Editing

Object representations of pictures Types of objects –Lines –Rectangles –Ovals –Text –Curves –Pictures Text

Picture = array of drawing objects 0) Rect(10,10,50,40,tan,yellow) 1) Oval(0,30,40,20,blue,purple) 2) Line(20,0,20,80,gray)

Adding an object 0) Rect(10,10,50,40,tan,yellow) 1) Oval(0,30,40,20,blue,purple) 2) Line(20,0,20,80,gray) 3) Text(25,25,”Hello”, black,”Times” ) Hello

Selecting an object 0) Rect(10,10,50,40,tan,yellow) 1) Oval(0,30,40,20,blue,purple) 2) Line(20,0,20,80,gray) 3) Text(25,25,”Hello”, black,”Times” ) Hello CurObj = 2

Deleting an object 0) Rect(10,10,50,40,tan,yellow) 1) Oval(0,30,40,20,blue,purple) 2) Line(20,0,20,80,gray) 3) Text(25,25,”Hello”, black,”Times” ) Hello CurObj = 2

Deleting an object 0) Rect(10,10,50,40,tan,yellow) 1) Oval(0,30,40,20,blue,purple) 2) Text(25,25,”Hello”, black,”Times” ) Hello CurObj = Why no missing pixels?

Deleting an object 0) Rect(10,10,50,40,tan,yellow) 1) Oval(0,30,40,20,blue,purple) 2) Text(25,25,”Hello”, black,”Times” ) Hello CurObj = Does object delete work like images or like text?

Moving an object 0) Rect(10,10,50,40,tan,yellow) 1) Oval(0,30,40,20,blue,purple) 2) Text(25,25,”Hello”, black,”Times” ) Hello

Moving an object 0) Rect(10,10,50,40,tan,yellow) 1) Oval( 30,30,40,20,blue,purple) 2) Text(25,25,”Hello”, black,”Times” ) Hello

Changing an object 0) Rect(10,10,50,40,tan,yellow) 1) Oval(30,30,40,20,blue,purple) 2) Text(25,25,”Hello”, red,”Arial” ) Hello

Move an object back

0) Oval(30,30,40,20,blue,purple) 1) Rect(10,10,50,40,tan,yellow) 2) Text(25,25,”Hello”, red,”Arial” ) Hello

Changing an image Sequoa -> Sequoia Select the “a” with magic wand

Changing an image Sequoa -> Sequoia Drag the “a” to the right Leaves ugly blank pixels

Change using objects Sequoa Select text insertion point Image object Text object

Change using objects Sequoia Image object Text object

Compare Why are images better than objects? –More realistic pictures –Easy to generate with cameras and scanners Why are objects better than images? –Less space –Easier to make changes