Object Removal: Difference between revisions

From Psych 221 Image Systems Engineering
Jump to navigation Jump to search
imported>Projects221
No edit summary
imported>Projects221
No edit summary
Line 32: Line 32:


----
----
[[File:notation.png]]
<Center>[[File:StructurePropagation.png]]</Center>
 
<Center>Figure 4: Structure propagation by exemplar-based texture synthesis</Center>
----
 
After the parameters have been selected, the object removal algorithm is able to run.  In this algorithm, each pixel maintains a color value and a confidence value.  Only the patches adjacent to the fill front are given a priority value as well.  The algorithm repeats the following three steps till all the pixel values in the target region are assigned a color
 
----
<Center>[[File:notation.png]]</Center>


<Center>Figure 4: Notation Diagram</Center>
<Center>Figure 4: Notation Diagram</Center>
----
----

Revision as of 04:33, 20 March 2013

Introduction

Our project analyzes object removal from images in depth. Object removal is a generic term that describes manipulating images to accentuate or hide specific aspects of the image. Some of the applications of object removal include removing a person from an image altogether, removing an object that is occluding the primary point of interest, removing scratches/distortions from images for the purposes of image restoration, or even removing text that has been superimposed on the image. There are quite a few techniques that have being employed to accomplish this task, each having it’s own benefits and drawbacks. In this project, our goal was to explore two of these techniques, specifically exemplar-based inpainting and seam carving.

Applications


Figure 1: Texture Modification

Figure 2: Image Restoration

Figure 3: Object Removal

Background

Exemplar-based texture synthesis algorithms suffice to capture both the texture and the structure of the image. The paper titled “Object Removal by Exemplar-Based Inpainting” by Criminisi and Toyama was the basis of our investigation into object removal. Criminisi and Toyama present the details of an exemplar-based algorithm that is able to capture both texture and propagate structure into the target region.

Methods

Exemplar-based inpainting techniques, in general, remove a objects by replacing them with a visually plausible backgrounds. The core of their algorithm is broken down into two parts. The first part fills holes in images by propagating linear structures into the target region. The intuition behind this techniques arises from the “Connectivity Principle” of vision psychology, which states that broken lines tend to be connected. The second part addresses composite textures - multiple textures interacting spatially. The idea behind this part is to fill in larger areas of an image by repeating the textures that surrounds the target region with some level of stochasticity. This is done in an onion-peel like approach starting from the outer layers and moving inwards towards the centre of the target region.

At first the user selects the following parameters:

1. The user selects a target region,Ω, to be removed

2. All exemplar-based techniques fill the target region using patches, Ψ, instead of pixels for efficiency reasons. The user then selects the window-size for patches - in practice it is slightly larger than the largest distinguishable texture element


Figure 4: Structure propagation by exemplar-based texture synthesis

After the parameters have been selected, the object removal algorithm is able to run. In this algorithm, each pixel maintains a color value and a confidence value. Only the patches adjacent to the fill front are given a priority value as well. The algorithm repeats the following three steps till all the pixel values in the target region are assigned a color


Figure 4: Notation Diagram