Image Restoration using Markov Random Fields

Size: px
Start display at page:

Download "Image Restoration using Markov Random Fields"

Transcription

1 Image Restoration using Markov Random Fields Based on the paper Stochastic Relaxation, Gibbs Distributions and Bayesian Restoration of Images, PAMI, 1984, Geman and Geman. and the book Markov Random Field Modeling in Computer Vision, by Stan Z. Li AJIT RAJWADE, CAP

2 Overview What are MRFs? (Locality Principle) Image Restoration approach using MRFs. Gibbs Random Fields Equivalence between MRF and GRF Concept of Metropolis Sampler and Gibbs Sampler. Discontinuities: Line Processes Results Limitations 2

3 Markov Random Fields: Intro Parameterized image model, where parameters have much lower dimensionality than the image. Consider image X with pixels (x1,x2,..xn). Basic concept: to factorize the global joint distribution of all the pixel values into a product of local factors. Within each local model, each entity depends only upon a set of neighboring entities. 3

4 MRF Intro To represent these relationships, use a graphical model. Each pixel in an image: NODE in the graph. Nodes arranged on a 2D lattice. Neighborhood relations: EDGES in the graph. Each node bears a label (value of intensity, gradient, segment label etc.) 4

5 Neighborhood Systems A neighborhood system defines what nodes will be treated as neighbors. Example: Neighborhood Systems of order one (4 neighbors) and two (8 neighbors). 5

6 Cliques Neighborhood systems have associated cliques. Cliques are a subset of nodes in which every pair of nodes are neighbors. Cliques for neighborhoods of order one and two: 6

7 MRF Definition Markov Model: Conditional probability of the value of a signal at time t depends only on the k previous values. k = order of the Markov Model. Markov Random Field: An extension of above concept to 2D. The conditional probability of a pixel label depends only on the labels of its neighbors. 7

8 MRF Definition Let be a set of sites (nodes of a graph), and be a neighborhood system. Let be a set of random variables indexed by S, and be a set of labels. Let be the set of all possible configurations of X. Then X is an MRF w.r.t. if and only if: 8

9 Image Restoration Approach Let G = a degraded image. Given G, restore the original image X. Bayesian approach: find mode of the posterior distribution, i.e. Problem: computationally prohibitive even for small images with very few intensity levels. 9

10 Gibbs Random Fields A set of random variables X are called a GRF, if its realizations follow a Gibbs distribution, i.e. is called an energy functional, given as follows: Here is called as the clique potential. The clique potential encodes the relationship between nodes in a clique (example, difference in intensity values). 10

11 Gibbs Random Fields Z is a normalizing constant given as 11

12 MRF = GRF The Hammersley-Clifford theorem states that: If X is an MRF on a set of nodes S with a neighborhood system N, then it is also a GRF. Incidentally, the converse is also true. Practical use: it allows us to specify the joint probability of the MRF for the original (denoised) image. 12

13 MRF = GRF But look at the formula for joint probability: Calculating Z is impossible. The trick is we need not compute Z for the required MAP estimate. 13

14 MRF = GRF Recall P ( X = ω G = g) = P( G = g X = ω) P( X = ω) / P( G = g) We have We also have the prior The likelihood does not have a term for Z. 14

15 MRF = GRF Taking logarithms, we get 15

16 Image Restoration Framework Formulate task as a Bayesian estimation problem. Denoised image is given as ω = arg maxω( P( X = ω G = g)) Expand posterior as P ( X = ω G = g) = P( G = g X = ω) P( X = ω) / P( G = g) Prior is given by the GRF with the prior energy. 16

17 Image Restoration Framework The likelihood noise statistics. is given by knowledge of Total posterior energy is given as: U ( X = ω G = g) = U(G = g X = ω) + U ( X = ω) Minimizing posterior energy = maximizing posterior probability (MAP). Energy minimization done using a sampling scheme combined with simulated annealing. 17

18 Computing MAP Estimate Solution: use Metropolis or Gibbs sampler. Both samplers work by generating a sequence of configurations starting from the initial configuration. It can be proved that this sampling scheme results in the required Gibbs distribution. And that the final outcome is not dependent upon. 18

19 Metropolis Sampler Let the initial (possibly unlikely) configuration =. Generate a new configuration starting from the previous one through some stochastic process. Determine energy change If the energy decreases, accept and go to step (2). Else accept with a probability and return to step (2). This is repeated for a large number of iterations 19

20 Metropolis Sampler After many iterations of the Metropolis sampler, the generated samples will obey a Gibbs distribution. It is a stochastic algorithm, i.e. it sometimes allows changes that increase the energy and hence avoids getting trapped in local minima. Disadvantage: could be very slow if there are many rejections. 20

21 Gibbs Sampler The Gibbs sampler also starts from some random configuration. A new sample is generated by updating the image, site by site (raster scan), using the conditional probability of the pixel value at that site, given its neighbors, i.e. from the following: The Gibbs Sampler also yields samples from the Gibbs distribution at equilibrium (after many iterations), i.e. 21

22 Gibbs Sampler No question of rejections, so faster. Implementation could be done in parallel (as nonneighboring nodes can be updated independently). The temperature parameter T is decreased during successive iterations (annealing). 22

23 Preserving Discontinuities In image smoothing, one also wants to preserve discontinuities in an image. That means we want to prevent interaction between two nodes in a clique if an edge is present in between them (or the difference in their intensities exceeds some threshold). To incorporate such constraints, we include a line process value between every pair of (neighboring) pixels. 23

