June 30 th, 2008 Lesson notes taken from professor Hongmei Zhu class.

Size: px
Start display at page:

Download "June 30 th, 2008 Lesson notes taken from professor Hongmei Zhu class."

Transcription

1 P. 1 June 30 th, 008 Lesson notes taken from professor Hongmei Zhu class. Sharpening Spatial Filters. 4.1 Introduction Smoothing or blurring is accomplished in the spatial domain by pixel averaging in a neighborhood (or spatial integration). What averaging filter does is replacing the value of every pixel in an image by the average of the intensity levels in the neighborhood defined by the filter mask. The most obvious application of smoothing is noise reduction. But, averaging filters have the undesirable effect that they blur edges. To undo this effect we can use sharpening techniques. Often one prefers to have sharpened images to reflect the real details like the figures below. To be able to read something from a moving object (license plate of a moving car), or to be able to read a bar code (one dimensional image), sometimes it is necessary to apply sharpening first. The principal objective of sharpening an image is to highlight transitions in intensity. Therefore, sharpening can be done by spatial differentiation. Different types of Sharpening GIMP has various sharpening options in enhance and edge detection, such as sharpen, unsharp mask, the differences of Gaussian, Edge, Laplace, Sobel, etc. Outline Motivation Basics Laplacian filter Unsharp masking, highboost filtering 4.. Basics - Foundation of Sharpening Derivatives and Differences The derivatives of a digital image are usually defined in terms of differences. This is how we calculate the first derivative f (x). From calculus we know that therefore f ( x+δ x) = f( x) + f '( x) Δx Or f ( x+ 1) = f( x) + f '( x) which we can derive that f '( x) = f( x+ 1) f( x) (1) To calculate the second derivative at x, f (x), use formula (1) two times. f '( x) f ( x+ Δx) f( x), Δx

2 f ''( x) = f '( x+ 1) f '( x) = [ f ( x+ ) f( x+ 1)] [ f( x+ 1) f( x )] f( x ) f( x 1) f( x) Or f (x-1) = f(x + 1) -f(x) + f(x 1) f = ( x 1) f ( x) Illustration of derivatives in a 1-D digital function (p159) P. We approximate the 1st order derivatives by f = + x and the nd order derivatives by f = f ( x+ 1) f ( x) + f ( x 1) x Properties of derivatives The 1st derivatives satisfy three properties which are a) zero in areas of constant b) nonzero at the onset of an intensity step or ramp c) nonzero along ramps The nd derivatives satisfy three properties which are a) zero in areas of constant b) nonzero at the onset of an intensity step or ramp c) zero along ramps if constant slopes Edges in digital images often are ramp-like transitions in intensity, in which case the first derivative of the image would result in thick edges because the derivative is nonzero along a ramp. On the other hand, the second derivative would produce a double edge one pixel thick, separated by zeros. Therefore, second derivatives are much easier to implement, and enhance fine details much better than the first derivatives.

3 4.3. Sharpening using Laplacian In Gimp, Filter Edge detect - Laplace Laplacian filters (p161) are isotropic The Laplacian for a function f ( x,y) is defined as filter. Isotropic filters are rotation invariant, in the sense that rotating the f f + image and then applying the filter gives x y the same result as applying the filter to where the image first and then rotating the f result. = f ( x + 1,y) + f ( x 1,y) f ( x,y) x f = f ( x,y+ 1) + f ( x,y 1) f ( x,y ). y The discrete Laplacian is f f + = f ( x + 1,y) + f ( x 1,y) + f ( x,y+ 1) + f ( x,y 1) 4f ( x,y) x y In (a) and (c) derivatives are calculated along the x and y axis, vertical and horizontal directions. In (b) and (d) derivatives are calculated along four directions including two diagonal. P. 3 Laplacian filters (p163) (a) shows a slightly blurred image of the North Pole of the moon. (b) shows the result of filtering this image with the Laplacian filter that calculates derivatives only in two directions. ( c) is the scaled image. g( x, y) = f f max f f min min After scaling, the dominant features are edges and sharp intensity discontinuities. The background, previously black, is now gray. The grayish appearance is typical of Laplacian images that have been scaled properly.

