Difference between revisions of "Assignment 2 Part 1: Noise in images"

From Course Wiki
Jump to: navigation, search
(Created page with "Category:20.309 assignment 1 Category:20.309 Category:Optical Microscopy Lab {{Template:20.309}} ==Overview== File:Simple model of digital image acquisition.png...")
 
Line 6: Line 6:
 
==Overview==
 
==Overview==
 
[[File:Simple model of digital image acquisition.png|thumb|right]]
 
[[File:Simple model of digital image acquisition.png|thumb|right]]
The figure on the right depicts a (very) simplified model of digital image acquisition. In the diagram, a luminous source stochastically emits <math>\bar{N}</math> photons per second. A fraction <math>F_O</math> of the emitted photons lands on a semiconductor detector. Incident photons cause little balls (electrons) to fall out of the detector. The balls fall into a red bucket. At regular intervals, the bucket gets dumped out on to a table where the friendly vampier [http://muppet.wikia.com/wiki/Count_von_Count Count von Count] counts them.
+
Acquiring a digital image is essentially an exercise in measuring the intensity of light at numerous points on a grid. Light intensity measurements are subject to noise sources that limit the precision of images. In other words, there is a difference between what you measure and the actual value of the physical quantity you were trying to measure. Mathematically, this can be stated as: <math>M=Q+\epsilon</math>, where <math>M</math> is the measured value, <math>Q</math> is the true (unknowable) value of the quantity (light intensity in this case), and <math>\epsilon</math> is the measurement error. In this part of the assignment, you will develop a software model for the noise sources in a digital image.
 +
 
 +
In the classical model of electromagnetism, light intensity is a continuous quantity that could in theory be measured with arbitrary precision. It turns out that the quantum nature of light has fundamental implications
 +
 
 +
The figure on the right depicts a (very) simplified model of digital image acquisition. In the diagram, a luminous source stochastically emits <math>\bar{N}</math> photons per second. A fraction <math>F_O</math> of the emitted photons lands on a semiconductor detector. Incident photons cause little balls (electrons) to fall out of the detector. The balls fall into a red bucket. At regular intervals, the bucket gets dumped out on to a table where the friendly muppet vampire [http://muppet.wikia.com/wiki/Count_von_Count Count von Count] counts them. The process is repeated for each point on a grid.
  
 
==Modeling photon emission==
 
==Modeling photon emission==
 
[[File:PDF of MATLAB rand and randn functions]]
 
[[File:PDF of MATLAB rand and randn functions]]
 
{{Template:20.309 bottom}}
 
{{Template:20.309 bottom}}

Revision as of 23:17, 5 September 2017

20.309: Biological Instrumentation and Measurement

ImageBar 774.jpg


Overview

Simple model of digital image acquisition.png

Acquiring a digital image is essentially an exercise in measuring the intensity of light at numerous points on a grid. Light intensity measurements are subject to noise sources that limit the precision of images. In other words, there is a difference between what you measure and the actual value of the physical quantity you were trying to measure. Mathematically, this can be stated as: $ M=Q+\epsilon $, where $ M $ is the measured value, $ Q $ is the true (unknowable) value of the quantity (light intensity in this case), and $ \epsilon $ is the measurement error. In this part of the assignment, you will develop a software model for the noise sources in a digital image.

In the classical model of electromagnetism, light intensity is a continuous quantity that could in theory be measured with arbitrary precision. It turns out that the quantum nature of light has fundamental implications

The figure on the right depicts a (very) simplified model of digital image acquisition. In the diagram, a luminous source stochastically emits $ \bar{N} $ photons per second. A fraction $ F_O $ of the emitted photons lands on a semiconductor detector. Incident photons cause little balls (electrons) to fall out of the detector. The balls fall into a red bucket. At regular intervals, the bucket gets dumped out on to a table where the friendly muppet vampire Count von Count counts them. The process is repeated for each point on a grid.

Modeling photon emission

File:PDF of MATLAB rand and randn functions