24 Preserving Discontinuities 24

25 MRF Example: Ising Model Consider a model in which L = 2 (binary image X) and having an energy function The corresponding conditional distribution at site i is then given as: P( X i = x i X Ni ) = exp( x ij ( α + βv 1+ exp( ( α + βv i, j i, j )) )) v = i j x +, i, j+ 1 xi+ 1, j 25

26 Application: Texture Synthesis Generate a random binary image. Run several Gibb s sampler iterations on it, making use of previously mentioned conditional probability. Different values of produce different textures. 26

27 Incorporation of Line Processes The energy for an MRF can be written as: With line processes, the energy is written as: Here is the line process field potential. 27

28 Line Processes In the paper by Geman and Geman, different configurations of line processes have been assigned different energy values: 28

29 Results Original Image Degraded Image 29

30 Results Image restored without line processes Restored with line processes 30

31 Limitations Parameters of the MRF (weighting factors in the clique potential functions, i.e. and ) were chosen on an ad hoc basis. Parameter estimation is a non-trivial task. 31

Undirected Graphical Models. Raul Queiroz Feitosa

Undirected Graphical Models. Raul Queiroz Feitosa Undirected Graphical Models Raul Queiroz Feitosa Pros and Cons Advantages of UGMs over DGMs UGMs are more natural for some domains (e.g. context-dependent entities) Discriminative UGMs (CRF) are better

More information

Texture Modeling using MRF and Parameters Estimation

Texture Modeling using MRF and Parameters Estimation Texture Modeling using MRF and Parameters Estimation Ms. H. P. Lone 1, Prof. G. R. Gidveer 2 1 Postgraduate Student E & TC Department MGM J.N.E.C,Aurangabad 2 Professor E & TC Department MGM J.N.E.C,Aurangabad

More information

Algorithms for Markov Random Fields in Computer Vision

Algorithms for Markov Random Fields in Computer Vision Algorithms for Markov Random Fields in Computer Vision Dan Huttenlocher November, 2003 (Joint work with Pedro Felzenszwalb) Random Field Broadly applicable stochastic model Collection of n sites S Hidden

More information

Markov/Conditional Random Fields, Graph Cut, and applications in Computer Vision

Markov/Conditional Random Fields, Graph Cut, and applications in Computer Vision Markov/Conditional Random Fields, Graph Cut, and applications in Computer Vision Fuxin Li Slides and materials from Le Song, Tucker Hermans, Pawan Kumar, Carsten Rother, Peter Orchard, and others Recap:

More information

Statistical and Learning Techniques in Computer Vision Lecture 1: Markov Random Fields Jens Rittscher and Chuck Stewart

Statistical and Learning Techniques in Computer Vision Lecture 1: Markov Random Fields Jens Rittscher and Chuck Stewart Statistical and Learning Techniques in Computer Vision Lecture 1: Markov Random Fields Jens Rittscher and Chuck Stewart 1 Motivation Up to now we have considered distributions of a single random variable

More information

intro, applications MRF, labeling... how it can be computed at all? Applications in segmentation: GraphCut, GrabCut, demos

intro, applications MRF, labeling... how it can be computed at all? Applications in segmentation: GraphCut, GrabCut, demos Image as Markov Random Field and Applications 1 Tomáš Svoboda, svoboda@cmp.felk.cvut.cz Czech Technical University in Prague, Center for Machine Perception http://cmp.felk.cvut.cz Talk Outline Last update:

More information

Markov Random Fields and Gibbs Sampling for Image Denoising

Markov Random Fields and Gibbs Sampling for Image Denoising Markov Random Fields and Gibbs Sampling for Image Denoising Chang Yue Electrical Engineering Stanford University changyue@stanfoed.edu Abstract This project applies Gibbs Sampling based on different Markov

More information

Mesh segmentation. Florent Lafarge Inria Sophia Antipolis - Mediterranee

Mesh segmentation. Florent Lafarge Inria Sophia Antipolis - Mediterranee Mesh segmentation Florent Lafarge Inria Sophia Antipolis - Mediterranee Outline What is mesh segmentation? M = {V,E,F} is a mesh S is either V, E or F (usually F) A Segmentation is a set of sub-meshes

More information

Application of MRF s to Segmentation

Application of MRF s to Segmentation EE641 Digital Image Processing II: Purdue University VISE - November 14, 2012 1 Application of MRF s to Segmentation Topics to be covered: The Model Bayesian Estimation MAP Optimization Parameter Estimation

More information

Markov Networks in Computer Vision

Markov Networks in Computer Vision Markov Networks in Computer Vision Sargur Srihari srihari@cedar.buffalo.edu 1 Markov Networks for Computer Vision Some applications: 1. Image segmentation 2. Removal of blur/noise 3. Stereo reconstruction

More information

Regularization and Markov Random Fields (MRF) CS 664 Spring 2008

Regularization and Markov Random Fields (MRF) CS 664 Spring 2008 Regularization and Markov Random Fields (MRF) CS 664 Spring 2008 Regularization in Low Level Vision Low level vision problems concerned with estimating some quantity at each pixel Visual motion (u(x,y),v(x,y))

More information

Markov Networks in Computer Vision. Sargur Srihari