4 P. 4 Laplacian filters (p16) Because the Laplacian is a derivative operator, it highlights the intensity discontinuous in an image and de-emphasizes the regions with slowing varying intensity levels. It produces grayish edge lines and discontinuities, superimposed on a dark, featureless background. Thus, we can get a better sharpened ( ) ( ) image by ( ) ( ) f x,y f x,y g x,y = f x,y + c + x y where c = -1 if the center value in the filter is negative; otherwise, c = 1; (d) shows the result obtained using equation above with c = -1. The detail in this image is clearer and shaper than in the original image. (e) shows the result of repeating the procedure with the filter in fig 3.37/b, which calculates the derivatives in four directions. There is a significant improvement in sharpness. Results such as those in fig (c ) and (d) have made Laplacian a tool of choice for sharpening digital images Unsharp Masking, Highboost Filtering (p16) Unsharpen Masking (k=1) and Highboost Filtering (k>1) A process is often used for the printing and publishing industry to sharpen images, involving subtracting an unsharp (smoothed) version of an image from its original: f x,y Blur the original image ( ) Subtract the blurred image from the original (unsharp mask) g x,y = f x,y f x,y mask ( ) ( ) ( ) Add the mask to the original (add a weighted portion of the mask back to the original image: g x,y = f x,y + k g x,y k 0 ( ) ( ) ( ) mask When k = 1, we have unsharp masking, as defined above g( x, y) = f ( x, y) f ( x, y), when k > 1, the process is referred to as highboost filtering. Choosing k < 1 de-emphasizes the contribution of the unsharp mask.

5 P. 5 f ( x, y) blurred image g( x, y) = f ( x, y) f ( x, y) unsharp masking g( x, y) = f ( x, y) + k[ f ( x, y) f ( x, y)] highboost masking Mechanics of Unsharpen Masking (p164) (a) is the original signal (b) shows the result of imaging ( c) is the unsharp mask, obtained by subtracting the blurred signal from the original. (d) is the final sharpened result, obtained by adding the mask to the original signal Example (p165)

6 GIMP tutorial: smart sharpening taken from Original image After Sharpening P. 6 Step 1 Here is the original image loaded into GIMP. It is noticeably soft, probably due to bad out of focus. It really shows up in prints. Note: be sure to do any other editing that you want to on the image first, especially down sampling or upsampling (resizing). Sharpening should always be the last step that you do. Step : Note: be sure to do step that you do. Duplicate the image by pressing Ctrl+D or right-click and select <Image> Image -> Duplicate. It might be wise to minimize the original image window now. You can open it later to compare to the result. Right-click on the duplicate image and select <Image> Image -> Mode -> Decompose. In the decompose dialog box, select LAB (or HSV; see Note 1). Check the "As layers" checkbox (see Note ) and click OK. This will create a new window with the image decomposed into the Luminosity ("brightness"), A and B channels as 3 layers. This will allow us to isolate and sharpen the luninosity channel which is a) the most important, and b) should be the cleanest in terms of noise At this point I usually turn off visibility of the A and B layers in the Layers dialog by clicking on the "eyes".

7 P. 7 Step 3 Go to the duplicate image. Right-click and select <Image> Filters -> Edge Detect -> Edge. In the Edge Detect dialog box, select a parameter value of the appropriate size for the edges in your image. You may need to experiment with this. For the example image I chose 6 Now convert the edges image to grayscale by right clicking on it and selecting <Image> Image -> Mode -> Grayscale. This image is going to become our sharpening mask. Step 4 The next step is to adjust the tonality a little so that areas that need sharpening are really white and anything that doesn't need sharpening at all is really black. Open the Levels dialog (<Image> Image -> Colors - > Levels). Bring the black point up and the white point down to filter out any insignificant edges. You may need to play around with the exact positions of the sliders. Click OK when the image outlines the significant edges in white and most everything else is black. How much you'll need to tweak this really depends on the image. There wasn't a lot of spurious edges shown here, so a small adjustment was all that was necessary. Step 5 Now apply a gaussian blur (<Image> Filters -> Blur -> Gaussian Blur) to smooth out the edges a little. A radius of between 3 and 10 pixels (horizontal and vertical) should be enough. In the example I used 7

