Difference between revisions of "Assignment 4 part 1: Make a fake image"

From Course Wiki
Jump to: navigation, search
(A useful function: draw a particle)
(A useful function: draw a particle)
Line 27: Line 27:
 
</pre>
 
</pre>
  
Remember that MATLAB functions have to be stored in a file that has the same name as the function, appended with ".m" Give the function a try ... type something like: <tt>imshow( DrawOneFluorescentMicrosphere( 100, 100, 30, 1, 200, 200 ) ); </tt>. Play around with the arguments a bit. It's fun. You can make the microsphere as big or small as you like.
+
Remember that MATLAB functions have to be stored in a file that has the same name as the function, appended by ".m" Save the function in a file and give it a try ... type something like: <tt>imshow( DrawOneFluorescentMicrosphere( 100, 100, 30, 1, 200, 200 ) ); </tt>. Play around with the arguments. It's fun. You can make a giant microsphere or a tine one.
 +
 
 +
The next step is to write a function that can draw more than one particle. The function should take two arguments. The first argument is an N x 4 matrix. Each row of the matrix specifies a single microsphere. The first two columns contain the ''Y'' and ''X'' coordinates of the particle. The third column is the radius, and the fourth column is the intensity. Hint: use a <tt>for</tt> loop to iterate through each row of the matrix. Here is a framework for the function:
 +
 
 +
<pre>
 +
function OutputImage = SyntheticFluorescentMicrosphereImage( Particles, ImageSize )
 +
    OutputImage = zeros( ImageSize );
 +
 
 +
    for ii = 1:size( Particles, 1 )
 +
        position = Particles(ii, 1:2);
 +
        radius = Particles(ii, 3);
 +
        intensity = Particles(ii, 4);
 +
        % PUT YOUR CODE HERE
 +
    end
 +
end
 +
</pre>
  
 
{{Template:Assignment Turn In|message=
 
{{Template:Assignment Turn In|message=
Write a function that will draw a simulated image of multiple particles. The function should take the following arguments:
+
Write a function that draws a simulated image of multiple particles specified in an N x 4 matrix.
* an Nx2 matrix of centroids
+
* an Nx1 matrix of intensities
+
* a double for the radius of the microspheres
+
* a 1 x 2 vector 
+
 
}}
 
}}
  

Revision as of 19:48, 28 September 2017

20.309: Biological Instrumentation and Measurement

ImageBar 774.jpg


Overview

All software has to be tested. The code you will develop for this part of the lab measures the size and position of fluorescent microspheres in images. To test the code you are developing, you will need images of fluorescent microspheres. One way to get some images is to go to the lab, snap a few pictures with your microscope, and use those for testing. This is a fine idea, and you ought to do just that. But there is a drawback to this approach: the microspheres are scattered randomly so you don't know the ground truth of where the microspheres are. How will you know if you got it right? Another good approach is to generate synthetic images of microspheres whose positions you know exactly. The drawback of synthetic images is that thewy may differ in some important way from the actual images that come out of your microscope. It's a good idea to test your code both ways.

Before you start working on your resolution and particle tracking code, let's get started by generating synthetic images.

A useful function: draw a particle

You are going to make synthetic images of fluorescent microspheres. The function below is a useful building block. It draws a single microsphere on a dark background. To make an image of multiple particles, you can add up the images of several individual particles. (You will get funny results if the particles overlap — a physical impossibility IRL.)

The function takes arguments that specify the location of the particle, its radius, and its intensity as well as the size of the image. It returns a two-dimensional array of doubles. The function does not include any noise sources or blurring due to the optical system. We'll that those in a minute.

function OutputImage = DrawOneFluorescentMicrosphere( ...
        YCenter, XCenter, Radius, Intensity, ImageSizeY, ImageSizeX )
    
    [ x, y ] = meshgrid( 1:ImageSizeX, 1:ImageSizeY );

    distanceFromParticleCenterPixels = hypot(x - XCenter, y - YCenter);
    distanceFromParticleCenterRadiuses = distanceFromParticleCenterPixels ./ Radius;
    mask = ( distanceFromParticleCenterRadiuses < 1 );

    OutputImage = Intensity .* mask .* cos( distanceFromParticleCenterRadiuses .* pi ./ 2 );

end

Remember that MATLAB functions have to be stored in a file that has the same name as the function, appended by ".m" Save the function in a file and give it a try ... type something like: imshow( DrawOneFluorescentMicrosphere( 100, 100, 30, 1, 200, 200 ) ); . Play around with the arguments. It's fun. You can make a giant microsphere or a tine one.

The next step is to write a function that can draw more than one particle. The function should take two arguments. The first argument is an N x 4 matrix. Each row of the matrix specifies a single microsphere. The first two columns contain the Y and X coordinates of the particle. The third column is the radius, and the fourth column is the intensity. Hint: use a for loop to iterate through each row of the matrix. Here is a framework for the function:

function OutputImage = SyntheticFluorescentMicrosphereImage( Particles, ImageSize )
    OutputImage = zeros( ImageSize );

    for ii = 1:size( Particles, 1 )
        position = Particles(ii, 1:2);
        radius = Particles(ii, 3);
        intensity = Particles(ii, 4);
        % PUT YOUR CODE HERE
    end
end


Pencil.png

Write a function that draws a simulated image of multiple particles specified in an N x 4 matrix.


Modeling optical resolution




function OutputImage =