Markov Networks in Computer Vision. Sargur Srihari Markov Networks in Computer Vision Sargur srihari@cedar.buffalo.edu 1 Markov Networks for Computer Vision Important application area for MNs 1. Image segmentation 2. Removal of blur/noise 3. Stereo reconstruction

More information

Image analysis. Computer Vision and Classification Image Segmentation. 7 Image analysis

Image analysis. Computer Vision and Classification Image Segmentation. 7 Image analysis 7 Computer Vision and Classification 413 / 458 Computer Vision and Classification The k-nearest-neighbor method The k-nearest-neighbor (knn) procedure has been used in data analysis and machine learning

More information

Unsupervised Texture Image Segmentation Using MRF- EM Framework

Unsupervised Texture Image Segmentation Using MRF- EM Framework Journal of Advances in Computer Research Quarterly ISSN: 2008-6148 Sari Branch, Islamic Azad University, Sari, I.R.Iran (Vol. 4, No. 2, May 2013), Pages: 1-13 www.jacr.iausari.ac.ir Unsupervised Texture

More information

Digital Image Processing Laboratory: MAP Image Restoration

Digital Image Processing Laboratory: MAP Image Restoration Purdue University: Digital Image Processing Laboratories 1 Digital Image Processing Laboratory: MAP Image Restoration October, 015 1 Introduction This laboratory explores the use of maximum a posteriori

More information

MRF-based Algorithms for Segmentation of SAR Images

MRF-based Algorithms for Segmentation of SAR Images This paper originally appeared in the Proceedings of the 998 International Conference on Image Processing, v. 3, pp. 770-774, IEEE, Chicago, (998) MRF-based Algorithms for Segmentation of SAR Images Robert

More information

3 : Representation of Undirected GMs

3 : Representation of Undirected GMs 0-708: Probabilistic Graphical Models 0-708, Spring 202 3 : Representation of Undirected GMs Lecturer: Eric P. Xing Scribes: Nicole Rafidi, Kirstin Early Last Time In the last lecture, we discussed directed

More information

Bayesian Methods in Vision: MAP Estimation, MRFs, Optimization

Bayesian Methods in Vision: MAP Estimation, MRFs, Optimization Bayesian Methods in Vision: MAP Estimation, MRFs, Optimization CS 650: Computer Vision Bryan S. Morse Optimization Approaches to Vision / Image Processing Recurring theme: Cast vision problem as an optimization

More information

GiRaF: a toolbox for Gibbs Random Fields analysis

GiRaF: a toolbox for Gibbs Random Fields analysis GiRaF: a toolbox for Gibbs Random Fields analysis Julien Stoehr *1, Pierre Pudlo 2, and Nial Friel 1 1 University College Dublin 2 Aix-Marseille Université February 24, 2016 Abstract GiRaF package offers

More information

MARKOV RANDOM FIELD IMAGE MODELLING. By Michael Mc Grath

MARKOV RANDOM FIELD IMAGE MODELLING. By Michael Mc Grath MARKOV RANDOM FIELD IMAGE MODELLING By Michael Mc Grath SUBMITTED IN PARTIAL FULFILLMENT OF THE REQUIREMENTS FOR THE DEGREE OF MASTER OF SCIENCE AT THE UNIVERSITY OF CAPE TOWN CAPE TOWN, SOUTH AFRICA JUNE

More information

CRFs for Image Classification

CRFs for Image Classification CRFs for Image Classification Devi Parikh and Dhruv Batra Carnegie Mellon University Pittsburgh, PA 15213 {dparikh,dbatra}@ece.cmu.edu Abstract We use Conditional Random Fields (CRFs) to classify regions

More information

Mathematics in Image Processing

Mathematics in Image Processing Mathematics in Image Processing Michal Šorel Department of Image Processing Institute of Information Theory and Automation (ÚTIA) Academy of Sciences of the Czech Republic http://zoi.utia.cas.cz/ Mathematics

More information

Models for grids. Computer vision: models, learning and inference. Multi label Denoising. Binary Denoising. Denoising Goal.

Models for grids. Computer vision: models, learning and inference. Multi label Denoising. Binary Denoising. Denoising Goal. Models for grids Computer vision: models, learning and inference Chapter 9 Graphical Models Consider models where one unknown world state at each pixel in the image takes the form of a grid. Loops in the

More information

Sampling informative/complex a priori probability distributions using Gibbs sampling assisted by sequential simulation

Sampling informative/complex a priori probability distributions using Gibbs sampling assisted by sequential simulation Sampling informative/complex a priori probability distributions using Gibbs sampling assisted by sequential simulation Thomas Mejer Hansen, Klaus Mosegaard, and Knud Skou Cordua 1 1 Center for Energy Resources

More information

Combining Local and Global Features for Image Segmentation Using Iterative Classification and Region Merging

Combining Local and Global Features for Image Segmentation Using Iterative Classification and Region Merging Combining Local and Global Features for Image Segmentation Using Iterative Classification and Region Merging Qiyao Yu, David A. Clausi Systems Design Engineering, University of Waterloo Waterloo, ON, Canada

More information

MRF Based LSB Steganalysis: A New Measure of Steganography Capacity

MRF Based LSB Steganalysis: A New Measure of Steganography Capacity MRF Based LSB Steganalysis: A New Measure of Steganography Capacity Debasis Mazumdar 1, Apurba Das 1, and Sankar K. Pal 2 1 CDAC, Kolkata, Salt Lake Electronics Complex, Kolkata, India {debasis.mazumdar,apurba.das}@cdackolkata.in