8 P. 8 Step 6 If you want you can use Levels again to adjust the white and black points of the mask. I find this is usually a good idea after the blur. In this example I pulled the white point slider down a bit. Step 7 Open the Layers dialog. Select the LAB image (if HSV, value) in the drop down box at the top and then click on the Channels tab. Click on the new channel button ( "Sharpening Mask. ) at the bottom of the dialog to create a new channel. Name it Step 8 Right-click in the blurred/edges image window and <Image> Select -> All. Right-click again and select <Image> Edit -> Copy. (Alternatively you can use keyboard shortcuts Ctrl+A and Ctrl+C in succession). In the Layers dialog, make sure the Sharpening Mask channel is selected. Go back to the LAB (value) window and paste (<Image> Edit -> Paste or Ctrl+V). Select the Layers tab in the Layers dialog and click on the anchor button ( the floating image. ) to anchor

9 P. 9 Step 9 Click on the Channels tab in the Layers dialog. You should see a tiny version of the sharpening mask in the channel icon, indicating that you properly pasted the sharpening mask into the new channel. At this point you may wish to click on the eye icon to make the sharpening mask invisible. Select the Sharpening Mask channel and click the "Channel to Selection" button ( ). You should see "marching ants. Step 10 Important: in the Layers dialog, click on the Layers tab and make sure the luminosity layer (if HSV, Background layer of Value window) is selected, and is the only one selected. We only want to sharpen the luminosity channel Apply an unsharp mask (<Image> Filters -> Enhance -> Unsharp Mask). You may want to experiment with the settings here. You will find that you can use much higher amounts of sharpening (than if the entire image were selected) without significantly degrading the image. In the example here I used Radius=1, Amount=.0 (00%?), Threshold=0. Now get rid of the selection (right-click and <Image> Select -> None) and zoom in (= key) to examine the results. If you're not happy with the results, undo and try the sharpen step again with different parameters.

10 P. 10 Step 11 It's time to reconstruct our original image from the LAB (HSV) components. Right-click in the luminosity (value) window and select (<Image> Image -> Mode -> Compose). In the Compose Options dialog, make sure that you have selected LAB (HSV) on the left and on the right that the Luminosity, A and B (Hue, Saturation and Value) components are matched up with their respective images. Click OK; this should create a new composite image Final Step Examine the resulting image, zooming in to examine edge detail.

Filtering in the spatial domain (Spatial Filtering)

Filtering in the spatial domain (Spatial Filtering) Filtering in the spatial domain (Spatial Filtering) refers to image operators that change the gray value at any pixel (x,y) depending on the pixel values in a square neighborhood centered at (x,y) using

More information

Image Enhancement in spatial domain. Digital Image Processing GW Chapter 3 from Section (pag 110) Part 2: Filtering in spatial domain

Image Enhancement in spatial domain. Digital Image Processing GW Chapter 3 from Section (pag 110) Part 2: Filtering in spatial domain Image Enhancement in spatial domain Digital Image Processing GW Chapter 3 from Section 3.4.1 (pag 110) Part 2: Filtering in spatial domain Mask mode radiography Image subtraction in medical imaging 2 Range

More information

IMAGE ENHANCEMENT IN SPATIAL DOMAIN

IMAGE ENHANCEMENT IN SPATIAL DOMAIN A First Course in Machine Vision IMAGE ENHANCEMENT IN SPATIAL DOMAIN By: Ehsan Khoramshahi Definitions The principal objective of enhancement is to process an image so that the result is more suitable

More information

CoE4TN4 Image Processing. Chapter 3: Intensity Transformation and Spatial Filtering

CoE4TN4 Image Processing. Chapter 3: Intensity Transformation and Spatial Filtering CoE4TN4 Image Processing Chapter 3: Intensity Transformation and Spatial Filtering Image Enhancement Enhancement techniques: to process an image so that the result is more suitable than the original image

More information

1.Discuss the frequency domain techniques of image enhancement in detail.

1.Discuss the frequency domain techniques of image enhancement in detail. 1.Discuss the frequency domain techniques of image enhancement in detail. Enhancement In Frequency Domain: The frequency domain methods of image enhancement are based on convolution theorem. This is represented

More information

Digital Image Processing

Digital Image Processing Digital Image Processing Part 2: Image Enhancement Digital Image Processing Course Introduction in the Spatial Domain Lecture AASS Learning Systems Lab, Teknik Room T26 achim.lilienthal@tech.oru.se Course

More information

Reveal the mystery of the mask

Reveal the mystery of the mask Reveal the mystery of the mask Imagine you're participating in a group brainstorming session to generate new ideas for the design phase of a new project. The facilitator starts the brainstorming session

More information

GIMP Layers. Creating a Blank Image

GIMP Layers. Creating a Blank Image GIMP Layers One of the most powerful features of modern imaging software is the ability to work with layers. If an image is made of layers, we can work on the part that is in one layer without affecting

More information

Add Photoshop Masks and Adjustments to RAW Images

Add Photoshop Masks and Adjustments to RAW Images Add Photoshop Masks and Adjustments to RAW Images Contributor: Seán Duggan n Specialty: Fine Art Primary Tool Used: Photoshop Masks The adjustments you make in Camera Raw are global in nature, meaning

More information

Color and More. Color basics

Color and More. Color basics Color and More In this lesson, you'll evaluate an image in terms of its overall tonal range (lightness, darkness, and contrast), its overall balance of color, and its overall appearance for areas that

More information

Using the Advanced Sharpen Transformation

Using the Advanced Sharpen Transformation Using the Advanced Sharpen Transformation Written by Jonathan Sachs Revised 10 Aug 2014 Copyright 2002-2014 Digital Light & Color Introduction Picture Window Pro s Advanced Sharpen transformation is a

More information

ADD A REALISTIC WATER REFLECTION

ADD A REALISTIC WATER REFLECTION ADD A REALISTIC WATER REFLECTION In this Photoshop photo effects tutorial, we re going to learn how to easily add a realistic water reflection to any photo. It s a very easy effect to create and you can

More information

2.0 4 Easy Ways to Delete Background to Transparent with GIMP. 2.1 Using GIMP to Delete Background to Transparent

2.0 4 Easy Ways to Delete Background to Transparent with GIMP. 2.1 Using GIMP to Delete Background to Transparent 1.0 Introduction As JPG files don't support transparency, when you open a JPG image in GIMP with the purpose of making the background transparent. The first thing you must to do is Add Alpha Channel. It

More information

EXTREME CONTRAST PHOTO EFFECT

EXTREME CONTRAST PHOTO EFFECT EXTREME CONTRAST PHOTO EFFECT In this Photoshop tutorial, we re going to learn how to use layers, layer blend modes, some noise, a little sharpening, and a simple adjustment layer to easily give a photo

More information

Sharpening Spatial Filters ( high pass)

Sharpening Spatial Filters ( high pass) Sharpening Spatial Filters ( high pass) Previously we have looked at smoothing filters which remove fine detail Sharpening spatial filters seek to highlight fine detail Remove blurring from images Highlight

More information

This Photoshop Tutorial 2012 Steve Patterson, Photoshop Essentials.com. Not To Be Reproduced Or Redistributed Without Permission.

This Photoshop Tutorial 2012 Steve Patterson, Photoshop Essentials.com. Not To Be Reproduced Or Redistributed Without Permission. How To Replace The Sky In A Photo In this Photoshop tutorial, we ll learn how to easily replace the sky in a photo! We ll use a basic selection tool and a layer mask to separate the sky from the area below

More information

Photoshop Elements 3 Layers

Photoshop Elements 3 Layers Photoshop Elements 3 Layers One of the most powerful features of modern imaging software is the ability to work with layers. If an image is made of layers, we can work on the part that is in one layer

More information

Blend Textures With Photos

Blend Textures With Photos Blend Textures With Photos Here's the photo I'll be starting with: The original image. ( 2015 Steve Patterson) I like the photo, but given its subject matter, I think it would look even better if I grunged

More information

Tutorial: Correcting images

Tutorial: Correcting images Welcome to Corel PHOTO-PAINT, a powerful tool for editing photos and creating bitmaps. In this tutorial, you'll learn how to perform basic image corrections to a scanned photo. This is what the image looks

More information

Image Enhancement. DD2423 Image Analysis and Computer Vision. Computational Vision and Active Perception School of Computer Science and Communication

Image Enhancement. DD2423 Image Analysis and Computer Vision. Computational Vision and Active Perception School of Computer Science and Communication Image Enhancement DD2423 Image Analysis and Computer Vision Mårten Björkman Computational Vision and Active Perception School of Computer Science and Communication November 15, 2013 Mårten Björkman (CVAP)

More information

SHAPE CLUSTER PHOTO DISPLAY

SHAPE CLUSTER PHOTO DISPLAY SHAPE CLUSTER PHOTO DISPLAY In this Photoshop tutorial, we ll learn how to display a single photo as a cluster of shapes, similar to larger wall cluster displays where several photos, usually in different

More information

Module All You Ever Need to Know About The Displace Filter

Module All You Ever Need to Know About The Displace Filter Module 02-05 All You Ever Need to Know About The Displace Filter 02-05 All You Ever Need to Know About The Displace Filter [00:00:00] In this video, we're going to talk about the Displace Filter in Photoshop.

More information

Step 1: Create A New Photoshop Document

Step 1: Create A New Photoshop Document Film Strip Photo Collage - Part 2 In part one of this two-part Photoshop tutorial, we learned how Photoshop s shape tools made it easy to draw a simple film strip which we can then use as a photo frame,

More information

Inverted Colors Photo Effect With Photoshop

Inverted Colors Photo Effect With Photoshop Inverted Colors Photo Effect With Photoshop Written by Steve Patterson. In this Photoshop Effects tutorial, we re going to look at how to invert the colors in an image to create interesting photo effects.

More information

Logo Contest Pic. A Foray into Photoshop. Contributed by: Eric Rasmussen a.k.a. Sylvanite

Logo Contest Pic. A Foray into Photoshop. Contributed by: Eric Rasmussen a.k.a. Sylvanite Logo Contest Pic A Foray into Photoshop Contributed by: Eric Rasmussen a.k.a. Sylvanite This tutorial was downloaded from http://www.penturners.org The International Association of Penturners Prologue

More information

PHOTOSHOP INVERTED COLORS PHOTO EFFECT

PHOTOSHOP INVERTED COLORS PHOTO EFFECT Photo Effects: Photoshop Inverted Colors Photo Effect PHOTOSHOP INVERTED COLORS PHOTO EFFECT Most people would agree that taking a stroll through the forest can be very calming and peaceful, with all of

More information

The Unsharp Mask. A region in which there are pixels of one color on one side and another color on another side is an edge.

The Unsharp Mask. A region in which there are pixels of one color on one side and another color on another side is an edge. GIMP More Improvements The Unsharp Mask Unless you have a really expensive digital camera (thousands of dollars) or have your camera set to sharpen the image automatically, you will find that images from

More information

Step 5) Split the red data using the Multi Scale Decomposition tool into a detail and residual background image.

Step 5) Split the red data using the Multi Scale Decomposition tool into a detail and residual background image. Step 1) Press the Copy Portion toolbar button then left-click and drag a rectangle to crop the image. Press the Copy Portion button again to turn off cropping. Step 2) Scale the cropped image by 0.50 to

More information

The Layer Blend Modes drop-down box in the top left corner of the Layers palette.

The Layer Blend Modes drop-down box in the top left corner of the Layers palette. Photoshop s Five Essential Blend Modes For Photo Editing When it comes to learning Photoshop, believe it or not, there's really only a handful of things you absolutely, positively need to know. Sure, Photoshop

More information

Transforming Your Photographs with Photoshop

Transforming Your Photographs with Photoshop Transforming Your Photographs with Photoshop Jesús Ramirez PhotoshopTrainingChannel.com Contents Introduction 2 About the Instructor 2 Lab Project Files 2 Lab Objectives 2 Lab Description 2 Removing Distracting

More information

Practical Image and Video Processing Using MATLAB

Practical Image and Video Processing Using MATLAB Practical Image and Video Processing Using MATLAB Chapter 10 Neighborhood processing What will we learn? What is neighborhood processing and how does it differ from point processing? What is convolution

More information

Advanced Sharpening in Photoshop

Advanced Sharpening in Photoshop Advanced Sharpening in Photoshop A Tutorial by Ray Grace ARPS DPAGB There are many various methods of sharpening in Photoshop all of which work to a greater or lesser degree. This particular method is

More information

Photo Retouch. We will start with the boring image on the top and get to the shining one on the bottom:

Photo Retouch. We will start with the boring image on the top and get to the shining one on the bottom: Photo Retouch In this tutorial we will explore a few simple techniques to improve a digital photo using GIMP. Among other, we will make use of a couple of new features introduced in the new GIMP 2.4, the

More information

Calibration. Click Process Images in the top right, then select the color tab on the bottom right and click the Color Threshold icon.

Calibration. Click Process Images in the top right, then select the color tab on the bottom right and click the Color Threshold icon. Calibration While many of the numbers for the Vision Processing code can be determined theoretically, there are a few parameters that are typically best to measure empirically then enter back into the

More information

MassArt Studio Foundation: Visual Language Digital Media Cookbook, Fall 2013