More information

MR IMAGE SEGMENTATION

MR IMAGE SEGMENTATION MR IMAGE SEGMENTATION Prepared by : Monil Shah What is Segmentation? Partitioning a region or regions of interest in images such that each region corresponds to one or more anatomic structures Classification

More information

Loopy Belief Propagation

Loopy Belief Propagation Loopy Belief Propagation Research Exam Kristin Branson September 29, 2003 Loopy Belief Propagation p.1/73 Problem Formalization Reasoning about any real-world problem requires assumptions about the structure

More information

Detection of Man-made Structures in Natural Images

Detection of Man-made Structures in Natural Images Detection of Man-made Structures in Natural Images Tim Rees December 17, 2004 Abstract Object detection in images is a very active research topic in many disciplines. Probabilistic methods have been applied

More information

Convexization in Markov Chain Monte Carlo

Convexization in Markov Chain Monte Carlo in Markov Chain Monte Carlo 1 IBM T. J. Watson Yorktown Heights, NY 2 Department of Aerospace Engineering Technion, Israel August 23, 2011 Problem Statement MCMC processes in general are governed by non

More information

Integrating Intensity and Texture in Markov Random Fields Segmentation. Amer Dawoud and Anton Netchaev. {amer.dawoud*,

Integrating Intensity and Texture in Markov Random Fields Segmentation. Amer Dawoud and Anton Netchaev. {amer.dawoud*, Integrating Intensity and Texture in Markov Random Fields Segmentation Amer Dawoud and Anton Netchaev {amer.dawoud*, anton.netchaev}@usm.edu School of Computing, University of Southern Mississippi 118

More information

Digital Image Processing Laboratory: Markov Random Fields and MAP Image Segmentation

Digital Image Processing Laboratory: Markov Random Fields and MAP Image Segmentation Purdue University: Digital Image Processing Laboratories Digital Image Processing Laboratory: Markov Random Fields and MAP Image Segmentation December, 205 Introduction This laboratory explores the use

More information

Markov Random Fields with Efficient Approximations

Markov Random Fields with Efficient Approximations Markov Random Fields with Efficient Approximations Yuri Boykov Olga Veksler Ramin Zabih Computer Science Department Cornell University Ithaca, NY 14853 Abstract Markov Random Fields (MRF s) can be used

More information

Image Processing. Filtering. Slide 1

Image Processing. Filtering. Slide 1 Image Processing Filtering Slide 1 Preliminary Image generation Original Noise Image restoration Result Slide 2 Preliminary Classic application: denoising However: Denoising is much more than a simple

More information

Simulated Annealing. Slides based on lecture by Van Larhoven

Simulated Annealing. Slides based on lecture by Van Larhoven Simulated Annealing Slides based on lecture by Van Larhoven Iterative Improvement 1 General method to solve combinatorial optimization problems Principle: Start with initial configuration Repeatedly search

More information

Expectation Propagation

Expectation Propagation Expectation Propagation Erik Sudderth 6.975 Week 11 Presentation November 20, 2002 Introduction Goal: Efficiently approximate intractable distributions Features of Expectation Propagation (EP): Deterministic,

More information

Image Segmentation Using Iterated Graph Cuts Based on Multi-scale Smoothing

Image Segmentation Using Iterated Graph Cuts Based on Multi-scale Smoothing Image Segmentation Using Iterated Graph Cuts Based on Multi-scale Smoothing Tomoyuki Nagahashi 1, Hironobu Fujiyoshi 1, and Takeo Kanade 2 1 Dept. of Computer Science, Chubu University. Matsumoto 1200,

More information

Lecture 4: Undirected Graphical Models

Lecture 4: Undirected Graphical Models Lecture 4: Undirected Graphical Models Department of Biostatistics University of Michigan zhenkewu@umich.edu http://zhenkewu.com/teaching/graphical_model 15 September, 2016 Zhenke Wu BIOSTAT830 Graphical

More information

10708 Graphical Models: Homework 4

10708 Graphical Models: Homework 4 10708 Graphical Models: Homework 4 Due November 12th, beginning of class October 29, 2008 Instructions: There are six questions on this assignment. Each question has the name of one of the TAs beside it,

More information

Conditional Random Fields and beyond D A N I E L K H A S H A B I C S U I U C,

Conditional Random Fields and beyond D A N I E L K H A S H A B I C S U I U C, Conditional Random Fields and beyond D A N I E L K H A S H A B I C S 5 4 6 U I U C, 2 0 1 3 Outline Modeling Inference Training Applications Outline Modeling Problem definition Discriminative vs. Generative

More information

Exact optimization for Markov random fields with convex priors

Exact optimization for Markov random fields with convex priors IEEE TRANSACTIONS ON PATTERN ANALYSIS AND MACHINE INTELLIGENCE, VOL. 25, NO. 10, PP. 1333-1336. OCTOBER 2003. Exact optimization for Markov random fields with convex priors Hiroshi Ishikawa Courant Institute

More information

Computer vision: models, learning and inference. Chapter 10 Graphical Models

Computer vision: models, learning and inference. Chapter 10 Graphical Models Computer vision: models, learning and inference Chapter 10 Graphical Models Independence Two variables x 1 and x 2 are independent if their joint probability distribution factorizes as Pr(x 1, x 2 )=Pr(x

More information

Segmentation. Bottom up Segmentation Semantic Segmentation

Segmentation. Bottom up Segmentation Semantic Segmentation Segmentation Bottom up Segmentation Semantic Segmentation Semantic Labeling of Street Scenes Ground Truth Labels 11 classes, almost all occur simultaneously, large changes in viewpoint, scale sky, road,

More information

CS6670: Computer Vision

CS6670: Computer Vision CS6670: Computer Vision Noah Snavely Lecture 19: Graph Cuts source S sink T Readings Szeliski, Chapter 11.2 11.5 Stereo results with window search problems in areas of uniform texture Window-based matching

More information

Belief propagation and MRF s

Belief propagation and MRF s Belief propagation and MRF s Bill Freeman 6.869 March 7, 2011 1 1 Undirected graphical models A set of nodes joined by undirected edges. The graph makes conditional independencies explicit: If two nodes

More information

BAYESIAN SEGMENTATION OF THREE DIMENSIONAL IMAGES USING THE EM/MPM ALGORITHM. A Thesis. Submitted to the Faculty.

BAYESIAN SEGMENTATION OF THREE DIMENSIONAL IMAGES USING THE EM/MPM ALGORITHM. A Thesis. Submitted to the Faculty. BAYESIAN SEGMENTATION OF THREE DIMENSIONAL IMAGES USING THE EM/MPM ALGORITHM A Thesis Submitted to the Faculty of Purdue University by Lauren Christopher In Partial Fulfillment of the Requirements for

More information

Super Resolution Using Graph-cut

Super Resolution Using Graph-cut Super Resolution Using Graph-cut Uma Mudenagudi, Ram Singla, Prem Kalra, and Subhashis Banerjee Department of Computer Science and Engineering Indian Institute of Technology Delhi Hauz Khas, New Delhi,

More information

Neighbourhood-consensus message passing and its potentials in image processing applications

Neighbourhood-consensus message passing and its potentials in image processing applications Neighbourhood-consensus message passing and its potentials in image processing applications Tijana Ružić a, Aleksandra Pižurica a and Wilfried Philips a a Ghent University, TELIN-IPI-IBBT, Sint-Pietersnieuwstraat

More information

Probabilistic Graphical Models

Probabilistic Graphical Models School of Computer Science Probabilistic Graphical Models Theory of Variational Inference: Inner and Outer Approximation Eric Xing Lecture 14, February 29, 2016 Reading: W & J Book Chapters Eric Xing @

More information

D-Separation. b) the arrows meet head-to-head at the node, and neither the node, nor any of its descendants, are in the set C.

D-Separation. b) the arrows meet head-to-head at the node, and neither the node, nor any of its descendants, are in the set C. D-Separation Say: A, B, and C are non-intersecting subsets of nodes in a directed graph. A path from A to B is blocked by C if it contains a node such that either a) the arrows on the path meet either