MassArt Studio Foundation: Visual Language Digital Media Cookbook, Fall 2013 21 / TONAL SCALE 1 In this section we ll be exploring tonal scale and how to adjust it using Photoshop to address common problems such as blown out highlights, murky images lacking contrast or a colorcast

More information

Adobe Photoshop. Levels

Adobe Photoshop. Levels How to correct color Once you ve opened an image in Photoshop, you may want to adjust color quality or light levels, convert it to black and white, or correct color or lens distortions. This can improve

More information

CSE 564: Scientific Visualization

CSE 564: Scientific Visualization CSE 564: Scientific Visualization Lecture 5: Image Processing Klaus Mueller Stony Brook University Computer Science Department Klaus Mueller, Stony Brook 2003 Image Processing Definitions Purpose: - enhance

More information

Image Enhancement using Histogram Equalization and Spatial Filtering

Image Enhancement using Histogram Equalization and Spatial Filtering Image Enhancement using Histogram Equalization and Spatial Filtering Fari Muhammad Abubakar 1 1 Department of Electronics Engineering Tianjin University of Technology and Education (TUTE) Tianjin, P.R.

More information

COLORIZE A PHOTO WITH MULTIPLE COLORS

COLORIZE A PHOTO WITH MULTIPLE COLORS COLORIZE A PHOTO WITH MULTIPLE COLORS In this Photoshop photo effects tutorial, we re going to learn how to colorize a photo using multiple colors. It s an effect I ve seen used quite a bit in ads for

More information

GIMP More Improvements

GIMP More Improvements GIMP More Improvements The Unsharp Mask Unless you have a really expensive digital camera (thousands of dollars) or have your camera set to sharpen the image automatically, you will find that images from

More information

ADDING RAIN TO A PHOTO

ADDING RAIN TO A PHOTO ADDING RAIN TO A PHOTO Most of us would prefer to avoid being caught in the rain if possible, especially if we have our cameras with us. But what if you re one of a large number of people who enjoy taking

More information

Creating a Watercolor Painting From a Photo. Open the photo you want to appear to be a watercolor painting. I am using the photo below:

Creating a Watercolor Painting From a Photo. Open the photo you want to appear to be a watercolor painting. I am using the photo below: Creating a Watercolor Painting From a Photo Open the photo you want to appear to be a watercolor painting. I am using the photo below: Make any adjustments as needed like cropping the photo before preceding

More information

Colorizing A Photo With Multiple Colors In Photoshop

Colorizing A Photo With Multiple Colors In Photoshop Colorizing A Photo With Multiple Colors In Photoshop Written by Steve Patterson. In this Photoshop Effects tutorial, we re going to learn how to colorize a photo using multiple colors. It s an effect I

More information

Lesson 16 Text, Layer Effects, & Filters

Lesson 16 Text, Layer Effects, & Filters Lesson 16 Text, Layer Effects, & Filters Digital Media I Susan M. Raymond West High School In this tutorial, you will: Create a Type Layer Add and Format Type within a Type Layer Apply Layer Effects Apply

More information

A Basic Guide to Photoshop Adjustment Layers

A Basic Guide to Photoshop Adjustment Layers A Basic Guide to Photoshop Adjustment Layers Photoshop has a Panel named Adjustments, based on the Adjustment Layers of previous versions. These adjustments can be used for non-destructive editing, can

More information

How To Add Falling Snow

How To Add Falling Snow How To Add Falling Snow How To Add Snow With Photoshop Step 1: Add A New Blank Layer To begin, let's add a new blank layer above our photo. If we look in our Layers palette, we can see that our photo is

More information

Photoshop Elements 3 Filters

Photoshop Elements 3 Filters Photoshop Elements 3 Filters Many photographers with SLR cameras (digital or film) attach filters, such as the one shown at the right, to the front of their lenses to protect them from dust and scratches.

More information

SUGAR fx. LightPack 3 User Manual

SUGAR fx. LightPack 3 User Manual SUGAR fx LightPack 3 User Manual Contents Installation 4 Installing SUGARfx 4 What is LightPack? 5 Using LightPack 6 Lens Flare 7 Filter Parameters 7 Main Setup 8 Glow 11 Custom Flares 13 Random Flares

More information

Adobe Studio on Adobe Photoshop CS2 Enhance scientific and medical images. 2 Hide the original layer.

Adobe Studio on Adobe Photoshop CS2 Enhance scientific and medical images. 2 Hide the original layer. 1 Adobe Studio on Adobe Photoshop CS2 Light, shadow and detail interact in wild and mysterious ways in microscopic photography, posing special challenges for the researcher and educator. With Adobe Photoshop

More information

Maine Day in May. 54 Chapter 2: Painterly Techniques for Non-Painters

Maine Day in May. 54 Chapter 2: Painterly Techniques for Non-Painters Maine Day in May 54 Chapter 2: Painterly Techniques for Non-Painters Simplifying a Photograph to Achieve a Hand-Rendered Result Excerpted from Beyond Digital Photography: Transforming Photos into Fine

More information

Activity Editing Bitmapped Images Chapter 3

Activity Editing Bitmapped Images Chapter 3 Activity Editing Bitmapped Images Chapter 3 Overview This is a hands-on activity. The purpose of this activity is to apply various effects to parts of an image. Learning Outcomes Students will be able

More information

How to blur a background in Photoshop CS3, Elements 9 or later By Steve Zimic

How to blur a background in Photoshop CS3, Elements 9 or later By Steve Zimic This is a technique I developed which allows blurring of the background without any bleeding of the main subject into the background. This technique does require a working knowledge of the various selection

More information