More information

Spatial Regularization of Functional Connectivity Using High-Dimensional Markov Random Fields

Spatial Regularization of Functional Connectivity Using High-Dimensional Markov Random Fields Spatial Regularization of Functional Connectivity Using High-Dimensional Markov Random Fields Wei Liu 1, Peihong Zhu 1, Jeffrey S. Anderson 2, Deborah Yurgelun-Todd 3, and P. Thomas Fletcher 1 1 Scientific

More information

Lecture 3: Conditional Independence - Undirected

Lecture 3: Conditional Independence - Undirected CS598: Graphical Models, Fall 2016 Lecture 3: Conditional Independence - Undirected Lecturer: Sanmi Koyejo Scribe: Nate Bowman and Erin Carrier, Aug. 30, 2016 1 Review for the Bayes-Ball Algorithm Recall

More information

Graphical Models, Bayesian Method, Sampling, and Variational Inference

Graphical Models, Bayesian Method, Sampling, and Variational Inference Graphical Models, Bayesian Method, Sampling, and Variational Inference With Application in Function MRI Analysis and Other Imaging Problems Wei Liu Scientific Computing and Imaging Institute University

More information

Entropy Controlled Gauss-Markov Random Measure Field Models for Early Vision

Entropy Controlled Gauss-Markov Random Measure Field Models for Early Vision Entropy Controlled Gauss-Markov Random Measure Field Models for Early Vision Mariano Rivera, Omar Ocegueda, and Jose L. Marroquin Centro de Investigacion en Matematicas A.C., Guanajuato, Gto., Mexico 36000

More information

Fast Approximate Energy Minimization via Graph Cuts

Fast Approximate Energy Minimization via Graph Cuts IEEE Transactions on PAMI, vol. 23, no. 11, pp. 1222-1239 p.1 Fast Approximate Energy Minimization via Graph Cuts Yuri Boykov, Olga Veksler and Ramin Zabih Abstract Many tasks in computer vision involve

More information

Probabilistic Graphical Models

Probabilistic Graphical Models Probabilistic Graphical Models Raquel Urtasun and Tamir Hazan TTI Chicago April 8, 2011 Raquel Urtasun and Tamir Hazan (TTI-C) Graphical Models April 8, 2011 1 / 19 Factor Graphs H does not reveal the

More information

I image restoration that uses the observed image data

I image restoration that uses the observed image data Shape Parameter Estimation for Generalized Gaussian Markov Random Field Models used in MAP Image Wai Ho Pun and Brian D. Jeffs Department of Electrical and Computer Engineering, Brigham Young University

More information

Introduction to Image Super-resolution. Presenter: Kevin Su