Cleaning up a part automatically using Photoshop. Lance Hoffman

Cleaning up a part automatically using Photoshop. Lance Hoffman Cleaning up a part automatically using Photoshop. Lance Hoffman Often when working with a scanned chart, we are dealing with bitmap (i.e. black and white) images of music pages. If the initial scan was

More information

8.2 IMAGE PROCESSING VERSUS IMAGE ANALYSIS Image processing: The collection of routines and

8.2 IMAGE PROCESSING VERSUS IMAGE ANALYSIS Image processing: The collection of routines and 8.1 INTRODUCTION In this chapter, we will study and discuss some fundamental techniques for image processing and image analysis, with a few examples of routines developed for certain purposes. 8.2 IMAGE

More information

A quick note: We hope that you will find something from the Tips and Tricks that will add a little pizazz to your yearbook pages!

A quick note: We hope that you will find something from the Tips and Tricks that will add a little pizazz to your yearbook pages! A quick note: The following pages are tips and tricks for Basic Photoshop users. You may notice that some instructions indicate that non-awpc fonts were used, and that some colors were created using the

More information

Sharpening is an essential final step before output. But sometimes, you don t want to

Sharpening is an essential final step before output. But sometimes, you don t want to Sharpening is an essential final step before output. But sometimes, you don t want to sharpen your entire image equally. Skin tones, clouds, noisy areas - it s best to apply less sharpening to these areas,

More information

High Speed Motion Trail Effect With Photoshop

High Speed Motion Trail Effect With Photoshop High Speed Motion Trail Effect With Photoshop Written by Steve Patterson. In this Photo Effects tutorial, we'll learn how to add a sense of speed to an object using an easy to create motion blur effect!

More information

EEL 6562 Image Processing and Computer Vision Box Filter and Laplacian Filter Implementation

EEL 6562 Image Processing and Computer Vision Box Filter and Laplacian Filter Implementation DEPARTMENT OF ELECTRICAL & COMPUTER ENGINEERING EEL 6562 Image Processing and Computer Vision Box Filter and Laplacian Filter Implementation Rajesh Pydipati Introduction Image Processing is defined as

More information

Basic Digital Dark Room

Basic Digital Dark Room Basic Digital Dark Room When I took a good photograph I almost always trying to improve it using Photoshop: exposure, depth of field, black and white, duotones, blur and sharpness or even replace washed

More information

By Washan Najat Nawi

By Washan Najat Nawi By Washan Najat Nawi how to get started how to use the interface how to modify images with basic editing skills Adobe Photoshop: is a popular image-editing software. Two general usage of Photoshop Creating

More information

Photoshop CC Editing Images

Photoshop CC Editing Images Photoshop CC Editing Images Rotate a Canvas A canvas can be rotated 90 degrees Clockwise, 90 degrees Counter Clockwise, or rotated 180 degrees. Navigate to the Image Menu, select Image Rotation and then

More information

The original image. Let s get started! The final result.

The original image. Let s get started! The final result. Miniature Effect With Tilt-Shift In Photoshop CS6 In this tutorial, we ll learn how to create a miniature effect in Photoshop CS6 using its brand new Tilt-Shift blur filter. Tilt-shift camera lenses are

More information

Image Processing Tutorial Basic Concepts

Image Processing Tutorial Basic Concepts Image Processing Tutorial Basic Concepts CCDWare Publishing http://www.ccdware.com 2005 CCDWare Publishing Table of Contents Introduction... 3 Starting CCDStack... 4 Creating Calibration Frames... 5 Create

More information

Lecture No Image Filtering (course: Computer Vision)

Lecture No Image Filtering (course: Computer Vision) Lecture No. 34-35 Image Filtering (course: Computer Vision) e- mail: naeemmahoto@gmail.com Department of So9ware Engineering, Mehran UET Jamshoro, Sind, Pakistan Enhancement using Arithme0c/ Logic Opera0ons

More information

Adobe Photoshop CS5 Tutorial

Adobe Photoshop CS5 Tutorial Adobe Photoshop CS5 Tutorial GETTING STARTED Adobe Photoshop CS5 is a popular image editing software that provides a work environment consistent with Adobe Illustrator, Adobe InDesign, Adobe Photoshop

More information

Image Pro Ultra. Tel:

Image Pro Ultra.  Tel: Image Pro Ultra www.ysctech.com info@ysctech.com Tel: 510.226.0889 Instructions for installing YSC VIC-USB and IPU For software and manual download, please go to below links. http://ysctech.com/support/ysc_imageproultra_20111010.zip

More information

Learning Photo Retouching techniques the simple way

Learning Photo Retouching techniques the simple way Learning Photo Retouching techniques the simple way Table of Contents About the Workshop... i Workshop Objectives... i Getting Started... 1 Photoshop Workspace... 1 Setting up the Preferences... 2 Retouching

More information

Exploring Photoshop Tutorial

Exploring Photoshop Tutorial Exploring Photoshop Tutorial Objective: In this tutorial we will create a poster composed of three distinct elements: a Bokeh, an image and title text. The Bokeh is an effect which is sometimes seen in

More information

prepared by Allison Hwang for T. Purdy 2011

prepared by Allison Hwang for T. Purdy 2011 There are many ways to create material textures in Photoshop. In addition to using primarily the blending tool, you can also use filters to create textures. In this tutorial, the objective is to create

More information

Photoshop Techniques Digital Enhancement