Introduction to Image Super-resolution. Presenter: Kevin Su Introduction to Image Super-resolution Presenter: Kevin Su References 1. S.C. Park, M.K. Park, and M.G. KANG, Super-Resolution Image Reconstruction: A Technical Overview, IEEE Signal Processing Magazine,

More information

Chapter 1. Introduction

Chapter 1. Introduction Chapter 1 Introduction A Monte Carlo method is a compuational method that uses random numbers to compute (estimate) some quantity of interest. Very often the quantity we want to compute is the mean of

More information

LEFT IMAGE WITH BLUR PARAMETER RIGHT IMAGE WITH BLUR PARAMETER. σ1 (x, y ) R1. σ2 (x, y ) LEFT IMAGE WITH CORRESPONDENCE

LEFT IMAGE WITH BLUR PARAMETER RIGHT IMAGE WITH BLUR PARAMETER. σ1 (x, y ) R1. σ2 (x, y ) LEFT IMAGE WITH CORRESPONDENCE Depth Estimation Using Defocused Stereo Image Pairs Uma Mudenagudi Λ Electronics and Communication Department B VBCollege of Engineering and Technology Hubli-580031, India. Subhasis Chaudhuri Department

More information

Combinatorial optimization and its applications in image Processing. Filip Malmberg

Combinatorial optimization and its applications in image Processing. Filip Malmberg Combinatorial optimization and its applications in image Processing Filip Malmberg Part 1: Optimization in image processing Optimization in image processing Many image processing problems can be formulated

More information

Subjective Randomness and Natural Scene Statistics

Subjective Randomness and Natural Scene Statistics Subjective Randomness and Natural Scene Statistics Ethan Schreiber (els@cs.brown.edu) Department of Computer Science, 115 Waterman St Providence, RI 02912 USA Thomas L. Griffiths (tom griffiths@berkeley.edu)

More information

WE present here a method of modelling texture

WE present here a method of modelling texture IEEE TRANSACTIONS ON IMAGE PROCESSING, VOL. 7, NO. 6, MONTH 1998 1 Texture Synthesis via a Noncausal Nonparametric Multiscale Markov Random Field Rupert Paget, Member, IEEE and I. D. Longstaff, Senior

More information

Chapter 8 of Bishop's Book: Graphical Models

Chapter 8 of Bishop's Book: Graphical Models Chapter 8 of Bishop's Book: Graphical Models Review of Probability Probability density over possible values of x Used to find probability of x falling in some range For continuous variables, the probability

More information

Today. Gradient descent for minimization of functions of real variables. Multi-dimensional scaling. Self-organizing maps

Today. Gradient descent for minimization of functions of real variables. Multi-dimensional scaling. Self-organizing maps Today Gradient descent for minimization of functions of real variables. Multi-dimensional scaling Self-organizing maps Gradient Descent Derivatives Consider function f(x) : R R. The derivative w.r.t. x

More information

AN ACCURATE IMAGE SEGMENTATION USING REGION SPLITTING TECHNIQUE

AN ACCURATE IMAGE SEGMENTATION USING REGION SPLITTING TECHNIQUE AN ACCURATE IMAGE SEGMENTATION USING REGION SPLITTING TECHNIQUE 1 Dr.P.Raviraj, 2 Angeline Lydia, 3 Dr.M.Y.Sanavullah 1 Assistant Professor, Dept. of IT, Karunya University, Coimbatore, TN, India. 2 PG

More information

Document image binarisation using Markov Field Model

Document image binarisation using Markov Field Model 009 10th International Conference on Document Analysis and Recognition Document image binarisation using Markov Field Model Thibault Lelore, Frédéric Bouchara UMR CNRS 6168 LSIS Southern University of

More information

Image Segmentation Using Iterated Graph Cuts BasedonMulti-scaleSmoothing

Image Segmentation Using Iterated Graph Cuts BasedonMulti-scaleSmoothing Image Segmentation Using Iterated Graph Cuts BasedonMulti-scaleSmoothing Tomoyuki Nagahashi 1, Hironobu Fujiyoshi 1, and Takeo Kanade 2 1 Dept. of Computer Science, Chubu University. Matsumoto 1200, Kasugai,

More information

Discriminative Random Fields

Discriminative Random Fields Discriminative Random Fields Sanjiv Kumar (sanjivk@google.com) Google Research, 1440 Broadway, New York, NY 10018, USA Martial Hebert (hebert@ri.cmu.edu) The Robotics Institute, Carnegie Mellon University,

More information

Scan Matching. Pieter Abbeel UC Berkeley EECS. Many slides adapted from Thrun, Burgard and Fox, Probabilistic Robotics

Scan Matching. Pieter Abbeel UC Berkeley EECS. Many slides adapted from Thrun, Burgard and Fox, Probabilistic Robotics Scan Matching Pieter Abbeel UC Berkeley EECS Many slides adapted from Thrun, Burgard and Fox, Probabilistic Robotics Scan Matching Overview Problem statement: Given a scan and a map, or a scan and a scan,

More information

Iterative MAP and ML Estimations for Image Segmentation

Iterative MAP and ML Estimations for Image Segmentation Iterative MAP and ML Estimations for Image Segmentation Shifeng Chen 1, Liangliang Cao 2, Jianzhuang Liu 1, and Xiaoou Tang 1,3 1 Dept. of IE, The Chinese University of Hong Kong {sfchen5, jzliu}@ie.cuhk.edu.hk

More information

Norbert Schuff VA Medical Center and UCSF

Norbert Schuff VA Medical Center and UCSF Norbert Schuff Medical Center and UCSF Norbert.schuff@ucsf.edu Medical Imaging Informatics N.Schuff Course # 170.03 Slide 1/67 Objective Learn the principle segmentation techniques Understand the role

More information

Computer Vision Group Prof. Daniel Cremers. 4a. Inference in Graphical Models

Computer Vision Group Prof. Daniel Cremers. 4a. Inference in Graphical Models Group Prof. Daniel Cremers 4a. Inference in Graphical Models Inference on a Chain (Rep.) The first values of µ α and µ β are: The partition function can be computed at any node: Overall, we have O(NK 2

More information

Discrete Optimization Methods in Computer Vision CSE 6389 Slides by: Boykov Modified and Presented by: Mostafa Parchami Basic overview of graph cuts

Discrete Optimization Methods in Computer Vision CSE 6389 Slides by: Boykov Modified and Presented by: Mostafa Parchami Basic overview of graph cuts Discrete Optimization Methods in Computer Vision CSE 6389 Slides by: Boykov Modified and Presented by: Mostafa Parchami Basic overview of graph cuts [Yuri Boykov, Olga Veksler, Ramin Zabih, Fast Approximation

More information

Markov Face Models. Abstract. 1. Introduction. Department of Statistics & Probability Department of Computer Science & Engineering

Markov Face Models. Abstract. 1. Introduction. Department of Statistics & Probability Department of Computer Science & Engineering Markov Face Models Sarat C. Dass Anil K. Jain Department of Statistics & Probability Department of Computer Science & Engineering Michigan State University Michigan State University E. Lansing, MI E. Lansing,

More information

All images are degraded

All images are degraded Lecture 7 Image Relaxation: Restoration and Feature Extraction ch. 6 of Machine Vision by Wesley E. Snyder & Hairong Qi Spring 2018 16-725 (CMU RI) : BioE 2630 (Pitt) Dr. John Galeotti The content of these

More information

Chapter 7: Competitive learning, clustering, and self-organizing maps

Chapter 7: Competitive learning, clustering, and self-organizing maps Chapter 7: Competitive learning, clustering, and self-organizing maps António R. C. Paiva EEL 6814 Spring 2008 Outline Competitive learning Clustering Self-Organizing Maps What is competition in neural

More information

Interactive Image Segmentation

Interactive Image Segmentation Interactive Image Segmentation Fahim Mannan (260 266 294) Abstract This reort resents the roject work done based on Boykov and Jolly s interactive grah cuts based N-D image segmentation algorithm([1]).

More information

10 Sum-product on factor tree graphs, MAP elimination

10 Sum-product on factor tree graphs, MAP elimination assachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.438 Algorithms For Inference Fall 2014 10 Sum-product on factor tree graphs, AP elimination algorithm The

More information

Range Imaging Through Triangulation. Range Imaging Through Triangulation. Range Imaging Through Triangulation. Range Imaging Through Triangulation

Range Imaging Through Triangulation. Range Imaging Through Triangulation. Range Imaging Through Triangulation. Range Imaging Through Triangulation Obviously, this is a very slow process and not suitable for dynamic scenes. To speed things up, we can use a laser that projects a vertical line of light onto the scene. This laser rotates around its vertical

More information

Bayesian Estimation for Skew Normal Distributions Using Data Augmentation

Bayesian Estimation for Skew Normal Distributions Using Data Augmentation The Korean Communications in Statistics Vol. 12 No. 2, 2005 pp. 323-333 Bayesian Estimation for Skew Normal Distributions Using Data Augmentation Hea-Jung Kim 1) Abstract In this paper, we develop a MCMC

More information

Markov Random Fields in Image Segmentation

Markov Random Fields in Image Segmentation Preented at SSIP 2011, Szeged, Hungary Markov Random Field in Image Segmentation Zoltan Kato Image Proceing & Computer Graphic Dept. Univerity of Szeged Hungary Zoltan Kato: Markov Random Field in Image

More information

A Hierarchical Statistical Framework for the Segmentation of Deformable Objects in Image Sequences Charles Kervrann and Fabrice Heitz IRISA / INRIA -

A Hierarchical Statistical Framework for the Segmentation of Deformable Objects in Image Sequences Charles Kervrann and Fabrice Heitz IRISA / INRIA - A hierarchical statistical framework for the segmentation of deformable objects in image sequences Charles Kervrann and Fabrice Heitz IRISA/INRIA, Campus Universitaire de Beaulieu, 35042 Rennes Cedex,

More information

EFFICIENT BAYESIAN INFERENCE USING FULLY CONNECTED CONDITIONAL RANDOM FIELDS WITH STOCHASTIC CLIQUES. M. J. Shafiee, A. Wong, P. Siva, P.

EFFICIENT BAYESIAN INFERENCE USING FULLY CONNECTED CONDITIONAL RANDOM FIELDS WITH STOCHASTIC CLIQUES. M. J. Shafiee, A. Wong, P. Siva, P. EFFICIENT BAYESIAN INFERENCE USING FULLY CONNECTED CONDITIONAL RANDOM FIELDS WITH STOCHASTIC CLIQUES M. J. Shafiee, A. Wong, P. Siva, P. Fieguth Vision & Image Processing Lab, System Design Engineering

More information

Markov Logic: Representation

Markov Logic: Representation Markov Logic: Representation Overview Statistical relational learning Markov logic Basic inference Basic learning Statistical Relational Learning Goals: Combine (subsets of) logic and probability into

More information

Empirical Bayesian Motion Segmentation

Empirical Bayesian Motion Segmentation 1 Empirical Bayesian Motion Segmentation Nuno Vasconcelos, Andrew Lippman Abstract We introduce an empirical Bayesian procedure for the simultaneous segmentation of an observed motion field estimation

More information

Lesion Segmentation and Bias Correction in Breast Ultrasound B-mode Images Including Elastography Information

Lesion Segmentation and Bias Correction in Breast Ultrasound B-mode Images Including Elastography Information Lesion Segmentation and Bias Correction in Breast Ultrasound B-mode Images Including Elastography Information Gerard Pons a, Joan Martí a, Robert Martí a, Mariano Cabezas a, Andrew di Battista b, and J.

More information

Resolving motion ambiguities

Resolving motion ambiguities Resolving motion ambiguities K. I. Diamantaras Siemens Corporate Research 755 College Rd. East Princeton, NJ 08540 D. Geiger* Courant Institute, NYU Mercer Street New York, NY 10012 Abstract We address

More information

INTRO TO THE METROPOLIS ALGORITHM

INTRO TO THE METROPOLIS ALGORITHM INTRO TO THE METROPOLIS ALGORITHM A famous reliability experiment was performed where n = 23 ball bearings were tested and the number of revolutions were recorded. The observations in ballbearing2.dat

More information

Patch Based Blind Image Super Resolution

Patch Based Blind Image Super Resolution Patch Based Blind Image Super Resolution Qiang Wang, Xiaoou Tang, Harry Shum Microsoft Research Asia, Beijing 100080, P.R. China {qiangwa,xitang,hshum@microsoft.com} Abstract In this paper, a novel method

More information

Digital Image Processing COSC 6380/4393

Digital Image Processing COSC 6380/4393 Digital Image Processing COSC 6380/4393 Lecture 21 Nov 16 th, 2017 Pranav Mantini Ack: Shah. M Image Processing Geometric Transformation Point Operations Filtering (spatial, Frequency) Input Restoration/

More information

Theoretical Concepts of Machine Learning

Theoretical Concepts of Machine Learning Theoretical Concepts of Machine Learning Part 2 Institute of Bioinformatics Johannes Kepler University, Linz, Austria Outline 1 Introduction 2 Generalization Error 3 Maximum Likelihood 4 Noise Models 5

More information

Ground Tracking in Ground Penetrating Radar

Ground Tracking in Ground Penetrating Radar Ground Tracking in Ground Penetrating Radar Kyle Bradbury, Peter Torrione, Leslie Collins QMDNS Conference May 19, 2008 The Landmine Problem Landmine Monitor Report, 2007 Cost of Landmine Detection Demining

More information

Keywords: Image segmentation, EM algorithm, MAP Estimation, GMM-HMRF, color image segmentation

Keywords: Image segmentation, EM algorithm, MAP Estimation, GMM-HMRF, color image segmentation IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY IMPLEMENTING GMM-BASED HIDDEN MARKOV RANDOM FIELD FOR COLOUR IMAGE SEGMENTATION ShanazAman, Farhat Afreen, Harapriya Sahoo, Chandana

More information

A hybrid approach for image half-toning combining simulated annealing and Neural Networks based techniques

A hybrid approach for image half-toning combining simulated annealing and Neural Networks based techniques A hybrid approach for image half-toning combining simulated annealing and Neural Networks based techniques Kurosh Madani Intelligence in Instrumentation and Systems Lab. (I 2 S) SENART Institute of Technology

More information

Introduction to Medical Image Processing

Introduction to Medical Image Processing Introduction to Medical Image Processing Δ Essential environments of a medical imaging system Subject Image Analysis Energy Imaging System Images Image Processing Feature Images Image processing may be

More information

Smooth Image Segmentation by Nonparametric Bayesian Inference

Smooth Image Segmentation by Nonparametric Bayesian Inference Smooth Image Segmentation by Nonparametric Bayesian Inference Peter Orbanz and Joachim M. Buhmann Institute of Computational Science, ETH Zurich European Conference on Computer Vision (ECCV), 2006 The

More information

An Adaptive Clustering Algorithm for Image Segmentation

An Adaptive Clustering Algorithm for Image Segmentation IEEE TRANSACTIONS ON SIGNAL PROCESSING VOL 1 NO 1 APKll 1992 9 I An Adaptive Clustering Algorithm for Image Segmentation Thrasyvoulos N. Pappas Abstract-The problem of segmenting images of objects with

More information

Computer Science Workbench

Computer Science Workbench Computer Science Workbench Editor: Tosiyasu L. Kunii Springer Japan KK Computer Science Workbench N. Magnenat Thalmann, D. Thalmann: Image Synthesis. Theory and Practice. XV, 400 pp., 223 figs., including

More information

Discussion on Bayesian Model Selection and Parameter Estimation in Extragalactic Astronomy by Martin Weinberg

Discussion on Bayesian Model Selection and Parameter Estimation in Extragalactic Astronomy by Martin Weinberg Discussion on Bayesian Model Selection and Parameter Estimation in Extragalactic Astronomy by Martin Weinberg Phil Gregory Physics and Astronomy Univ. of British Columbia Introduction Martin Weinberg reported

More information