Photoshop Techniques Digital Enhancement Photoshop Techniques Digital Enhancement A tremendous range of enhancement techniques are available to anyone shooting astrophotographs if they have access to a computer and can digitize their images.

More information

Prof. Vidya Manian Dept. of Electrical and Comptuer Engineering

Prof. Vidya Manian Dept. of Electrical and Comptuer Engineering Image Processing Intensity Transformations Chapter 3 Prof. Vidya Manian Dept. of Electrical and Comptuer Engineering INEL 5327 ECE, UPRM Intensity Transformations 1 Overview Background Basic intensity

More information

TURN A PHOTO INTO A PATTERN OF COLORED DOTS (CS6)

TURN A PHOTO INTO A PATTERN OF COLORED DOTS (CS6) TURN A PHOTO INTO A PATTERN OF COLORED DOTS (CS6) In this photo effects tutorial, we ll learn how to turn a photo into a pattern of solid-colored dots! As we ll see, all it takes to create the effect is

More information

Extreme Makeovers: Photoshop Retouching Techniques

Extreme Makeovers: Photoshop Retouching Techniques Extreme Makeovers: Table of Contents About the Workshop... 1 Workshop Objectives... 1 Getting Started... 1 Photoshop Workspace... 1 Retouching Tools... 2 General Steps... 2 Resolution and image size...

More information

Realistic Skin Smoothing

Realistic Skin Smoothing TIP SHEET #7 Realistic Skin Smoothing I think it s fair to say when it comes to retouching techniques, the number of different ways to smooth skin is seemingly endless. From blurring techniques through

More information

Optimizing Images for Digital Projection A few of our Camera Club members have been disappointed that their digital images just don t look the same

Optimizing Images for Digital Projection A few of our Camera Club members have been disappointed that their digital images just don t look the same Optimizing Images for Digital Projection A few of our Camera Club members have been disappointed that their digital images just don t look the same when projected during a digital critique or a slide show.

More information

Recitation 2 Introduction to Photoshop

Recitation 2 Introduction to Photoshop Recitation 2 Introduction to Photoshop What is Adobe Photoshop? Adobe Photoshop is a tool for creating digital graphics either by starting with a scanned photograph or artwork or by creating the graphics

More information

AGENDA. :: Homework Critiques (5 minutes each) :: Photoshop Lesson 3. A-1 Gorgeous! [ COMPOSITE DEMO ] :: 7mins. I. SELECTIONS [ Common Law ]:

AGENDA. :: Homework Critiques (5 minutes each) :: Photoshop Lesson 3. A-1 Gorgeous! [ COMPOSITE DEMO ] :: 7mins. I. SELECTIONS [ Common Law ]: CLASS :: 09.24 2018 AGENDA :: Homework Critiques (5 minutes each) A-1 Gorgeous! Upload A-1 Project to Student Folder :: Photoshop Lesson 3 [ COMPOSITE DEMO ] :: 7mins. I. SELECTIONS [ Common Law ]: a.

More information

The original image. Let s get started! The final rainbow effect. The photo sits on the Background layer in the Layers panel.

The original image. Let s get started! The final rainbow effect. The photo sits on the Background layer in the Layers panel. Add A Realistic Rainbow To A Photo In this Photoshop photo effects tutorial, we ll learn how to easily add a rainbow, and even a double rainbow, to a photo! As we ll see, Photoshop ships with a ready-made

More information

Using GIMP to Create an Artistic Regional RPG Map Part 2

Using GIMP to Create an Artistic Regional RPG Map Part 2 Using GIMP to Create an Artistic Regional RPG Map Part 2 This tutorial series is an updated and revised edition of an original tutorial created by RobA for the Cartographer s Guild (www.cartographersguild.com).

More information

Teach Yourself Adobe Photoshop Topic 9: Photo Retouching Part 2

Teach Yourself Adobe Photoshop Topic 9: Photo Retouching Part 2 http://www.gerrykruyer.com Teach Yourself Adobe Photoshop Topic 9: Photo Retouching Part 2 In the last week s lesson, you repaired damaged areas of an image, removed unwanted parts of an image, cloned

More information

32 Float v2 Quick Start Guide. AUTHORED BY ANTHONY HERNANDEZ - (415)

32 Float v2 Quick Start Guide. AUTHORED BY ANTHONY HERNANDEZ - (415) 32 Float v2 Quick Start Guide 32 Float V2 Trademark/Copyright Information Copyright 2011 by United Color Technologies, LLC. All rights reserved. Unified Color Technologies, BeyondRGB, and HDR Float are

More information

ADOBE PHOTOSHOP CS TUTORIAL

ADOBE PHOTOSHOP CS TUTORIAL ADOBE PHOTOSHOP CS TUTORIAL A D O B E P H O T O S H O P C S Adobe Photoshop CS is a popular image editing software that provides a work environment consistent with Adobe Illustrator, Adobe InDesign, Adobe

More information

Using Adobe Photoshop to enhance the image quality. Assistant course web site:

Using Adobe Photoshop to enhance the image quality. Assistant course web site: Using Adobe Photoshop to enhance the image quality Assistant course web site: http://www.arches.uga.edu/~skwang/edit6170/course.htm Content Introduction 2 Unit1: Scan images 3 Lesson 1-1: Preparations

More information

Table of Contents 1. Image processing Measurements System Tools...10

Table of Contents 1. Image processing Measurements System Tools...10 Introduction Table of Contents 1 An Overview of ScopeImage Advanced...2 Features:...2 Function introduction...3 1. Image processing...3 1.1 Image Import and Export...3 1.1.1 Open image file...3 1.1.2 Import

More information

What is real? What is art?

What is real? What is art? HDCC208N Fall 2018 We ll fix it in post The Digital Darkroom What is real? What is art? We have been discussing this pair of questions at various points this semester, with drawings, paintings, the camera

More information

How To Change Eye Color In Photoshop

How To Change Eye Color In Photoshop Change Eye Color In An Image With Photoshop Learn how to easily change someone's eye color in a photo with Photoshop! We'll use a Hue/Saturation adjustment layer, a layer mask and a layer blend mode to

More information

Adobe Photoshop CC 2018 Tutorial

Adobe Photoshop CC 2018 Tutorial Adobe Photoshop CC 2018 Tutorial GETTING STARTED Adobe Photoshop CC 2018 is a popular image editing software that provides a work environment consistent with Adobe Illustrator, Adobe InDesign, Adobe Photoshop,

More information

CSE 564: Visualization. Image Operations. Motivation. Provide the user (scientist, t doctor, ) with some means to: Global operations:

CSE 564: Visualization. Image Operations. Motivation. Provide the user (scientist, t doctor, ) with some means to: Global operations: Motivation CSE 564: Visualization mage Operations Klaus Mueller Computer Science Department Stony Brook University Provide the user (scientist, t doctor, ) with some means to: enhance contrast of local

More information

CONTENTS. Chapter I Introduction Package Includes Appearance System Requirements... 1

CONTENTS. Chapter I Introduction Package Includes Appearance System Requirements... 1 User Manual CONTENTS Chapter I Introduction... 1 1.1 Package Includes... 1 1.2 Appearance... 1 1.3 System Requirements... 1 1.4 Main Functions and Features... 2 Chapter II System Installation... 3 2.1

More information

CONTENT INTRODUCTION BASIC CONCEPTS Creating an element of a black-and white line drawing DRAWING STROKES...

CONTENT INTRODUCTION BASIC CONCEPTS Creating an element of a black-and white line drawing DRAWING STROKES... USER MANUAL CONTENT INTRODUCTION... 3 1 BASIC CONCEPTS... 3 2 QUICK START... 7 2.1 Creating an element of a black-and white line drawing... 7 3 DRAWING STROKES... 15 3.1 Creating a group of strokes...

More information

Miniature Effect With Tilt-Shift In Photoshop CS6

Miniature Effect With Tilt-Shift In Photoshop CS6 Miniature Effect With Tilt-Shift In Photoshop CS6 This effect works best with a photo taken from high overhead and looking down on your subject at an angle. You ll also want a photo where everything is

More information

Using Photoshop Elements

Using Photoshop Elements Using Photoshop Elements Created By: Rick Williams August 2004 Table of Contents Photoshop Element Tools...Page 1 Tool Descriptions... Page 3 Starting Photoshop Elements... Page 7 Resizing an Image...

More information

Challenge Image: Blur the Background

Challenge Image: Blur the Background Challenge Image: Blur the Background Challenge Image: Blur the Background In this lesson, we re going to work on a challenge image that was submitted by a Masters Academy member. The image features a little

More information

11 Advanced Layer Techniques

11 Advanced Layer Techniques 11 Advanced Layer Techniques After you ve learned basic layer techniques, you can create more complex effects in your artwork using layer masks, path groups, filters, adjustment layers, and more style

More information

Pacific New Media David Ulrich

Pacific New Media David Ulrich Pacific New Media David Ulrich pacimage@maui.net www.creativeguide.com 808.721.2862 Sharpening and Noise Reduction in Adobe Photoshop One of the limitations of digital capture devices and digital chips

More information

CHANGING EYE COLOR IN A PHOTO

CHANGING EYE COLOR IN A PHOTO CHANGING EYE COLOR IN A PHOTO In this photo retouching tutorial, we ll learn a very simple technique for changing someone s eye color in a photo using a Hue/Saturation adjustment layer! Of course, there

More information

Add Rays Of Sunlight To A Photo With Photoshop

Add Rays Of Sunlight To A Photo With Photoshop Add Rays Of Sunlight To A Photo With Photoshop Written by Steve Patterson. In this photo effects tutorial, we'll learn how to easily add rays of sunlight to an image, a great way to make an already beautiful

More information

EE482: Digital Signal Processing Applications

EE482: Digital Signal Processing Applications Professor Brendan Morris, SEB 3216, brendan.morris@unlv.edu EE482: Digital Signal Processing Applications Spring 2014 TTh 14:30-15:45 CBC C222 Lecture 15 Image Processing 14/04/15 http://www.ee.unlv.edu/~b1morris/ee482/

More information

A Division of Sun Chemical Corporation. Unsharp Masking How to Make Your Images Pop!

A Division of Sun Chemical Corporation. Unsharp Masking How to Make Your Images Pop! Unsharp Masking How to Make Your Images Pop! Copyright US INK Volume XL A re your images dull and lack pop? Do you want your pictures to stand off the page more? Well maybe you are not using Unsharp Masking

More information

PICTURE AS PAINT. Most magazine articles written. Creating a seamless, tileable texture in GIMP KNOW-HOW. Brightness. From Photo to Tile

PICTURE AS PAINT. Most magazine articles written. Creating a seamless, tileable texture in GIMP KNOW-HOW. Brightness. From Photo to Tile Creating a seamless, tileable texture in GIMP PICTURE AS PAINT Graphic artists often face the problem of turning a photograph into an image that will tile over a larger surface. This task is not as easy

More information