<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>imagej &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/imagej/</link>
	<description>Feed of posts on WordPress.com tagged "imagej"</description>
	<pubDate>Sat, 25 May 2013 12:35:13 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Equalization]]></title>
<link>http://ianwitham.wordpress.com/2009/12/17/equalization/</link>
<pubDate>Wed, 16 Dec 2009 21:02:48 +0000</pubDate>
<dc:creator>Ian Witham</dc:creator>
<guid>http://ianwitham.wordpress.com/2009/12/17/equalization/</guid>
<description><![CDATA[Looking back at my early strange attractors, it is obvious that the images are all very dark. The li]]></description>
<content:encoded><![CDATA[<p>Looking back at my early<a href="http://ianwitham.wordpress.com/2009/12/11/even-stranger-attractors/"> strange attractors</a>, it is obvious that the images are all very dark. The lightening technique I attempted to use on these images was level normalisation&#8230; I stretched the range of values out so that the lightest pixel was pure white, and the darkest pixel is black.</p>
<div id="attachment_137" class="wp-caption alignnone" style="width: 534px"><a href="http://ianwitham.files.wordpress.com/2009/12/000001_norm.png"><img class="size-full wp-image-137" title="000001_norm" src="http://ianwitham.files.wordpress.com/2009/12/000001_norm.png?w=524&#038;h=370" alt="" width="524" height="370" /></a><p class="wp-caption-text">Normalised image (&#34;stretched histogram&#34;)</p></div>
<p>While this is often a good technique for correcting the contrast and exposure in a photograph, it was clearly not doing the job for my strange attractor images. This was because the value histogram is extremely skewed to the left. Ie; most of the pixels are in the very (very) dark range, with only a few very bright pixels. In fact when viewed on-screen, most of these dark pixels are indistinguishable from black. Fortunately these are 16 bit images, so the hidden details are there to be discovered.</p>
<p>That&#8217;s where <a href="http://en.wikipedia.org/wiki/Histogram_equalization">Histogram equalization</a> comes in useful.</p>
<div id="attachment_138" class="wp-caption alignnone" style="width: 534px"><a href="http://ianwitham.files.wordpress.com/2009/12/000001_eq.png"><img class="size-full wp-image-138" title="000001_eq" src="http://ianwitham.files.wordpress.com/2009/12/000001_eq.png?w=524&#038;h=370" alt="Histogram equalized" width="524" height="370" /></a><p class="wp-caption-text">Histogram equalized</p></div>
<p>This technique actually redistributes the value densities along the histogram so that each value range is more evenly represented. Peaks in the histogram are widened and the troughs condensed. Effectively the surplus of dark shades in my images can be spread up towards the right of the value histogram.</p>
<p>As you can see in these examples of the same image first normalised, and then equalized, equalization really brings these images to life. Note that the grainy texture is due to the number of samples taken and not from the equalization process.</p>
<p>As I wanted to be able to quickly assess a folder full of thumbnails for interesting imaged, it made sense to find a way to programmatically equalize the images in Python before they are first saved to disk.</p>
<p>Luckily I found a suitable algorithm on <a href="http://jesolem.blogspot.com/2009/06/histogram-equalization-with-python-and.html">Salem&#8217;s Vision Blog</a>. I just had to make some small alterations so it would work with 16 bit images. I also set the first bin of the histogram to zero – this is to negate the large amount of black background which would otherwise ruin the equalization effect.ote</p>
<p>Here is my version of this code:</p>
<pre class="brush: python; title: ; notranslate" title="">
 def histeq(im,nbr_bins=2**16):
    '''histogram equalization'''
    #get image histogram
    imhist,bins = np.histogram(im.flatten(),nbr_bins,normed=True)
    imhist[0] = 0

    cdf = imhist.cumsum() #cumulative distribution function
    cdf ** .5
    cdf = (2**16-1) * cdf / cdf[-1] #normalize
    #cdf = cdf / (2**16.)  #normalize

    #use linear interpolation of cdf to find new pixel values
    im2 = np.interp(im.flatten(),bins[:-1],cdf)

    return np.array(im2, int).reshape(im.shape)
 </pre>
<p>If you&#8217;d rather used an image manipulation program to do this, the effect is available in <a href="http://photoshopdisasters.blogspot.com/">Photoshop</a>. I believe it is found under Levels &#62;&#62; Adjustments &#62;&#62; Equalize. If you select an area of the image first the equalization for the entire image can be based on the histogram of just the selected portion. This can be very useful for negating a black background, or a white sky etc.</p>
<p>In Linux you can do the same thing with <a href="http://rsbweb.nih.gov/ij/">ImageJ</a>, including selecting a region to base the histogram on.</p>
<p><a href="www.gimp.org/">GIMP</a> and <a href="http://www.cinepaint.org/">CinePaint</a> also have an equalize feature, but no option that I could find to base the histogram on a selected portion of the image. Also GIMP is currently geared towards 8-bit images, so no good in this case.</p>
<p>And for the sake of completeness, here is the latest version of my strange attractor finder. I have tidied up the code and made several optimizations for speed:</p>
<pre class="brush: python; collapse: true; light: false; title: ; toolbar: true; notranslate" title="">
#! /usr/bin/python

import png
import random
from math import floor
import numpy as np
import operator

def histeq(im,nbr_bins=2**16):
    '''histogram equalization'''
    #get image histogram
    imhist,bins = np.histogram(im.flatten(),nbr_bins,normed=True)
    imhist[0] = 0

    cdf = imhist.cumsum() #cumulative distribution function
    cdf ** .5
    cdf = (2**16-1) * cdf / cdf[-1] #normalize
    #cdf = cdf / (2**16.)  #normalize

    #use linear interpolation of cdf to find new pixel values
    im2 = np.interp(im.flatten(),bins[:-1],cdf)

    return np.array(im2, int).reshape(im.shape), cdf

def test_render(x_coefficients, y_coefficients,
                size, render_max, trap_size):

    # starting xy_pos
    x, y = random.random(), random.random()

    # initialize array
    img_array = np.zeros([size, size], int)

    a, b, c, d, e, f = x_coefficients
    g, h, i, j, k, l = y_coefficients

    while True:
        # main rendering loop

        x, y = (a*(x**2) + b*x*y + c*(y**2) + d*x + e*y + f,
                g*(x**2) + h*x*y + i*(y**2) + j*x + k*y + l)

        # translate x, y into array indices
        px = int((x+trap_size)*(size/(trap_size*2)))
        py = int((y+trap_size)*(size/(trap_size*2)))

        if not(px and py):
            return (None, None)
            # catch negative numbers... the &#34;IndexError&#34; won't
            # do this resulting in &#34;wrap-around&#34; images

        try:
            img_array[px, py] += 1
        except IndexError:
            return (None, None)

        if img_array[px, py] == render_max:
            return img_array, (x, y)

def final_render(x_coefficients, y_coefficients,
                size, render_max, trap_size, xy_pos):

    # starting xpos
    x, y = xy_pos

    # initialize array
    img_array = np.zeros([size, size], int)

    a, b, c, d, e, f = x_coefficients
    g, h, i, j, k, l = y_coefficients

    while True:
        # optimised rendering loop with no error checking etc.

        x, y = (a*(x**2) + b*x*y + c*(y**2) + d*x + e*y + f,
                g*(x**2) + h*x*y + i*(y**2) + j*x + k*y + l)

        # translate x, y into array indices
        px = int((x+trap_size)*(size/(trap_size*2)))
        py = int((y+trap_size)*(size/(trap_size*2)))

        # don't test for negatives

        # don't catch exceptions...
        img_array[px, py] += 1

        if img_array[px, py] == render_max:
            return img_array

if __name__ == &#34;__main__&#34;:

    import psyco
    psyco.full()

    trap_range = 2  # potential attractor is rejected if xy_pos
                    # falls further than this distance from origin

    painted_area_threshold = .01 # reject attractor if less than this portion
                                 # the whole has been painted
    test_render_size = 200
    test_render_max = 200

    final_render_size = 800
    final_render_max = 100000

    equalize_final = True

    img_index = 0
    imgWriter = png.Writer(final_render_size, final_render_size,
                           greyscale=True, alpha=False, bitdepth=16)

    while True:

        # Set the tweakable values of the attractor equations:
        random.seed()
        seed = int(random.random() * 10000000)
        random.seed(seed)
        x_coefficients = [random.choice([random.random()*4-2, 0, 1])\
                           for x in range(6)]
        y_coefficients = [random.choice([random.random()*4-2, 0, 1])\
                           for x in range(6)]

        # perform small test render
        img_array, xy_pos = test_render(x_coefficients, y_coefficients,
                                        test_render_size, test_render_max,
                                        trap_range)

        #only proceed if test attractor did not fail
        if not xy_pos:
            continue

        #only proceed if painted area meets threshold, otherwise loop to top
        painted_area = sum(img_array[img_array==True].flatten()) / test_render_size ** 2.
        if painted_area &#60; painted_area_threshold:
            continue

        # perform final render
        print &#34;rendering: %06d_%d.png&#34; % (img_index, seed)
        try:
            img_array = final_render(x_coefficients, y_coefficients,
                                     final_render_size, final_render_max,
                                     trap_range, xy_pos)
        except IndexError:
            continue

        # histogram equalization
        if equalize_final:
            img_array, cdr = histeq(img_array)

        # save to final render to png file
        f = open(&#34;a_%06d_%d.png&#34; % (img_index, seed), &#34;wb&#34;)
        imgWriter.write(f, img_array)
        f.close()
        img_index += 1
        print &#34;SAVED!&#34;
 </pre>
		<div id="geo-post-135" class="geo geo-post" style="display: none">
			<span class="latitude">-40.892291</span>
			<span class="longitude">174.982637</span>
		</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[More Bits Please]]></title>
<link>http://ianwitham.wordpress.com/2009/12/13/more-bits-please/</link>
<pubDate>Sun, 13 Dec 2009 05:20:31 +0000</pubDate>
<dc:creator>Ian Witham</dc:creator>
<guid>http://ianwitham.wordpress.com/2009/12/13/more-bits-please/</guid>
<description><![CDATA[GIMP does not support 16-bit per channel images fully as of version 2.6, which is a surprise. GIMP i]]></description>
<content:encoded><![CDATA[<p>GIMP does not support 16-bit per channel images fully as of version 2.6, which is a surprise. GIMP is often touted as the premier open source alternative to Photoshop.</p>
<p>GIMP is implementing 16 -bit support piecewise,  with full support slated for version 3. This scuttles my plan to work with high range grayscale images in GIMP.</p>
<p><a href="www.koffice.org/krita/">Krita</a> could have been a solution but I can&#8217;t try that as on my system (Ubuntu 9.10) it&#8217;s broken.</p>
<p><a href="http://www.cinepaint.org/">CinePaint</a> adjusts the levels beautifully but I can&#8217;t find how to map the greyscale to an arbitrary colored gradient.</p>
<p><a href="http://rsbweb.nih.gov/ij/">ImageJ</a> specialises in scientific analysis of image data. It was able to fix the contrast and apply &#8220;lookup table&#8221; coloration (see below). The finished image has a palette of 256 colours only because of the way the lookup table feature works, but It still looks miles better than my previous attempts using GIMP exclusively.</p>
<p><a href="http://ianwitham.files.wordpress.com/2009/12/a_000009_5971829_6854572_colour.png"><img class="alignnone size-medium wp-image-106" title="a_000009_5971829_6854572_COLOUR" src="http://ianwitham.files.wordpress.com/2009/12/a_000009_5971829_6854572_colour.png?w=542&#038;h=485" alt="" width="542" height="485" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[ImageJ plugin for navigation in very large images]]></title>
<link>http://stef2cnrs.wordpress.com/2009/10/09/imagej-plugin-for-navigation-in-very-large-images/</link>
<pubDate>Fri, 09 Oct 2009 15:51:04 +0000</pubDate>
<dc:creator>stef2cnrs</dc:creator>
<guid>http://stef2cnrs.wordpress.com/2009/10/09/imagej-plugin-for-navigation-in-very-large-images/</guid>
<description><![CDATA[Francis Géroudet Semester Project Microengineering section, EPFL June 2008 http://bigwww.epfl.ch/tea]]></description>
<content:encoded><![CDATA[<table style="border-top:1px solid #333366;border-bottom:2px solid #333366;" border="0" width="100%">
<tbody>
<tr>
<td><strong>Francis Géroudet</strong></td>
<td style="text-align:right;"><strong>Semester Project</strong></td>
</tr>
<tr>
<td>Microengineering section, EPFL</td>
<td style="text-align:right;">June 2008</td>
</tr>
</tbody>
</table>
<p><a href="http://bigwww.epfl.ch/teaching/projects/abstracts/geroudet/" rel="nofollow">http://bigwww.epfl.ch/teaching/projects/abstracts/geroudet/</a></p>
<h3>Abstract</h3>
<p>In the biomedical field, specialists need to work on series of images taken under a microscope, covering an area interesting to analyze. The purpose of this project was, starting from a lot of images forming a mosaic, to build an intuitive navigation system, which could maintain the quality of basic images. We developed two plug-in for images: the first helps to prepare images, while the second deals with the navigation in the mosaic of images. The overall strategy used here was to cut basic images into small blocks at different zoom levels. Then, when displaying, the second plug- in is able to retrieve the blocks corresponding to the area considered by the user. Note that zooms are made using B-Splines.</p>
<table border="0" cellpadding="4">
<tbody>
<tr>
<td><img src="http://bigwww.epfl.ch/teaching/projects/abstracts/geroudet/fig1.png" alt="image" /><br />
Fig. 1: User interface for the plug- in preparation</td>
<td><img src="http://bigwww.epfl.ch/teaching/projects/abstracts/geroudet/fig2.png" alt="image" /><br />
Fig. 2: User interface for the navigation in the mosaic</td>
</tr>
<tr>
<td><img src="http://bigwww.epfl.ch/teaching/projects/abstracts/geroudet/fig3.png" alt="image" /><br />
Fig. 3: Example of use plugin navigation</td>
</tr>
</tbody>
</table>
]]></content:encoded>
</item>
<item>
<title><![CDATA[The algorithms below are ready to be downloaded. Biomedical Imaging Group. EPFL]]></title>
<link>http://stef2cnrs.wordpress.com/2009/10/09/the-algorithms-below-are-ready-to-be-downloaded-biomedical-imaging-group-epfl/</link>
<pubDate>Fri, 09 Oct 2009 15:36:00 +0000</pubDate>
<dc:creator>stef2cnrs</dc:creator>
<guid>http://stef2cnrs.wordpress.com/2009/10/09/the-algorithms-below-are-ready-to-be-downloaded-biomedical-imaging-group-epfl/</guid>
<description><![CDATA[Available Algorithms http://bigwww.epfl.ch/algorithms.html http://www.google.com/codesearch/p?hl=fr]]></description>
<content:encoded><![CDATA[<table border="0" cellspacing="5" cellpadding="3" width="100%">
<tbody>
<tr>
<td>Available Algorithms</p>
<p><a href="http://bigwww.epfl.ch/algorithms.html" rel="nofollow">http://bigwww.epfl.ch/algorithms.html</a></p>
<p><a href="http://www.google.com/codesearch/p?hl=fr&#038;sa=N&#038;cd=4&#038;ct=rc#M0QGbzpICpo/kybic/thesis/&#038;q=MRI%20mesh%20matlab" rel="nofollow">http://www.google.com/codesearch/p?hl=fr&#038;sa=N&#038;cd=4&#038;ct=rc#M0QGbzpICpo/kybic/thesis/&#038;q=MRI%20mesh%20matlab</a></td>
</tr>
<tr>
<td>The algorithms below are ready to be downloaded. They are generally written in JAVA or in ANSI-C, either by students or by the members of the Biomedical Imaging Group.Please contact the author of the algorithms if you have a specific question.</td>
</tr>
<tr>
<td>
<table border="0" cellspacing="3" cellpadding="3" width="100%">
<tbody>
<tr>
<td colspan="2" valign="top">JAVA: Plug-ins for ImageJ</td>
</tr>
<tr>
<td colspan="2" valign="top">JAVA classes are usually meant to be integrated into the public-domain software                        <a href="http://rsb.info.nih.gov/ij/">ImageJ</a>.</td>
</tr>
<tr>
<td align="center" valign="top"><img src="http://bigwww.epfl.ch/images/bulletblack.gif" alt="bullet" /></td>
<td><a href="http://bigwww.epfl.ch/demo/dropanalysis/">Drop Shape Analysis</a>. New method based on B-spline snakes (active contours) for measuring high-accuracy contact angles of sessile drops.</td>
</tr>
<tr>
<td align="center" valign="top"><img src="http://bigwww.epfl.ch/images/bulletblack.gif" alt="bullet" /></td>
<td><a href="http://bigwww.epfl.ch/demo/edf/">Extended Depth of Focus</a>. The extended depth of focus is a image-processing method to obtain in focus microscopic images of 3D objects and organisms. We freely provide a software as a plugin of ImageJ to produce this in-focus image and the corresponding height map of z-stack images.</td>
</tr>
<tr>
<td align="center" valign="top"><img src="http://bigwww.epfl.ch/images/bulletblack.gif" alt="bullet" /></td>
<td><a href="http://bigwww.epfl.ch/demo/fractsplines/">Fractional spline wavelet transform</a>. This JAVA package computes the fractional spline wavelet transform of a signal or an image and its inverse.</td>
</tr>
<tr>
<td align="center" valign="top"><img src="http://bigwww.epfl.ch/images/bulletblack.gif" alt="bullet" /></td>
<td><a href="http://bigwww.epfl.ch/thevenaz/differentials/">Image Differentials</a>. This JAVA class for                        <a href="http://rsb.info.nih.gov/ij/">ImageJ</a> implements 6 operations based on the spatial differentiation of an image. It computes the pixel-wise gradient, Laplacian, and Hessian. The class exports public methods for horizontal and vertical gradient and Hessian operations (for those programmers who wish to use them in their own code).</td>
</tr>
<tr>
<td align="center" valign="top"><img src="http://bigwww.epfl.ch/images/bulletblack.gif" alt="bullet" /></td>
<td><a href="http://bigwww.epfl.ch/thevenaz/mosaicj/">MosaicJ</a>. This JAVA class for                        <a href="http://rsb.info.nih.gov/ij/">ImageJ</a> performs the assembly of a mosaic of overlapping individual images, or tiles. It provides a semi-automated solution where the initial rough positioning of the tiles must be performed by the user, and where the final delicate adjustments are performed by the plugin.</td>
</tr>
<tr>
<td align="center" valign="top"><img src="http://bigwww.epfl.ch/images/bulletblack.gif" alt="bullet" /></td>
<td><a href="http://www.imagescience.org/meijering/software/neuronj/">NeuronJ</a>. This Java class for ImageJ was developed to facilitate the tracing and quantification of neurites in two-dimensional (2D) fluorescence microscopy images. The tracing is done interactively based on the specification of end points; the optimal path is determined on the fly from the optimization of a cost function using Dijkstra&#8217;s shortest-path algorithm. The procedure also takes advantage of an improved <a href="http://bigwww.epfl.ch/preprints/jacob0302p.html">ridge detector</a> implemented by means of a steerable filterbank.</td>
</tr>
<tr>
<td align="center" valign="top"><img src="http://bigwww.epfl.ch/images/bulletblack.gif" alt="bullet" /></td>
<td><a href="http://www.unil.ch/cig/page16989.html">PixFRET</a>. The ImageJ plug-in PixFRET allows to visualize the FRET between two partners in a cell or in a cell population by computing pixel by pixel the images of a sample acquired in three channels.</td>
</tr>
<tr>
<td align="center" valign="top"><img src="http://bigwww.epfl.ch/images/bulletblack.gif" alt="bullet" /></td>
<td><a href="http://bigwww.epfl.ch/thevenaz/pointpicker/">Point Picker</a>. This JAVA class for                        <a href="http://rsb.info.nih.gov/ij/">ImageJ</a> allows the user to pick some points in an image and to save the list of pixel coordinates as a text file. It is also possible to read back the text file so as to restore the display of the coordinates.</td>
</tr>
<tr>
<td align="center" valign="top"><img src="http://bigwww.epfl.ch/images/bulletblack.gif" alt="bullet" /></td>
<td><a href="http://bigwww.epfl.ch/algorithms/ijplugins/resize/">Resize</a>. This                        <a href="http://rsb.info.nih.gov/ij/">ImageJ</a> plugin changes the size of an image to any dimension using either interpolation, or least-squares approximation.</td>
</tr>
<tr>
<td align="center" valign="top"><img src="http://bigwww.epfl.ch/images/bulletblack.gif" alt="bullet" /></td>
<td><a href="http://bigwww.epfl.ch/thevenaz/shepplogan/">SheppLogan</a>. The purpose of this                        <a href="http://rsb.info.nih.gov/ij/">ImageJ</a> plugin is to generate sampled versions of the Shepp-Logan phantom. Their size can be tuned.</td>
</tr>
<tr>
<td align="center" valign="top"><img src="http://bigwww.epfl.ch/images/bulletblack.gif" alt="bullet" /></td>
<td><a href="http://bigwww.epfl.ch/thevenaz/snakuscule/">Snakuscule</a>. The purpose of this                        <a href="http://rsb.info.nih.gov/ij/">ImageJ</a> plugin is to detect circular bright blobs in images and to quantify them. It allows one to keep record of their location and size.</td>
</tr>
<tr>
<td align="center" valign="top"><img src="http://bigwww.epfl.ch/images/bulletblack.gif" alt="bullet" /></td>
<td><a href="http://bigwww.epfl.ch/sage/soft/spottracker/">SpotTracker</a> Single particle tracking over noisy images sequence. SpotTracker is a robust and fast computational procedure for tracking fluorescent markers in time-lapse microscopy. The algorithm is optimized for finding the time-trajectory of single particles in very noisy image sequences. The optimal trajectory of the particle is extracted by applying a dynamic programming optimization procedure.</td>
</tr>
<tr>
<td align="center" valign="top"><img src="http://bigwww.epfl.ch/images/bulletblack.gif" alt="bullet" /></td>
<td><a href="http://bigwww.epfl.ch/thevenaz/stackreg/">StackReg</a>. This JAVA class for                        <a href="http://rsb.info.nih.gov/ij/">ImageJ</a> performs the recursive registration (alignment) of a stack of images, so that each slice acts as template for the next one. This plugin requires that <a href="http://bigwww.epfl.ch/thevenaz/turboreg/">TurboReg</a> is installed.</td>
</tr>
<tr>
<td align="center" valign="top"><img src="http://bigwww.epfl.ch/images/bulletblack.gif" alt="bullet" /></td>
<td><a href="http://bigwww.epfl.ch/demo/steerable/">Steerable feature detectors</a>. This                        <a href="http://rsb.info.nih.gov/ij/">ImageJ</a> plugin implements a series of optimized contour and ridge detectors. The filters are steerable and are based on the optimization of a Canny-like criterion. They have a better orientation selectivity than the classical gradient or Hessian-based detectors.</td>
</tr>
<tr>
<td align="center" valign="top"><img src="http://bigwww.epfl.ch/images/bulletblack.gif" alt="bullet" /></td>
<td><a href="http://bigwww.epfl.ch/thevenaz/turboreg/">TurboReg</a>. This JAVA class for                        <a href="http://rsb.info.nih.gov/ij/">ImageJ</a> performs the registration (alignment) of two images. The registration criterion is least-squares. The geometric deformation model can be translational, conformal, affine, and bilinear.</td>
</tr>
<tr>
<td align="center" valign="top"><img src="http://bigwww.epfl.ch/images/bulletblack.gif" alt="bullet" /></td>
<td><a href="http://bigwww.epfl.ch/thevenaz/UnwarpJ/">UnwarpJ</a>. This JAVA class for                        <a href="http://rsb.info.nih.gov/ij/">ImageJ</a> performs the elastic registration (alignment) of two images. The registration criterion includes a vector-spline regularization term to constrain the deformation to be physically realistic. The deformation model is made of cubic splines, which ensures smoothness and versatility.</td>
</tr>
<tr>
<td colspan="2" valign="top">ANSI C</td>
</tr>
<tr>
<td colspan="2" valign="top">Most often, the ANSI-C pieces of code are not a complete program, but rather an element in a library of routines.</td>
</tr>
<tr>
<td align="center" valign="top"><img src="http://bigwww.epfl.ch/images/bulletblack.gif" alt="bullet" /></td>
<td><a href="http://bigwww.epfl.ch/thevenaz/affine/">Affine transformation</a>. This ANSI-C routine performs an affine transformation on an image or a volume. It proceeds by resampling a continuous spline model.</td>
</tr>
<tr>
<td align="center" valign="top"><img src="http://bigwww.epfl.ch/images/bulletblack.gif" alt="bullet" /></td>
<td><a href="http://bigwww.epfl.ch/thevenaz/registration/">Registration</a>. This ANSI-C routine performs the registration (alignment) of two images or two volumes. The criterion is least-squares. The geometric deformation model can be translational, rotational, and affine.</td>
</tr>
<tr>
<td align="center" valign="top"><img src="http://bigwww.epfl.ch/images/bulletblack.gif" alt="bullet" /></td>
<td><a href="http://bigwww.epfl.ch/thevenaz/shiftedlin/">Shifted linear interpolation</a>. This ANSI-C program illustrates how to perform shifted linear interpolation.</td>
</tr>
<tr>
<td align="center" valign="top"><img src="http://bigwww.epfl.ch/images/bulletblack.gif" alt="bullet" /></td>
<td><a href="http://bigwww.epfl.ch/thevenaz/interpolation/">Spline interpolation</a>. This ANSI-C program illustrates how to perform spline interpolation, including the computation of the so-called spline coefficients.</td>
</tr>
<tr>
<td align="center" valign="top"><img src="http://bigwww.epfl.ch/images/bulletblack.gif" alt="bullet" /></td>
<td><a href="http://bigwww.epfl.ch/sage/pyramids/">Spline pyramids</a>. This software package implements the basic REDUCE and EXPAND operators for the reduction and enlargement of signals and images by factors of two based on polynomial spline representation of the signal.</td>
</tr>
<tr>
<td colspan="2" valign="top">Others</td>
</tr>
<tr>
<td align="center" valign="top"><img src="http://bigwww.epfl.ch/images/bulletblack.gif" alt="bullet" /></td>
<td><a href="http://bigwww.epfl.ch/demo/Esplines/">E-splines</a>. A Mathematica package is made available for the symbolic computation of exponential spline related quantities: B-splines, Gram sequence, Green function, and localization filter.</td>
</tr>
<tr>
<td align="center" valign="top"><img src="http://bigwww.epfl.ch/images/bulletblack.gif" alt="bullet" /></td>
<td><a href="http://bigwww.epfl.ch/demo/fractsplines/">Fractional spline wavelet transform</a>. A MATLAB package is available for computing the fractional spline wavelet transform of a signal or an image and its inverse.</td>
</tr>
<tr>
<td align="center" valign="top"><img src="http://bigwww.epfl.ch/images/bulletblack.gif" alt="bullet" /></td>
<td><a href="http://bigwww.epfl.ch/demo/fractsplines-fractals/">Fractional spline and fractals</a>. A MATLAB package is available for computing the fractional smoothing spline estimator of a signal and for generating fBms (fractional Brownian motion). This spline estimator provides the minimum mean squares error reconstruction of a fBm (or 1/f-type signal) corrupted by additive noise.</td>
</tr>
<tr>
<td align="center" valign="top"><img src="http://bigwww.epfl.ch/images/bulletblack.gif" alt="bullet" /></td>
<td><a href="http://bigwww.epfl.ch/demo/hexsplines/">Hex-splines</a> : a novel spline family for hexagonal lattices. A Maple 7.0 worksheet is available for obtaining the analytical formula of any hex-spline (any order, regular, non-regular, derivatives, and so on).</td>
</tr>
<tr>
<td align="center" valign="top"><img src="http://bigwww.epfl.ch/images/bulletblack.gif" alt="bullet" /></td>
<td><a href="http://bigwww.epfl.ch/algorithms/mltldeconvolution/">MLTL deconvolution</a> : This Matlab package implements the MultiLevel Thresholded Landweber (MLTL) algorithm, an accelerated version of the TL algorithm that was specifically developped for deconvolution problems with a wavelet-domain regularization.</td>
</tr>
<tr>
<td align="center" valign="top"><img src="http://bigwww.epfl.ch/images/bulletblack.gif" alt="bullet" /></td>
<td><a href="http://bigwww.epfl.ch/demo/suredenoising/">OWT SURE-LET Denoising</a> : This Matlab package implements the interscale orthonormal wavelet thresholding algorithm based on the SURE-LET (Stein&#8217;s Unbiased Risk Estimate/Linear Expansion of Thresholds) principle.</td>
</tr>
<tr>
<td align="center" valign="top"><img src="http://bigwww.epfl.ch/images/bulletblack.gif" alt="bullet" /></td>
<td><a href="http://bigwww.epfl.ch/demo/wspm/">WSPM</a> : Wavelet-based statistical parametric mapping, a toolbox for SPM that incorporates powerful wavelet processing and spatial domain statistical testing for the analysis of fMRI data.</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Algo útil... para algunos...]]></title>
<link>http://cieloazulgris.wordpress.com/2009/09/12/algo-util-para-algunos/</link>
<pubDate>Sat, 12 Sep 2009 17:44:00 +0000</pubDate>
<dc:creator>dannygalleguillos</dc:creator>
<guid>http://cieloazulgris.wordpress.com/2009/09/12/algo-util-para-algunos/</guid>
<description><![CDATA[Considerando que el widget chucknorrisfacts ya no funciona debo encontrar otro pasatiempo que me per]]></description>
<content:encoded><![CDATA[<div class="separator" style="clear:both;text-align:center;"></div>
<div style="text-align:justify;"><span style="font-family:Arial, Helvetica, sans-serif;">Considerando que el </span><a href="http://mac.softpedia.com/progScreenshots/Chuck-Norris-Facts-Dashboard-Widget-Screenshot-40358.html"><span style="font-family:Arial, Helvetica, sans-serif;">widget chucknorrisfacts</span></a><span style="font-family:Arial, Helvetica, sans-serif;"> ya no funciona debo encontrar otro pasatiempo que me permita evadir mis responsabilidades. Así que mientras buscaba que hacer se me ocurrió que sería provechoso compartir una lista de programas que &#160; me han sido útiles en el&#160;</span><a href="http://www.neda.cl/"><span style="font-family:Arial, Helvetica, sans-serif;">trabajo</span></a><span style="font-family:Arial, Helvetica, sans-serif;">&#160;(a propósito&#8230; dejé el </span><a href="http://ecb_icbm.med.uchile.cl/Index.html"><span style="font-family:Arial, Helvetica, sans-serif;">trabajo anterior</span></a><span style="font-family:Arial, Helvetica, sans-serif;">). Aquí una pequeña lista de aplicaciones para el sistema operativo de la </span><a href="http://www.apple.com/"><span style="font-family:Arial, Helvetica, sans-serif;">gran manzana</span></a><span style="font-family:Arial, Helvetica, sans-serif;">&#160;para aquellos que trabajan en la investigación científica (no me gusta decir que trabajo como científico, es muy difícil de definir). Ah!&#8230; son todos gratuitos:</span></div>
<div style="text-align:justify;"></div>
<div style="text-align:justify;"></div>
<ul>
<li><a href="http://mekentosj.com/science/4peaks/"><span style="font-family:Arial, Helvetica, sans-serif;">4Peaks</span></a><span style="font-family:Arial, Helvetica, sans-serif;">: Visualización de cromatogramas de distintos equipos de secuenciación de DNA. Entrega histogramas de calidad y conexión directa a </span><a href="http://blast.ncbi.nlm.nih.gov/Blast.cgi"><span style="font-family:Arial, Helvetica, sans-serif;">Blast</span></a></li>
<li><a href="http://mekentosj.com/science/enzymex/"><span style="font-family:Arial, Helvetica, sans-serif;">EnzymeX</span></a><span style="font-family:Arial, Helvetica, sans-serif;">: Permite realizar análisis de restricción de fragmentos de DNA. Además posee una completa base de datos de las enzimas de restricción disponibles en el mercado, permitiendo planificar el experimento y visualizar el resultado esperado</span></li>
</ul>
<div><span style="font-family:Arial, Helvetica, sans-serif;">Estos dos mencionados son desarrollados por los mismos chicos de </span><a href="http://mekentosj.com/"><span style="font-family:Arial, Helvetica, sans-serif;">Papers</span></a></div>
<ul>
<li><a href="http://www.edenwaith.com/products/edengraph/"><span style="font-family:Arial, Helvetica, sans-serif;">EdenGraph</span></a><span style="font-family:Arial, Helvetica, sans-serif;">: Un calculador de gráficos en 2D dinámico. Simple de usar.&#160;</span></li>
<li><a href="http://www.macbiophotonics.ca/imagej/installing_imagej.htm"><span style="font-family:Arial, Helvetica, sans-serif;">ImageJ</span></a><span style="font-family:Arial, Helvetica, sans-serif;">: El clásico procesador de imágenes. Pero en este enlace, con un paquete de plug-ins seleccionados especialmente para el análisis de imégenes de microscopía</span></li>
<li><a href="http://plot.micw.eu/"><span style="font-family:Arial, Helvetica, sans-serif;">Plot0.997</span></a><span style="font-family:Arial, Helvetica, sans-serif;">: Nuevamente gráficos en 2D. Poderoso y con amplias funciones.</span></li>
<li><a href="http://chmox.sourceforge.net/"><span style="font-family:Arial, Helvetica, sans-serif;">Chmox</span></a><span style="font-family:Arial, Helvetica, sans-serif;">: Un visualizador de archivos .chm. Muchas guías y manuales de ayuda están en este formato.</span></li>
</ul>
<div><span style="font-family:Arial, Helvetica, sans-serif;">Adios!</span>
<div class="separator" style="clear:both;text-align:center;"><a href="http://cieloazulgris.files.wordpress.com/2009/09/498096263_45093ef0031.jpg" style="margin-left:1em;margin-right:1em;"><img border="0" src="http://cieloazulgris.files.wordpress.com/2009/09/498096263_45093ef0031.jpg?w=300" /></a></div>
</div>
<p><a href="http://blast.ncbi.nlm.nih.gov/Blast.cgi"></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[More Fun With False Color]]></title>
<link>http://tombenedict.wordpress.com/2009/07/06/more-fun-with-false-color/</link>
<pubDate>Mon, 06 Jul 2009 01:37:38 +0000</pubDate>
<dc:creator>Tom Benedict</dc:creator>
<guid>http://tombenedict.wordpress.com/2009/07/06/more-fun-with-false-color/</guid>
<description><![CDATA[Most of the time I&#8217;m doing kite aerial photography, it is to create a picture I like; that I w]]></description>
<content:encoded><![CDATA[<p>Most of the time I&#8217;m doing kite aerial photography, it is to create a picture I like; that I would want to hang on my wall.  But on occasion I&#8217;ve done KAP strictly as a method of remote sensing.  The pictures are data rather than an attempt at art.  I&#8217;ve flown at Kiholo Bay several times now, usually in the former category of creating pleasing images.  This most recent trip was strictly in the latter sense: to take data.  But any time I&#8217;m out in the field doing KAP, I try to have fun and to stretch what I can do with what I&#8217;ve got.  This outing was no exception.</p>
<p>The requirements for the flight strictly called for oblique angles.  I settled on 45 degrees for most of them, though occasionally I used a steeper or a shallower angle as best suited the subject.  But I took some ortho images anyway.  It&#8217;s always fun to compare against what Google Earth shows for a particular region, and ortho can be useful when I&#8217;m going through the pictures later to judge distance and height.  The field of view of my camera is such that the horizontal width of the frame corresponds to the height of the camera to within 5%.  By taking the occasional orthogonal image, I can typically go back through the images with a map or Google Earth to figure out how high the camera was.  Besides, it&#8217;s always fun to compare the KAP image to the Google Earth image, if for no other reason than to point out that comparing satellite imagery and low altitude aerial imagery is seriously comparing apples and oranges.</p>
<p style="text-align:center;"><a title="Kiholo Bay - Google Earth Imagery by t.benedict, on Flickr" href="http://www.flickr.com/photos/tbenedict/3691764725/"><img src="http://farm3.static.flickr.com/2446/3691764725_526f20ed6f.jpg" alt="Kiholo Bay - Google Earth Imagery" width="500" height="323" /></a></p>
<p>Ever since doing some work for an archaeologist from Oahu, I&#8217;ve been trying various false color techniques to try to get information out of my images.  Most of the time this has been done with orthogonal pictures, though as you can see from my previous post, the same tricks can be used on practically any picture.  But it works well with the orthos:</p>
<p style="text-align:center;"><a title="Kiholo Bay Ortho Composite by t.benedict, on Flickr" href="http://www.flickr.com/photos/tbenedict/3688506425/"><img src="http://farm3.static.flickr.com/2577/3688506425_9bec1b7c5a.jpg" alt="Kiholo Bay Ortho Composite" width="500" height="325" /></a></p>
<p style="text-align:left;">There are a number of features in this picture that are worth trying to isolate.  There are kiawe trees, a patch of fountain grass, pahoehoe lava from a Mauna Loa lava flow, aa lava from a Hualalai lava flow, water, coral rock, and even a swimmer in the water.</p>
<p style="text-align:center;"><a title="Kiholo Bay Ortho Composite - False Color by t.benedict, on Flickr" href="http://www.flickr.com/photos/tbenedict/3688509199/"><img src="http://farm3.static.flickr.com/2635/3688509199_baff653372.jpg" alt="Kiholo Bay Ortho Composite - False Color" width="500" height="325" /></a></p>
<p style="text-align:left;">The first approach I tried was to use ImageJ with the DStretch plug-in.  It&#8217;s a really good false color filter that can be used to boost any manner of color combinations in an image.  In this case I used the YDS setting with a 315 degree rotation in hue, and managed to isolate most of the features listed above:  Kiawe trees are rendered as a combination of yellowish green in the upper branches, and red for the dead undergrowth.  The fountain grass is rendered as a bright red.  Pahoehoe lava is rendered as a blackish purple, and the aa is rendered as a reddish purple, as are the cracks in the pahoehoe lava.  Coral shows up as  a very light blueish purple, almost white, and the water is rendered as antifreeze green.  Lurid though the colors may be, it makes picking out individal elements in the image quite easy.</p>
<p style="text-align:left;">Another approach that has worked well in the past is to separate the R, G, and B channels in the image, and treat them as components in a mathematical expression.  This is a tried and true technique that&#8217;s been used in astronomy for ages.  B-V (or in the RGB world, B-G) images can be used to judge the temperature of a star, for example.  I wasn&#8217;t taking pictures of stars, but there&#8217;s still validity in the idea.  Let&#8217;s say I want to find the redder aa lava, but don&#8217;t want to get a false positive from the coral rock in the frame.  Subtracting the blue channel from the red channel picks up primarily red objects, in this case aa lava and cracks in the darker pahoehoe lava, though this catches the green vegetation as well:</p>
<p style="text-align:center;"><a title="Kiholo Bay Ortho Composite - Red minus Blue by t.benedict, on Flickr" href="http://www.flickr.com/photos/tbenedict/3692534060/"><img src="http://farm4.static.flickr.com/3540/3692534060_28797c7784.jpg" alt="Kiholo Bay Ortho Composite - Red minus Blue" width="500" height="325" /></a></p>
<p style="text-align:left;">Similarly, green vegetation can be isolated by subtracting red or blue from the green component, and in this case it doesn&#8217;t do such a good job of picking up the rocks:</p>
<p style="text-align:center;"><a title="Kiholo Bay Ortho Composite - Green minus Blue by t.benedict, on Flickr" href="http://www.flickr.com/photos/tbenedict/3691730937/"><img src="http://farm3.static.flickr.com/2593/3691730937_5a8c49d9e3.jpg" alt="Kiholo Bay Ortho Composite - Green minus Blue" width="500" height="325" /></a></p>
<p style="text-align:left;">Slightly more complicated expressions can be used to isolate other colors in the image, or to further separate colors.  And likewise, this trick can be used on false color images that have been produced through some other tool, such as DStretch.</p>
<p style="text-align:left;">Despite having resources like Google Earth available to us, kite aerial photography still offers a great deal of utility as a remote sensing platform.  But I still like making pretty pictures best of all.  The next time I grab my bag and head out the door, it&#8217;ll be to go somewhere nice and take pictures I like: the kind I want to hang on my wall.</p>
<p style="text-align:left;">&#8211; Tom</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Stereo Aerial Photography and False Color]]></title>
<link>http://tombenedict.wordpress.com/2009/06/26/stereo-aerial-photography-and-false-color/</link>
<pubDate>Fri, 26 Jun 2009 23:42:01 +0000</pubDate>
<dc:creator>Tom Benedict</dc:creator>
<guid>http://tombenedict.wordpress.com/2009/06/26/stereo-aerial-photography-and-false-color/</guid>
<description><![CDATA[It&#8217;s always fun to see what can be done with aerial photography: large stitched panoramas, Pho]]></description>
<content:encoded><![CDATA[<p>It&#8217;s always fun to see what can be done with aerial photography: large stitched panoramas, Photosynths, 3D modeling, 2D maps.  One technique that KAP lends itself to particularly well is stereo aerial photography.</p>
<p>With an airplane, stereo photography is typically done by pointing the camera 90 degrees to the direction of flight, and taking a succession of pictures as the airplane flies across the landscape.  Careful choice of frame rate, airspeed, and altitude yields good results.</p>
<p>With a kite, a similar technique can be used:  Point the camera 90 degrees to the kite line, start the shutter going, and carefully walk backwards.  The kite will quickly settle into a stable flight angle with the increased apparent wind speed from the walking, and a nice steady stream of pictures is the result.  This is an example from a recent flight over the contact between two lava flows on the Big Island of Hawaii:</p>
<p style="text-align:center;"><a title="Lava Stereo Pair - True and False Color by t.benedict, on Flickr" href="http://www.flickr.com/photos/tbenedict/3662997111/"><img class="aligncenter" src="http://farm4.static.flickr.com/3385/3662997111_fa1d4ba1d7.jpg" alt="Lava Stereo Pair - True and False Color" width="500" height="410" /></a></p>
<p>The top two pictures are the natural color images as they came off the camera.  The bottom two require more explanation:</p>
<p>Another technique I&#8217;ve used with aerial photography is to apply false color techniques to boost certain details, certain colors, or to change the contrast of the image so that particular features will catch the eye.  Most of my experimentation along these lines has been done using an image manipulation program called <a title="ImageJ" href="http://rsbweb.nih.gov/ij/" target="_blank">ImageJ</a>, and a plug-in called <a title="DStretch" href="http://www.dstretch.com/" target="_blank">DStretch</a>.  ImageJ is a general purpose image manipulation program written in Java.  DStretch is an implementation of the principal component algorithm for contrast stretching that was written by Jon Harman.  It was originally written for bringing up faint details in pictographs, but it has proven to be useful with aerial imagery as well.</p>
<p>In order to get a sense of scale of the image, the thin yellow line in the top pair is a three-section 25&#8242; painter&#8217;s pole thath as been collapsed to its shortest length.  My flying partner and I were using it to lower a camera into one of the holes we found in the lava in order to explore the inside.</p>
<p>This probably isn&#8217;t the best example of either technique, but it&#8217;s the first time I used them in combination.  At some point I&#8217;ll write a more in-depth article about building stereo pairs, and a second article about the use of ImageJ and DStretch with aerial photography.  In the meanwhile, enjoy.</p>
<p>Tom</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[pour commencer un article PLoS_one__guidelines-figure-table]]></title>
<link>http://stef2cnrs.wordpress.com/2009/02/27/pour-commencer-un-article-plos_one__guidelines-figure-table/</link>
<pubDate>Fri, 27 Feb 2009 08:41:26 +0000</pubDate>
<dc:creator>stef2cnrs</dc:creator>
<guid>http://stef2cnrs.wordpress.com/2009/02/27/pour-commencer-un-article-plos_one__guidelines-figure-table/</guid>
<description><![CDATA[Guidelines for Figure and Table Preparation http://www.plosone.org/static/figureGuidelines.action Co]]></description>
<content:encoded><![CDATA[<h1>Guidelines for Figure and Table Preparation</h1>
<p><a href="http://www.plosone.org/static/figureGuidelines.action">http://www.plosone.org/static/figureGuidelines.action</a></p>
<h2>Contents:</h2>
<ol>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#intro">Introduction</a></li>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#ccal">Creative Commons Attribution License</a></li>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#titles">Titles and Legends</a></li>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#general">General Considerations</a>
<ul>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#software">Recommended Software</a></li>
</ul>
</li>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#preparation">Figure Preparation</a>
<ul>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#size">File Size</a></li>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#quality">Quality</a></li>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#format">Format</a></li>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#mode">Color Mode</a></li>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#layered">Layered TIFFs</a></li>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#background">Background Color</a></li>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#lines">Lines, Rules, and Strokes</a></li>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#whitespace">White Space</a></li>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#text">Text within Figures</a>
<ul>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#fonts">Fonts</a></li>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#parts">Parts labels</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#dimensions">Figure Dimensions</a>
<ul>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#alignment">Alignment</a></li>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#width">Width</a></li>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#quickref">Quick Reference: Dimensions</a></li>
</ul>
</li>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#types">Figure Types</a>
<ul>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#lineart">Line Art</a></li>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#grayscale">Grayscale</a></li>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#halftones">Halftones</a></li>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#combination">Combinations</a></li>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#stereograms">Stereograms</a></li>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#quickref2">Quick Reference: Figure Types</a></li>
</ul>
</li>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#uploading">Uploading Figures to the PLoS Manuscript Submission System</a></li>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#multimedia">Multimedia Files</a></li>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#manipulation">Image Manipulation</a></li>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#howto">How To</a>
<ul>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#eps">Embed Fonts in EPS Files</a></li>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#outlines">Convert Text to Outlines</a></li>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#tiff">Convert Other File Types to TIFF</a></li>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#lzw">Reduce TIFF File Size with LZW Compression</a></li>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#resolution">Locate the Resolution Information in a TIFF File</a></li>
</ul>
</li>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#tables">Format Tables</a></li>
<li><a href="http://www.plosone.org/static/figureGuidelines.action#help">Getting Help</a></li>
</ol>
<p><a id="intro" name="intro"></a></p>
<h2>1. Introduction</h2>
<p>As part of the process of making scientific and medical   literature openly accessible on the Web, PLoS uses a streamlined   production process that takes authors&#8217; submitted figures straight   to the formatting stage. Most importantly, PLoS does not redraw   figures submitted for publication in articles. Therefore, figure   preparation is the author&#8217;s responsibility.</p>
<p>Please read the following guidelines carefully and thoroughly.   Failure to comply with these guidelines may result in   lower-quality figures and prolonged publishing time of your   article.</p>
<p><a id="ccal" name="ccal"></a></p>
<h2>2. Creative Commons Attribution License</h2>
<p>All figures and photographic images will be published under a   <a href="http://creativecommons.org/licenses/by/2.5/">Creative   Commons Attribution License</a> (CCAL), which allows them to be   freely used, distributed, and built upon as long as proper   attribution is given. Please do not submit any figures or photos   that have been previously copyrighted unless you have express   written permission from the copyright holder to publish under the   CCAL license.</p>
<p>For license inquiries, email <a href="mailto:license@plos.org">license@plos.org</a>.</p>
<p><a id="titles" name="titles"></a></p>
<h2>3. Titles and Legends</h2>
<p>Titles and legends (captions) for figures published with   articles (i.e., not Supporting Figures) should be included in the   main manuscript text file, not as part of the figure files   themselves. For each figure, list the following information at   the end of the manuscript text, after the references:</p>
<div style="margin-left:2em;">
<ul>
<li>Figure number (in sequence, using Arabic numerals: Figure       1, Figure 2, Figure 3, <em>etc.</em>)</li>
<li>Short title using a maximum of 15 words. The figure title       should be bold type, using sentence case ending with a period       (.). For example: <strong>Figure 1. Adaptation and       its potential costs.</strong></li>
<li>A detailed legend of 300 words maximum can follow the       figure title. Figure parts should be indicated (see <a href="http://www.plosone.org/static/figureGuidelines.action#parts">Parts       Labels</a>, below).</li>
<li>For more detailed information on Legends, see Author       Guidelines: Figure Legends.</li>
</ul>
</div>
<p><strong>Supporting Figures.</strong> If Supporting Information figures will   publish with your paper, please include the captions in the   article file for <em>PLoS Biology</em> or <em>Medicine</em>, and   in the File Title field of the online submission system for   <em>PLoS ONE</em>, <em>Neglected Tropical Diseases</em>,   <em>Genetics</em>, <em>Computational Biology</em>, or   <em>Pathogens</em>.</p>
<p><strong>Note</strong>: If at any point you have to change the numbering order   of your figures, you must make sure that all figure captions   correctly correspond with the figures.</p>
<p><a id="general" name="general"></a></p>
<h2>4. General Considerations</h2>
<p>There are two broad categories of figures in PLoS articles:   (1) those publishing directly with the article and (2) Supporting   Information figures.</p>
<p>Supporting Figures are not published directly in the article;   rather, a hyperlink to the figure is provided in the online   version of the published article. Figures publishing as   Supporting Information can be in any file format or dimension, as   long as they are no larger than 10 MB.</p>
<p>Provide a separate file for every figure in your manuscript,   including Supporting Information figures. Figures should not be   embedded in the main manuscript file. For example, if your   manuscript has 10 figures, you would upload 10 individual   files.</p>
<p><strong>Note:</strong> PLoS converts EPS figures to TIFF before publishing so   that they can be viewed in our online and PDF formats.</p>
<p><a id="software" name="software"></a></p>
<h3>Recommended Graphics Software</h3>
<p>Several graphics software packages are available to help you   create high-quality graphics:</p>
<ul>
<li>Adobe Photoshop</li>
<li>Adobe Illustrator</li>
<li>PowerPoint</li>
<li>CorelDraw</li>
<li>GIMP (freely distributed at <a href="http://www.gimp.org/">www.gimp.org</a>)</li>
</ul>
<p><strong>Note: Microsoft Word</strong><br />
PLoS does not recommend using Microsoft Word to adjust image   size. Microsoft Word automatically down-samples figures and   embeds them in the document at 72 dpi, so the images may be at a   lower resolution and quality than is acceptable. We require that   figures be created at a minimum resolution of 300 dpi.</p>
<p><strong>Note: Microsoft Excel</strong><br />
PLoS does not recommend Excel to make or adjust figures. It   does not have the optimal formatting to display graphics and   images properly. This program should be used for tables only. See   Table Guidelines for more information on formatting tables.</p>
<p><a name="preparation"></a></p>
<h2>5. Figure Preparation</h2>
<p><a id="size" name="size"></a></p>
<h3>File Size</h3>
<p>Individual figure files should not exceed 10 MB.     If you are having trouble reducing the size of your files,     refer to the section below titled <a href="http://www.plosone.org/static/figureGuidelines.action#lzw">Reduce TIFF File Size with     LZW Compression</a>.</p>
<p><a id="quality" name="quality"></a></p>
<h3>Figure Quality</h3>
<p>A figure that looks good on screen may not be     at optimal resolution. Test your figures by sizing them to     their intended dimensions and then printing them on your     personal printer. The online version should look relatively     similar to the personal-printer copy: it should not look fuzzy,     jagged, pixilated, or grainy at intended print size.</p>
<p><strong>Note:</strong> The quality of your figures will be only as good as the   lowest-resolution element placed in them. In other words, if you   created a 72 dpi line graph and save it as a 300 dpi TIFF, the   image will still print out as a 72 dpi image.</p>
<p><a id="format" name="format"></a></p>
<h3>Figure Format</h3>
<p>Figures for publication must be submitted in     high-resolution TIFF or EPS format <strong>only</strong>. Some figure types     should be submitted in TIFF only (see <a href="http://www.plosone.org/static/figureGuidelines.action#types">Figure Types</a> below). If     you submit an EPS file it will be converted to TIFF prior to     publishing. See <a href="http://www.plosone.org/static/figureGuidelines.action#tiff">How To: Convert Other File Types to TIFF</a> below     for more information on converting figure files to TIFF.</p>
<p><a id="mode" name="mode"></a></p>
<h3>Color Mode</h3>
<p>Figures containing color should be saved in RGB rather than   CMYK or any other channels.</p>
<p><a id="layered" name="layered"></a></p>
<h3>Layered TIFFs</h3>
<p>TIFF files with multiple layers are not an     accepted format for figures. Please make sure you provide us     with a flattened version of your file. To flatten a layered     TIFF file, open your figure in Photoshop. From the menu bar     select Layer/Flatten Image and save the file. See also     <a href="http://www.plosone.org/static/figureGuidelines.action#combination">Combination Figures</a>, below.</p>
<table style="width:100%;" border="0" cellspacing="0">
<tbody>
<tr valign="top">
<td width="50%"><img src="http://www.plosone.org/journals/plosJournals/images/FigureGuidelines_m7fe0283c.jpg" alt="layered1" /></td>
<td width="50%"><img src="http://www.plosone.org/journals/plosJournals/images/FigureGuidelines_m6a75c4c1.jpg" alt="layered2" /></td>
</tr>
<tr valign="top">
<td width="50%">Figure example that has layers.</td>
<td width="50%">Figure example that has the layers flattened. Only             the Background layer remains.</td>
</tr>
</tbody>
</table>
<p><a id="background" name="background"></a></p>
<h3>Background Color</h3>
<p>Create your figures using a white     background. If you create figures using a transparent     background, the figures may not display well in the online     format.</p>
<table style="width:100%;" border="0" cellspacing="0">
<tbody>
<tr valign="top">
<td width="50%"><img src="http://www.plosone.org/journals/plosJournals/images/FigureGuidelines_eca718d.jpg" alt="" /></td>
<td width="50%"><img src="http://www.plosone.org/journals/plosJournals/images/FigureGuidelines_288e1939.jpg" alt="" /></td>
</tr>
<tr valign="top">
<td width="50%">Figure example showing a figure created with a             transparent background. Transparent backgrounds do not             work well in the online format.</td>
<td width="50%">Figure example showing a figure created with a white             background. White backgrounds display well in any             format.</td>
</tr>
</tbody>
</table>
<p><a id="lines" name="lines"></a></p>
<h3>Lines, Rules, and Strokes</h3>
<p>Lines should be at least 0.5     point and no more than 1.5 points in order to reproduce well in     a PDF file or web format.</p>
<table style="width:100%;" border="0" cellspacing="0">
<tbody>
<tr>
<td width="50%"><img src="http://www.plosone.org/journals/plosJournals/images/FigureGuidelines_7733e9f5.jpg" alt="" /></td>
<td><img src="http://www.plosone.org/journals/plosJournals/images/FigureGuidelines_3abb7918.jpg" alt="" /></td>
</tr>
<tr>
<td>Figure example showing lines that are too thick and             lines that are too light in color. Light color do not             display well when published.</td>
<td>Figure example showing the correct line widths and             darker colored accent lines.</td>
</tr>
</tbody>
</table>
<p><a id="whitespace" name="whitespace"></a></p>
<h3>White Space</h3>
<p>Each figure should be closely cropped to     minimize the amount of white space surrounding it. PLoS     recommends a 2 point white space border around each figure.     Cropping figures improves accuracy when the figure is placed     among other elements during production of the final published     article.</p>
<table style="width:100%;" border="0" cellspacing="0">
<tbody>
<tr>
<td width="50%"><img src="http://www.plosone.org/journals/plosJournals/images/FigureGuidelines_71837d52.jpg" alt="" /></td>
<td width="50%"><img src="http://www.plosone.org/journals/plosJournals/images/FigureGuidelines_37e7bf1e.jpg" alt="" /></td>
</tr>
<tr>
<td>Figure example that has too much white space.</td>
<td>Figure example that has the correct amount of white             space.</td>
</tr>
</tbody>
</table>
<p><a id="text" name="text"></a></p>
<h3>Text within Figures</h3>
<p><a id="fonts" name="fonts"></a></p>
<h4>Fonts</h4>
<p>Figure text must be in Arial font, between 8 and 12 points.   Make sure that the visual information is readable at the size you   select.</p>
<p>Figure text that requires a font family other than Arial (math   symbols, etc.) must have the font information embedded in the   figure file. See <a href="http://www.plosone.org/static/figureGuidelines.action#eps">Embed Fonts in EPS Files</a> and <a href="http://www.plosone.org/static/figureGuidelines.action#outlines">Convert Text to   Outlines</a> below for more information.</p>
<p><a id="parts" name="parts"></a></p>
<h4>Parts labels</h4>
<p>Multi-panel figures (those with parts A, B, C, and D) should   be submitted as a single file that contains all parts of the   figure. Label the figure itself with capital letters, Arial bold   font, 12 points. Do not use punctuation (no periods or brackets).   Any TIFFs with layers must be flattened (see <a href="http://www.plosone.org/static/figureGuidelines.action#combination">Combination Figures</a> below.)</p>
<table style="width:100%;" border="0" cellspacing="0">
<tbody>
<tr valign="top">
<td width="50%"><img src="http://www.plosone.org/journals/plosJournals/images/FigureGuidelines_46dfe4fe.jpg" alt="" /></td>
<td width="50%"><img src="http://www.plosone.org/journals/plosJournals/images/FigureGuidelines_5b48d8a9.jpg" alt="" /></td>
</tr>
<tr valign="top">
<td width="50%">Figure example that has the incorrect label             format.</td>
<td width="50%">Figure example that has the correct label             format.</td>
</tr>
</tbody>
</table>
<table style="width:100%;" border="0" cellspacing="0">
<tbody>
<tr valign="top">
<td width="50%"><img src="http://www.plosone.org/journals/plosJournals/images/FigureGuidelines_d0c1efb.jpg" alt="" /></td>
<td width="50%"><img src="http://www.plosone.org/journals/plosJournals/images/FigureGuidelines_m58f7f8de.jpg" alt="" /></td>
</tr>
<tr valign="top">
<td width="50%">Figure example showing the use of the incorrect font             family.</td>
<td width="50%">Figure example correctly using the Arial font             family.</td>
</tr>
</tbody>
</table>
<p><a id="dimensions" name="dimensions"></a></p>
<h2>6. Figure Dimensions</h2>
<p>Figures for publication will be sized to fit 1, 1.5, or 2   columns of the final printable PDF of the article. Dimensions will also depend on the article type. Please follow   the sizing recommendations below for your original submission to   create high-quality, appropriately sized figures. See <a href="http://www.plosone.org/static/figureGuidelines.action#types">Figure   Types</a> below for descriptions and recommendations for line   drawings, grayscale drawings, halftones, and combination   figures.</p>
<p>Note: Figures for article types other than Research Articles   are <strong>not</strong> sized or scaled. You must create figures for these   articles types in their actual print or online display size. See   below for sizing information.</p>
<p><a id="alignment" name="alignment"></a></p>
<h3>Figure Alignment</h3>
<p>Figures will be left-aligned on the page or     column, so please design them accordingly.</p>
<p><a id="width" name="width"></a></p>
<h3>Figure Width</h3>
<p>Figures can have a width between 8.25 cm and 17.15 cm and a   maximum height of 23.5 cm. If your figures have labels that are   in 8 point type or if your figures are very detailed, it is   recommended that your figure be created so that it will span two   columns.</p>
<p><a id="type" name="type"></a></p>
<h3>Article Type</h3>
<ul>
<li><strong>2-column</strong>: Research Article, Expert Commentary, Guidelines and Guidance, Learning Forum, Neglected Diseases, PLoS Medicine Debate, Primer, Review, Symposium.</li>
<li><strong>3-column</strong>: Editorial, Education, Essay, Health In Action, Historical and Philosophical Perspectives, Historical Profiles and Perspectives, Interview, Message from ISCB, Opinion, Perspective, Policy Forum, Policy Platform, Research In Translation, Special Report, Viewpoint.</li>
</ul>
<p><a id="quickref" name="quickref"></a></p>
<table style="width:100%;" border="0" cellspacing="0">
<col width="110"></col>
<col width="111"></col>
<col width="109"></col>
<col width="108"></col>
<col width="108"></col>
<tbody>
<tr>
<th colspan="5"> Quick Reference – Figure Dimensions for 2-Column Article Types</th>
</tr>
<tr valign="top">
<td width="110" bgcolor="#d9d9d9"></td>
<td width="111" bgcolor="#d9d9d9">Inches</td>
<td width="111" bgcolor="#d9d9d9">Pixels</td>
<td width="111" bgcolor="#d9d9d9">Centimeters</td>
<td width="111" bgcolor="#d9d9d9">Picas</td>
</tr>
<tr valign="top">
<td width="110">Width for 1-Column Figures</td>
<td width="111">3.25 in</td>
<td width="111">312 px</td>
<td width="111">8.25 cm</td>
<td width="117">19.49 picas</td>
</tr>
<tr valign="top">
<td width="110">Width for 1.5-Column Figures</td>
<td width="111">4.75 – 5.0 in</td>
<td width="111">456 – 480 px</td>
<td width="111">12.06 &#8211; 12.7 cm</td>
<td width="117">28.5 &#8211; 30 picas</td>
</tr>
<tr valign="top">
<td width="110">Width for 2-Column Figures</td>
<td width="111">6.75 in</td>
<td width="111">648 px</td>
<td width="111">17.15 cm</td>
<td width="117">40.5 picas</td>
</tr>
<tr valign="top">
<td width="110">Height Maximum for All Figures</td>
<td width="113">9.25 in</td>
<td width="112">888 px</td>
<td width="112">23.5 cm</td>
<td width="113">55.5 picas</td>
</tr>
</tbody>
</table>
<table style="width:100%;" border="0" cellspacing="0">
<col width="111"></col>
<col width="112"></col>
<col width="112"></col>
<col width="112"></col>
<col width="112"></col>
<tbody>
<tr>
<th colspan="5" width="625" valign="top"> Quick Reference – Figure Dimensions for 3-Column         Article Types</th>
</tr>
<tr valign="top">
<td width="111" bgcolor="#d9d9d9"></td>
<td width="112" bgcolor="#d9d9d9">Inches</td>
<td width="112" bgcolor="#d9d9d9">Pixels</td>
<td width="112" bgcolor="#d9d9d9">Centimeters</td>
<td width="112" bgcolor="#d9d9d9">Picas</td>
</tr>
<tr valign="top">
<td width="111">Width for 1 Column Figures</td>
<td width="112">2.15 in</td>
<td width="112">207 px</td>
<td width="112">5.5 cm</td>
<td width="112">12.95 picas</td>
</tr>
<tr valign="top">
<td width="111">Width for 2 Column Figures</td>
<td width="112">4.5 in</td>
<td width="112">434 px</td>
<td width="112">11.5 cm</td>
<td width="112">27.15 picas</td>
</tr>
<tr valign="top">
<td width="111">Width for 3 Column Figures</td>
<td width="112">6.75 in</td>
<td width="112">648 px</td>
<td width="112">17.15 cm</td>
<td width="112">40.5 picas</td>
</tr>
</tbody>
</table>
<p><a id="types" name="types"></a></p>
<h2>7. Figure Types</h2>
<p><a id="lineart" name="lineart"></a></p>
<h3>Line Art</h3>
<p>Line art has sharp, clean lines and geometrical shapes against   a white background. Line art is typically used for tables,   charts, graphs, and gene sequences. You can use a program like   Illustrator to create high-quality line art. A minimum resolution   of 300 dpi will maintain the crisp edges of the lines and   shapes.</p>
<ul>
<li>Format: EPS or TIFF</li>
<li>Minimum Resolution: 300 dpi</li>
</ul>
<p><img src="http://www.plosone.org/journals/plosJournals/images/FigureGuidelines_cf59cea.jpg" alt="" /></p>
<p><a id="grayscale" name="grayscale"></a></p>
<h3>Grayscale</h3>
<p>Grayscale figures contain varying tones of black and white.   They contain no color, so grayscale is synonymous with &#8220;black and   white.&#8221; The gray scale is divided into 256 sections with black at   0 and white at 255. Software for preparation of grayscale art   includes Photoshop.</p>
<ul>
<li>Format: EPS or TIFF</li>
<li>Minimum Resolution: 300 dpi</li>
</ul>
<p><a id="halftones" name="halftones"></a></p>
<h3>Halftones</h3>
<p>The best example of a halftone is a photograph, but halftones   include any image that uses continuous shading or blending of   colors or grays, such as gels, stains, microarrays, brain scans,   and molecular structures. To prepare and manipulate halftone   images, use Photoshop or a comparable photo-editing program.</p>
<ul>
<li>Format: TIFF</li>
<li>Minimum Resolution: 300 dpi</li>
</ul>
<p><img src="http://www.plosone.org/journals/plosJournals/images/FigureGuidelines_m5741cc1f.jpg" alt="" /><img src="http://www.plosone.org/journals/plosJournals/images/FigureGuidelines_m2d6fb628.jpg" alt="" /></p>
<p><a id="combination" name="combination"></a></p>
<h3>Combination Figures</h3>
<p>Combination figures contain two or more types of images, for   example, a halftone figure containing text. You should embed the   images, group the objects, or flatten the layers, and flatten   transparencies before saving as TIFF at a minimum of 300 dpi.</p>
<ul>
<li>Format: TIFF</li>
<li>Minimum Resolution: 300 dpi</li>
</ul>
<p><img src="http://www.plosone.org/journals/plosJournals/images/FigureGuidelines_m4766831c.jpg" alt="" /></p>
<p><a id="stereograms" name="stereograms"></a></p>
<h3>Stereograms</h3>
<p>Stereograms are figures with two almost identical pictures   placed side by side which, when viewed through special glasses or   a stereoscope, produce a three-dimensional image.</p>
<p><img src="http://www.plosone.org/journals/plosJournals/images/FigureGuidelines_m4c9c5eb3.jpg" alt="" /></p>
<p>If you plan on submitting a stereogram as one of your figures,   make sure this is clearly mentioned in the caption for the figure   within the manuscript. Stereograms must be sized so that the   centers of each of these images are 63 mm apart. Make sure that   the stereogram figure is at the size you would like them to   display. They will be checked prior to publishing, but this step   will ensure your stereogram will be viewed properly.</p>
<p><a id="quickref2" name="quickref2"></a></p>
<table style="width:100%;" border="0" cellspacing="0">
<col width="112"></col>
<col width="121"></col>
<col width="120"></col>
<col width="112"></col>
<col width="130"></col>
<tbody>
<tr>
<th colspan="5" width="625" valign="top"> Quick Reference Table for Common Figure Types</th>
</tr>
<tr>
<td width="112"></td>
<td width="121"><strong>Line Art</strong></td>
<td width="120"><strong>Grayscale</strong></td>
<td width="112"><strong>Halftones</strong></td>
<td width="130"><strong>Combination Figures</strong></td>
</tr>
<tr>
<td width="112">Required File Types</td>
<td width="121">EPS or TIFF</td>
<td width="120">EPS or TIFF</td>
<td width="112">TIFF</td>
<td width="130">TIFF</td>
</tr>
<tr>
<td width="112">Required Resolution</td>
<td width="121">300 dpi</td>
<td width="120">300 dpi</td>
<td width="112">300 dpi</td>
<td width="130">300 dpi</td>
</tr>
<tr>
<td width="112">Example Software for Preparation</td>
<td width="121">Adobe Illustrator</td>
<td width="120">Adobe Photoshop; GIMP</td>
<td width="112">Adobe Photoshop; GIMP</td>
<td width="130">Adobe Photoshop; GIMP</td>
</tr>
</tbody>
</table>
<p><a id="uploading" name="uploading"></a></p>
<h2>8. Uploading Figures to the PLoS Manuscript Submission System</h2>
<h3>Upload Order</h3>
<ul>
<li>Upload cover letter, then article file first. Ensure that     it contains the figure legends, but not the figures     themselves.</li>
<li>Figures should be numbered in the order they are first     mentioned in the text, and uploaded in the same order. For     example, Figure 1 should be uploaded as the first figure file,     Figure 2 the second, etc.</li>
<li>Figures should be uploaded in the desired orientation.</li>
<li>Multimedia files (.avi or .swf files) must be uploaded as a     Supporting Information file type and not a figure. See     <a href="http://www.plosone.org/static/figureGuidelines.action#multimedia">Multimedia Files</a> below for more information.</li>
</ul>
<p><img src="http://www.plosone.org/journals/plosJournals/images/FigureGuidelines_m159e37b3.jpg" alt="" /></p>
<p>Note: When a figure is uploaded to the PLoS manuscript   submission system, a PDF file is created that contains the image   but does not represent the final appearance of your figures in   your published article. In addition, a &#8220;merged PDF&#8221; containing   the article file and all of the figures is created automatically,   which should be used by authors as a quick way to review their   figures for egregious errors.</p>
<p><a id="multimedia" name="multimedia"></a></p>
<h2>9. Multimedia Files</h2>
<p>PLoS encourages authors to submit multimedia files that are   crucial to the conclusions of the paper. Multimedia files should   be smaller than 10 MB because of the difficulties that some users   will experience in loading or downloading files. These files are   published as Supporting Information. Preferred formats are:</p>
<ul>
<li>Audio: MP3</li>
<li>Video: MOV, progressive download, 320 x 240 px frame     size</li>
<li>Flash: SWF</li>
</ul>
<p><a id="manipulation" name="manipulation"></a></p>
<h2>10. Image Manipulation</h2>
<p>Image files should not be manipulated or adjusted in any way   that could lead to misinterpretation of the information present   in the original image. Inappropriate manipulation includes but is   not limited to:</p>
<ul>
<li>The introduction, enhancement, movement, or removal of     specific feature(s) within an image;</li>
<li>Unmarked grouping of images that should otherwise have been     presented separately (for example, from different parts of the     same gel, or from different gels, fields, or exposures);</li>
<li>Adjustments of brightness, contrast, or color balance that     obscure, eliminate, or misrepresent any information.</li>
</ul>
<p>Digital images in manuscripts nearing acceptance for   publication may be scrutinized for any indication of improper   manipulation. If evidence is found of inappropriate manipulation   we reserve the right to ask for original data and, if that is not   satisfactory, we may decide not to accept the manuscript.</p>
<p>We are grateful to staff at the <em>Journal of Cell   Biology</em> (Rockefeller University Press) for their help in   establishing these guidelines and procedures (<a href="http://www.jcb.org/misc/ifora.shtml#image_aquisition">http://www.jcb.org/misc/ifora.shtml#image_aquisition</a>)</p>
<p><a id="howto" name="howto"></a></p>
<h2>11. How To</h2>
<p><a id="eps" name="eps"></a></p>
<h3>Embed Fonts in EPS Files</h3>
<p>Always embed fonts or create outlines when creating   EPS files. If your figures require special symbols and   Greek characters the text may not reproduce properly unless you   embed your fonts or create outlines of the text. See the <a href="http://www.plosone.org/static/figureGuidelines.action#outlines">Convert   Text to Outlines</a> below for more information.</p>
<p>To embed fonts using Adobe Illustrator, open the EPS file.   From the File Menu, select Save As. In the Save As dialog box,   make sure that the Embed Fonts option is selected and click   OK.</p>
<p><a id="outlines" name="outlines"></a></p>
<h3>Convert Text to Outlines</h3>
<p>When you convert text to outlines, the text is converted to a   series of lines and fills. The reference to the font that was   used to create the text is no longer present. This process makes   it unnecessary for the PLoS production department to have the   original font used to create the figure text. This is to ensure   that your figures publish as you intended them to.</p>
<table style="width:100%;" border="0" cellspacing="0">
<col width="304"></col>
<col width="298"></col>
<tbody>
<tr valign="top">
<td width="304"><img src="http://www.plosone.org/journals/plosJournals/images/FigureGuidelines_679b0301.jpg" alt="" /></td>
<td width="298"><img src="http://www.plosone.org/journals/plosJournals/images/FigureGuidelines_m64b9dd1f.jpg" alt="" /></td>
</tr>
<tr valign="top">
<td width="304">Example of text that has not been converted to         outlines.</td>
<td width="298">Example of text that has been converted to outlines.         Notice that every character is outlined.</td>
</tr>
</tbody>
</table>
<p>You can use Adobe Illustrator to convert text to outlines by   selecting the text you want to convert. Then from the Type menu,   select Create Outlines (Shift + Control + O on PC, and Shift +   Apple + O on Mac).</p>
<p>If you do not convert text to outlines, when your figure is   opened during the production process any text in a non-standard   font will automatically be substituted for default font. This can   cause the text in the figure to render incorrectly.</p>
<p>Caution: You will not be able to change your text after it has   been converted to outlines so make sure it is correct before   converting.</p>
<p><a id="tiff" name="tiff"></a></p>
<h3>Convert Other File Types to TIFF</h3>
<h4>Convert PDF to TIFF Using Photoshop</h4>
<ol>
<li>Open the PDF file in Photoshop and select the page of the     PDF that contains the figures to save as TIFF.</li>
<li>From the File menu, select Save As to open the Save As     dialog box.</li>
<li>In the Save As dialog box, select TIFF from the Format     dropdown list.</li>
<li>When the TIFF Options dialog box displays, make sure to     check the LZW compression checkbox.</li>
<li>Click OK.</li>
</ol>
<h4>Convert EPS, JPG, GIF, or Other File Types to TIFF Using   Photoshop</h4>
<ol>
<li>Open the figure file in Photoshop.</li>
<li>From the File menu, select Save As to open the Save As     dialog box.</li>
<li>In the Save As dialog box, select TIFF from the Format drop     down list.</li>
<li>When the TIFF Options dialog box displays, make sure to     check the LZW compression checkbox.</li>
<li>Click OK.</li>
</ol>
<p><strong>Note:</strong> Do not use the &#8220;optimize for web&#8221; wizard for any   figures. Some programs may down sample your images to low   resolution.</p>
<h4>Convert PDF to TIFF Using Adobe Illustrator</h4>
<ol>
<li>Open the PDF file in Adobe Illustrator, select the PDF page     to export and click OK.</li>
<li>From the File menu, select Export to display the Export     dialog box.</li>
<li>From the Export dialog box, select TIFF from the Save as     Type drop down list and click OK.</li>
<li>When the TIFF Options dialog displays, select LZW     compression.</li>
<li>Click OK to complete the process.</li>
</ol>
<h4>Convert EPS to TIFF Using Illustrator</h4>
<ol>
<li>Open the EPS file in Adobe Illustrator.</li>
<li>From the File menu, select Export to display the Export     dialog box.</li>
<li>From the Export dialog box, select TIFF from the Save as     Type drop down list and click OK.</li>
<li>When the TIFF Options dialog displays, select LZW     compression.</li>
<li>Click OK to complete the process.</li>
</ol>
<h4>Convert PowerPoint Files to High-Resolution TIFFs Using Adobe   Acrobat and Photoshop</h4>
<p><strong>Caution:</strong> Do not use File &#62; Save as &#62; TIFF. This will   result in a low-resolution, poor-quality figure.</p>
<p><strong>Step I: Convert PowerPoint File to PDF</strong></p>
<p>There are two possible ways to create PDFs from PowerPoint   files: use the Adobe PDF menu in some versions of PowerPoint, or   create a PDF via the Print command.</p>
<ol>
<li>Open your file in PowerPoint. From the Adobe PDF menu,     select Change Conversion Settings. The PDFMaker Settings dialog     displays.</li>
<li>From the Conversion settings dropdown menu, select High     Quality and click OK.</li>
<li>From the Adobe PDF menu, select Convert to Adobe PDF. You     will be asked to save the PDF file to a location of your     choosing.</li>
<li>Click OK.</li>
</ol>
<p>– OR -</p>
<ol>
<li>Open your file in PowerPoint.</li>
<li>Select Print from the File dropdown menu.</li>
<li>Select the PDFCreator or similar tool in the Printer Name     window.</li>
<li>Click OK.</li>
</ol>
<p><strong>Note:</strong> If your PowerPoint file contains figures on multiple   slides, after you create the PDF file you will need to use Adobe   Acrobat to separate the figures/slides into individual files. You   can also use PowerPoint to create separate files of each   figure/slide.</p>
<p><strong>Step II: Convert Multi-Page PDF File to Individual Files</strong></p>
<ol>
<li>Using Adobe Acrobat Standard, open the PDF file that you     created in Step 1. From the Document menu, select Pages and     then Extract. The Extract Page dialog box displays.</li>
<li>Enter the page numbers in the To and From fields and then     select the Delete Pages checkbox. Checking this box will delete     the page that you entered in the To and From fields from the     PDF file.</li>
<li>Click OK. The page that you specify in the previous step is     now shown in Acrobat.</li>
<li>From the File menu, select save and enter the file name     (e.g., Figure 1) for the extracted page and then click OK.</li>
<li>Repeat this process until a separate file is created for     each figure/slide.</li>
</ol>
<p><strong>Step III: Convert Individual PDF Files to TIFFs</strong></p>
<ol>
<li>Using Photoshop, open the PDF file that you created in Step     II.</li>
<li>From the File menu, select Save As.</li>
<li>From the Save As dialog box, select TIFF from the Format     dropdown list and click Save.</li>
<li>In the TIFF Options dialog box, make sure the following     options are selected. Under Image Compression, select LZW and     under Pixel Order, select Interleaved.</li>
<li>Click OK.</li>
<li>Repeat this process until a separate TIFF file is created     for each figure/slide.</li>
</ol>
<p><a id="lzw" name="lzw"></a></p>
<h3>Reduce TIFF File Size with LZW Compression</h3>
<p>PLoS has a strict 10 MB figure file limit. To reduce the size   of your figure, open your TIFF files in Photoshop. From the File   menu, select Save As to open the Save As dialog box. In the Save   As dialog box, select TIFF from the Format dropdown list. When   the TIFF Options dialog box displays, make sure to check the LZW   compression checkbox. Click OK.</p>
<p><a id="resolution" name="resolution"></a></p>
<h3>Locate the Resolution Information in a TIFF File</h3>
<p>You can locate the resolution of a figure file using Adobe   Photoshop or through Windows Explorer.</p>
<h4>Photoshop</h4>
<p>To find the resolution of a figure using     Photoshop, first open the file. Then from the Image menu,     select Image Size. The Image Size dialog box will open     displaying the figure dimensions, document size and resolution.     You can decrease the size of a file, but you should not     increase the resolution and/or dimensions of a file to meet the     journals requirements. Increasing the file sizes manually may     result in poor quality figures.</p>
<h4>Windows Explorer</h4>
<p>To check the resolution of a figure file     using Windows Explorer, locate and select the file. Right-click     and select Properties. In the Properties dialog box, select the     Summary Tab. If you do not see the properties of the figures,     click Advanced. This will display all of the properties     associated with the selected figure. Look at the Horizontal     Resolution and Vertical Resolution to determine the figure     resolution.</p>
<p><a id="tables" name="tables"></a></p>
<h2>12. Format Tables</h2>
<p>Tables submitted for production should be included at the end of the article DOC or RTF file. For LaTeX submissions, table files should be uploaded individually into the online submission system. Tables that will be Supporting Information files can be submitted in any allowed format: Word, Excel, PDF, PPT, JPG, EPS, or TIFF.</p>
<h3>Title and footnotes</h3>
<p>Each table needs a concise title of no more than one sentence. The legend and footnotes should be placed below the table. Footnotes can be used to explain abbreviations.</p>
<h3>Specifications</h3>
<p>Tables that do not conform to the following requirements may give unintended results when published. Problems may include movements of data (rows or columns), loss of spacing, or disorganization of headings. Note: Multi-part tables with varying numbers of columns or multiple footnote sections should be divided and renumbered as separate tables.</p>
<h3>Table requirements:</h3>
<ul>
<li>Cell-based (e.g., created in Word with Tables tool or in Excel).</li>
<li>Editable (i.e., not graphic object).</li>
<li>Heading/subheading levels in separate columns.</li>
<li>Size no larger than one printed page (7 in x 9.5 in). Larger tables can be published as online supporting information.</li>
<li>No returns, tabs, or merged cells or rows.</li>
<li>No color, shading, lines, or rules.</li>
<li>No inserted text boxes or pictures.</li>
<li>No tables within tables.</li>
</ul>
<h3>Examples</h3>
<p><img src="http://journals.plos.org/images/example_table1.jpg" alt="" /> <img src="http://journals.plos.org/images/example_table2.jpg" alt="" /></p>
<p>&#60;!&#8211;</p>
<p><img src="http://journals.plos.org/images/example_table1.jpg" alt="Bad Use of Subhead Images" width="311" height="285" /> <img src="http://journals.plos.org/images/example_table2.jpg" alt="Good Use of Subhead Images" width="646" height="285" /> <strong><em>Example of incorrect subheads and use of text boxes</em></strong> <strong><em>Example of acceptable subheads within a table</em></strong></p>
<p>&#8211;&#62;<a id="help" name="help"></a></p>
<h2>13. Getting Help</h2>
<p>Contact If you have questions about your figures after reading   the guidelines, you can email <a href="mailto:figures@plos.org">figures@plos.org</a>.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Web 3.0 Multi-Media implosion]]></title>
<link>http://osde8info.wordpress.com/2009/02/21/web-3-0-multi-media-implosion/</link>
<pubDate>Sat, 21 Feb 2009 11:34:07 +0000</pubDate>
<dc:creator>osde8info</dc:creator>
<guid>http://osde8info.wordpress.com/2009/02/21/web-3-0-multi-media-implosion/</guid>
<description><![CDATA[Web 3.0 Multi-Media implosion and convergence For starters have a look at: http://www.flickr.com/pho]]></description>
<content:encoded><![CDATA[<div>
<p><strong>Web 3.0 Multi-Media implosion and convergence</strong></p>
<p>For starters have a look at:</p>
<ul>
<li><a href="http://www.flickr.com/photos/thomcochrane/3215225090/" target="_blank">http://www.flickr.com/photos/thomcochrane/3215225090/</a></li>
<li><a href="http://thomcochrane.vox.com/library/post/ted-talks-now-on-iphone.html" target="_blank">http://thomcochrane.vox.com/library/post/ted-talks-now-on-iphone.html</a></li>
<li><a href="http://thomcochrane.vox.com/library/post/new-media-consortium-emerging-technologies-2009-report.html" target="_blank">http://thomcochrane.vox.com/library/post/new-media-consortium-emerging-technologies-2009-report.html</a></li>
<li><a href="http://thomcochrane.vox.com/library/post/nokia-share-online-services.html" target="_blank">http://thomcochrane.vox.com/library/post/nokia-share-online-services.html</a></li>
</ul>
<p>   Then consider <a href="http://pixelpipe.com/">pixelpipe</a> and how it allows you to converge:</p>
<ul>
<li>flickr + picassa + <a href="http://www.ovi.com/services/">ovi</a> + <a href="http://rsbweb.nih.gov/ij/">imagej</a> + vox + <a href="http://juploadr.org/screenshots.html">juploadr</a> + <a href="http://europe.nokia.com/photos">nokia-photos</a> + many more</li>
</ul>
<p>
<div class="enclosure enclosure-center enclosure-strip enclosure-strip-horizontal" style="text-align:center;">
<div class="enclosure-inner" style="border:1px solid;text-align:center;margin:5px;"><a href="http://osde8info.files.wordpress.com/2009/02/6a00d4141b9517685e011017ab3a25860e.png" class="enclosure-strip-link" title="java juploadr flickr photo uploader"><img src="http://osde8info.files.wordpress.com/2009/02/6a00d4141b9517685e011017ab3a25860e.png?w=250" alt="java juploadr flickr photo uploader" class="enclosure-strip-image" style="border:0;margin:5px;" /></a><a href="http://osde8info.files.wordpress.com/2009/02/6a00d4141b9517685e0110166a951c860d.png" class="enclosure-strip-link" title="nokia photos album"><img src="http://osde8info.files.wordpress.com/2009/02/6a00d4141b9517685e0110166a951c860d.png?w=300" alt="nokia photos album" class="enclosure-strip-image" style="border:0;margin:5px;" /></a><a href="http://osde8info.files.wordpress.com/2009/02/6a00d4141b9517685e0110162fb645860c.png" class="enclosure-strip-link" title="Pixelpipe - Destinations_1235214511041"><img src="http://osde8info.files.wordpress.com/2009/02/6a00d4141b9517685e0110162fb645860c.png?w=300" alt="Pixelpipe - Destinations_1235214511041" class="enclosure-strip-image" style="border:0;margin:5px;" /></a><a href="http://osde8info.files.wordpress.com/2009/02/6a00d4141b9517685e011017ab3a28860e.png" class="enclosure-strip-link" title="nokia photos ovi album"><img src="http://osde8info.files.wordpress.com/2009/02/6a00d4141b9517685e011017ab3a28860e.png?w=300" alt="nokia photos ovi album" class="enclosure-strip-image" style="border:0;margin:5px;" /></a></div>
</p></div>
<p> <!-- end enclosure -->       
<div></div>
</p>
<p style="clear:both;">      <a href="http://osde-info.vox.com/library/post/web-30-multi-media-implosion.html?_c=feed-atom-full#comments">Read and post comments</a>   &#124;        <a href="http://www.vox.com/share/6a00d4141b9517685e011017ab3a38860e?_c=feed-atom-full">Send to a friend</a>  </p>
</p></div>
]]></content:encoded>
</item>
<item>
<title><![CDATA[sourceforget and 3D; opensource; my list]]></title>
<link>http://stef2cnrs.wordpress.com/2008/07/13/sourceforget-and-3d-opensource-my-list/</link>
<pubDate>Sun, 13 Jul 2008 07:56:29 +0000</pubDate>
<dc:creator>stef2cnrs</dc:creator>
<guid>http://stef2cnrs.wordpress.com/2008/07/13/sourceforget-and-3d-opensource-my-list/</guid>
<description><![CDATA[name (alphab. order&#8230;) : antiprism AutoQ3DCommunity1-38qt4source avoCADo-08.03-preAlpha-Mac aya]]></description>
<content:encoded><![CDATA[<p>name (alphab. order&#8230;) :</p>
<p>antiprism</p>
<p>AutoQ3DCommunity1-38qt4source</p>
<p>avoCADo-08.03-preAlpha-Mac</p>
<p>ayam1.14.macosx.aqua</p>
<p>blender</p>
<p>Fusion Viewer</p>
<p>geoblock</p>
<p>gmsh-2.2.0-MacOSX</p>
<p>GNU Triangulated Surface Library</p>
<p>gsculpt</p>
<p>imageJ-plugins</p>
<p>MagCAD</p>
<p>Prim_Builder_0.4.1</p>
<p>quesa</p>
<p>Stani&#8217;s Python Editor</p>
<p>surfit</p>
<p>thsim</p>
<p>wings-0.99.02-macosx</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[imageJ pour les débutants / for dummies]]></title>
<link>http://stef2cnrs.wordpress.com/2008/07/12/imagej-pour-les-debutants-for-dummies/</link>
<pubDate>Sat, 12 Jul 2008 20:18:40 +0000</pubDate>
<dc:creator>stef2cnrs</dc:creator>
<guid>http://stef2cnrs.wordpress.com/2008/07/12/imagej-pour-les-debutants-for-dummies/</guid>
<description><![CDATA[ImageJ est un logiciel de traitement d&#8217;image c&#8217;est-à-dire en fait pour un biologiste ou]]></description>
<content:encoded><![CDATA[<p><strong>ImageJ</strong> est un logiciel de traitement d&#8217;image c&#8217;est-à-dire en fait pour un biologiste ou un médecin, d&#8217;analyse d&#8217;image pour faire ressortir la donnée biologique/médicale recherchée.</p>
<p>Le J indique que le programme a été écrit en un langage &#8220;Java&#8221; qui en fait un logiciel utilisable sur différents systèmes d&#8217;exploitation (mac, pc Windows&#8230;). C&#8217;est un logiciel multiplateformes, en raison de son fonctionnement sur une machine virtuelle Java.</p>
<p>ImageJ est un logiciel libre : le code source est en accès libres et peut être modifié.  Ses fonctions sont extensibles ; de nombreux plug-ins existent, qui abordent des domaines jusque là réservés aux logiciels commerciaux comme Aphelion : manipulation et visualisation d&#8217;images tridimensionelles, filtrages médians et morphologiques 3D, contours actifs (snakes), filtres diffusifs&#8230; Par ailleurs, il est possible de combiner les fonctions natives ou ajoutées en créant des macros &#8211; la maîtrise de Java n&#8217;est pas alors nécessaire.</p>
<p>La foisonnante diversité des plug-ins disponibles &#8211; plus d&#8217;une centaine &#8211; en fait son avantage principal, mais peut dérouter les néophytes : il est parfois difficile de trouver rapidement une fonction correspondant à un besoin précis ou on en trouve une dizaine pour un problème donné!</p>
<p>ImageJ peut être téléchargé gratuitement sur le site du NCBI<a title="National Center for Biotechnology Information" href="http://fr.wikipedia.org/wiki/National_Center_for_Biotechnology_Information"></a>.</p>
<p><a href="http://rsb.info.nih.gov/ij/">http://rsb.info.nih.gov/ij/</a></p>
<p>les plugins: <a href="http://rsb.info.nih.gov/ij/plugins/index.html">http://rsb.info.nih.gov/ij/plugins/index.html</a></p>
<p><strong>Il se présente sous la forme d&#8217;une barre de menus flottante qui ouvre des fenêtres de données, elles aussi flottantes.</strong></p>
<div class="thumb tright">
<div class="thumbinner" style="width:402px;"><a class="image" title="Barre des menus flottante de ImageJ" href="http://fr.wikipedia.org/wiki/Image:BarreMenusImageJ.JPG"><img class="thumbimage" src="http://upload.wikimedia.org/wikipedia/commons/thumb/b/bb/BarreMenusImageJ.JPG/400px-BarreMenusImageJ.JPG" border="0" alt="Barre des menus flottante de ImageJ" width="400" height="81" /></a></p>
<div class="thumbcaption">
<div class="magnify"><a class="internal" title="Agrandir" href="http://fr.wikipedia.org/wiki/Image:BarreMenusImageJ.JPG"><img src="http://fr.wikipedia.org/skins-1.5/common/images/magnify-clip.png" alt="" width="15" height="11" /></a></div>
<p>Barre des menus flottante de ImageJ</p></div>
</div>
</div>
<p>La plupart des opérations courantes de traitement d&#8217;images sont réalisables avec ImageJ : visualisation et ajustement de l&#8217;histogramme des niveaux de gris, débruitage, correction d&#8217;éclairage, détection de contours, seuillage, opérations entre images&#8230;</p>
<p>Des traitements issus de la morphologie mathématique sont aussi disponibles : érosion/dilatation, ligne de partage des eaux, squelettisation&#8230; En analyse d&#8217;images, ImageJ permet de dénombrer des particules, d&#8217;évaluer leurs ratios d&#8217;aspect, de mesurer diverses grandeurs (distances, surfaces), d&#8217;extraire des coordonnées de contours&#8230; L&#8217;ajout personnalisé de fonctions est possible grâce aux plugins  à écrire en java.</p>
<p><a id="Applications" name="Applications"></a></p>
<h2><span class="mw-headline"></span></h2>
]]></content:encoded>
</item>
<item>
<title><![CDATA[plug-in ImageJ Montpellier]]></title>
<link>http://stef2cnrs.wordpress.com/2008/07/09/plug-in-imagej-montpellier/</link>
<pubDate>Wed, 09 Jul 2008 08:51:10 +0000</pubDate>
<dc:creator>stef2cnrs</dc:creator>
<guid>http://stef2cnrs.wordpress.com/2008/07/09/plug-in-imagej-montpellier/</guid>
<description><![CDATA[MRI Cell Image Analyzer ImageJ est un programme d&#8217;analyse et de traitement de l&#8217;image gr]]></description>
<content:encoded><![CDATA[<p><a href="http://www.mri.cnrs.fr/index.php?m=38"><br />
</a></p>
<h1>MRI Cell Image Analyzer</h1>
<div>
<div class="contenus">
<p align="justify"><!--[if gte vml 1]&#62; &#60;![endif]--><img src="http://www.mri.cnrs.fr/datas/galerie/mri-cia-launcher.jpg" alt="mri-cia-launcher.jpg" width="512" height="101" /></p>
<p align="justify">
<p align="justify"><!--[if gte vml 1]&#62; &#60;![endif]--><img src="http://www.mri.cnrs.fr/datas/galerie/tools.jpg" alt="tools.jpg" hspace="13" width="199" height="364" align="left" /><a href="http://rsb.info.nih.gov/ij/" target="_blank">ImageJ</a> est un programme d&#8217;analyse et de traitement de l&#8217;image gratuit et de domaine public. A partir de ImageJ, nous avons développé sur la plate-forme Montpellier RIO Imaging une interface visuelle pour le développement rapide d&#8217;applications pour l&#8217;analyse d&#8217;image. Cette interface complète ainsi les potentialités de ImageJ et permet, sur la base d&#8217;un <em>drag and drop</em> à partir d&#8217;une liste d&#8217;opérations existantes de créer facilement et rapidement des séquences d&#8217;opérations pour l&#8217;analyse interactive d&#8217;images ou l&#8217;automatisation de l&#8217;analyse d&#8217;un grand nombre d&#8217;images. Cette interface a été utilisée pour une grande variété d&#8217;applications. Cette interface et ces applications sont accessibles librement sous licence GNU (voir <a href="http://www.gnu.org/copyleft/gpl.html#TOC1" target="_blank">GNU General Public License</a>).</p>
<p align="justify">MRI-CIA a été présenté pour la première fois à la communauté ImageJ à la &#8220;<a href="http://imagejdocu.tudor.lu/Members/ajahnen/imagej-user-and-developer-conference-2006" target="_blank">ImageJ User and Developer Conference 2006</a>&#8220;. Si vous utilisez MRI-CIA, merci de citer l&#8217;article suivant :</p>
<ul type="disc">
<li>Volker Baecker and Pierre      Travo, <a href="http://www.mri.cnrs.fr/datas/fichiers/articles/60/180.pdf?PHPSESSID=3f08d68045907c34bc3547e6c4768505" target="_blank">Cell Image Analyzer &#8211; A visual scripting interface for ImageJ and its usage at the microscopy facility Montpellier RIO Imaging</a> in <a href="http://imagejdocu.tudor.lu/Members/ajahnen/conference_proceedings_2006/PROCEEDINGS_ImageJ2006-V1.1.pdf" target="_blank">Proceedings      of the ImageJ User and Developer Conference</a>, 2006,      Edition 1, p. 105-110, ISBN: 2-919941-01-1, EAN: 9782919941018</li>
</ul>
<p align="justify"><strong>Pour plus d&#8217;informations :</strong></p>
<p align="justify"><strong><span style="text-decoration:underline;">Présentations</span></strong></p>
<ul type="disc">
<li>MRI Cell Image Analyzer &#8211; Automatic analysis of microscopy images      (<a href="http://www.mri.cnrs.fr/datas/fichiers/articles/60/185.pdf?PHPSESSID=3f08d68045907c34bc3547e6c4768505" target="_blank">pdf</a> &#124; <a href="http://www.mri.cnrs.fr/talk-cia/img0.html" target="_blank">view      online</a>)<br />
Présentation de MRI-CIA en anglais, par Volker Bäcker, le 13.12.2005 au      CRBM, Montpellier, France.</li>
</ul>
<ul>
<li> <a href="http://www.mri.cnrs.fr/datas/fichiers/articles/60/181.pdf?PHPSESSID=3f08d68045907c34bc3547e6c4768505" target="_blank">Cell Image Analyzer &#8211; A visual scripting interface for ImageJ and its usage at the microscopy facility Montpellier RIO Imaging<br />
</a>Présentation en anglais par Volker Bäcker de MRI-CIA à la &#8220;<a href="http://imagejdocu.tudor.lu/Members/ajahnen/imagej-user-and-developer-conference-2006">ImageJ User and Developer Conference</a><a href="http://imagejdocu.tudor.lu/Members/ajahnen/imagej-user-and-developer-conference-2006"> 2006</a>&#8221; à Luxembourg.</li>
</ul>
<ul type="disc">
<li><a href="http://www.mri.cnrs.fr/datas/fichiers/articles/60/182.pdf?PHPSESSID=3f08d68045907c34bc3547e6c4768505" target="_blank">Automatic measurement of plant features using ImageJ      and MRI Cell Image Analyzer<br />
</a>Présentation      en anglais par Volker Bäcker au      workshop <a href="http://www.agron-omics.eu/uploads/File/shared_documents/ABSTRACT%20BOOK-2.pdf" target="_blank">&#8220;Imaging and Phenotyping in Plants&#8221;</a> à      Montpellier, France les 17-19.07.2007.</li>
</ul>
<p align="justify"><!--[if gte vml 1]&#62; &#60;![endif]--><img src="http://www.mri.cnrs.fr/datas/galerie/measure%20infections.jpg" alt="measure infections.jpg" hspace="20" width="400" height="408" align="left" /><strong>Ateliers</strong></p>
<ul>
<li> <a href="http://www.mri.cnrs.fr/datas/fichiers/articles/60/183.pdf?PHPSESSID=3f08d68045907c34bc3547e6c4768505" target="_blank">Image processing and analysis with ImageJ and MRI Cell Image Analyzer</a><br />
Une introduction en anglais, à destination de biologistes, à l&#8217;analyse d&#8217;images avec ImageJ et MRI-CIA.</li>
</ul>
<ul type="disc">
<li>
<ul type="circle">
<li>Pour suivre l&#8217;atelier, il est nécessaire de       télécharger ces images : <a href="http://www.mri.cnrs.fr/mriwiki/uploads/images.zip">images.zip</a></li>
</ul>
</li>
</ul>
<ul>
<li> <a href="http://www.mri.cnrs.fr/datas/fichiers/articles/60/184.pdf?PHPSESSID=3f08d68045907c34bc3547e6c4768505" target="_blank">Automation of image analysis tasks with ImageJ and MRI Cell Image Analyzer</a><br />
Une introduction en anglais à l&#8217;automatisation d&#8217;analyses d&#8217;images en utilisant le language macro de ImageJ et l&#8217;interface MRI-CIA.</li>
</ul>
<p align="justify">o        vous trouverez <a href="http://www.mri.cnrs.fr/index.php?m=41&#38;c=34">ici</a> des macros développées durant l&#8217;atelier.</p>
<p align="justify"><strong><span style="text-decoration:underline;">Links</span></strong></p>
<ul>
<li> <a href="http://www.mri.cnrs.fr/index.php?m=42">Télécharger <em>MRI Cell Image Analyzer</em></a></li>
</ul>
<ul>
<li> Publications utilisant <em>MRI Cell Image Analyzer</em></li>
</ul>
<ul>
<li> applications développées avec <em>MRI-CIA</em></li>
</ul>
<ul>
<li> <em>MRI Object Modeling Workbench</em></li>
</ul>
<ul>
<li> <a href="http://imagejdocu.tudor.lu/imagej-documentation-wiki/plugins/mri-cell-image-analyzer" target="_blank"><em>MRI-CIA</em></a> sur le documentation wiki de ImageJ</li>
</ul>
<ul>
<li> <a href="http://www.optinav.com/Bob_ImageJ_Conference_Photos/source/100_0203.htm" target="_blank">photos</a> de la &#8220;<a href="http://imagejdocu.tudor.lu/Members/ajahnen/imagej-user-and-developer-conference-2006">ImageJ User and Developer Conference 2006&#8243;</a> à Luxembourg</li>
</ul>
</div>
<div class="contenus">reference:</div>
<div class="contenus"><a href="http://www.mri.cnrs.fr/index.php?m=38">http://www.mri.cnrs.fr/index.php?m=38</a></div>
</div>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Colocalization and confocal images and imageJ Matlab]]></title>
<link>http://stef2cnrs.wordpress.com/2008/07/07/colocalization-and-confocal-images/</link>
<pubDate>Mon, 07 Jul 2008 20:58:53 +0000</pubDate>
<dc:creator>stef2cnrs</dc:creator>
<guid>http://stef2cnrs.wordpress.com/2008/07/07/colocalization-and-confocal-images/</guid>
<description><![CDATA[The laser scanning confocal microscope (LSCM) generates images of multiple labelled fluorescent samp]]></description>
<content:encoded><![CDATA[<p>The laser scanning confocal microscope (LSCM) generates images of multiple labelled fluorescent samples. Colocalization of fluorescent labels is frequently examined.</p>
<p>Colocalization is usually evaluated by visual inspection of signal overlap or by using commercially available software tools, but there are limited possibilities to automate the analysis of large amounts of data.</p>
<p>&#8211;formation</p>
<p><a href="http://www.picin.u-bordeaux2.fr/Cours/formation_2006/cerner_la_colocalisation_2006.pdf"><span class="a">www.picin.u-bordeaux2.fr/Cours/formation_2006/cerner_la_colocalisation_2006.pdf</span></a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<h2>&#8211;Colocalization image processing imageJ</h2>
<p class="MsoNormal" style="margin-top:9px;margin-bottom:3px;"><span style="font-size:x-small;font-family:Arial;">Colocalisation analysis is an subject  plagued with errors and contention. The literature is full of different methods  for colocalisation analysis which  probably reflects the fact that one approach does not necessarily fit all  circumstances.</span></p>
<p class="MsoNormal" style="margin-top:9px;margin-bottom:3px;"><span style="font-size:x-small;font-family:Arial;">Analysis can be considered qualitative  or quantitative. However, opinions differ as to which category the different  approaches fall! </span></p>
<p class="MsoNormal" style="margin-top:9px;margin-bottom:3px;"><span style="font-size:x-small;font-family:Arial;">Qualitative analysis can be thought of  as &#8220;highlighting overlapping pixels&#8221;. Although this is often given as a number  (&#8220;percentage overlap&#8221;) suggesting quantification, the qualitative aspect arises  when the user has to define what is considered &#8220;overlapping&#8221;. The two channels  have a threshold set and any areas where they overlap is considered  &#8220;colocalised&#8221;. Qualitative analysis has the benefit of being readily understood  with little expert knowledge but suffers from the intrinsic user bias of  &#8220;setting the threshold&#8221;. There are algorithms available which will automate the  thresholding without user intervention but these rely on analysis of the image&#8217;s  histogram which is subject to user intervention during acquisition.</span></p>
<p class="MsoNormal" style="margin-top:9px;margin-bottom:3px;"><span style="font-size:x-small;font-family:Arial;">Quantitative analysis removes user bias  by analysing all the pixels based on of their intensity (it must be noted that  some authors consider this a draw back rather than an advantage due to the  intrinsic uncertainty of pixel intensity; see Lachmanovich et al. (2003) <em>J.  Microscopy,</em> <strong>212</strong>, 122-131). There are a number of coefficients  detailed in the literature which can be calculated using ImageJ; each  coefficient has it&#8217;s strengths and weaknesses and should be thoroughly  researched before being used. It is this requirement for the coefficient to be  fully understood which is a disadvantage when trying to convey information to  research peers who are experts in biology, and not necessarily mathematics.</span></p>
<p class="MsoNormal" style="margin-top:9px;margin-bottom:3px;"><span style="font-size:x-small;font-family:Arial;"><span lang="EN-GB">One key issue that can confound  colocalisation analysis is bleed through. Colocalisation typically involves  determining how much the green and red colours overlap. Therefore it is  essential that the green emitting dye does not contribute to the red signal  (typically, red dyes do not emit green fluorescence but this needs to be  experimentally verified). One possible way to avoid bleed-through is to acquire  the red and green images sequentially, rather than simultaneously (as with  normal dual channel confocal imaging) and the use of narrow band emission  filters. Single and unlabelled controls must be used to assess bleed-through.</span></span></p>
<p class="MsoNormal" style="margin-top:9px;margin-bottom:3px;">
<h3 style="margin-top:9px;margin-bottom:3px;"><span style="font-size:x-small;font-family:Arial;"><span lang="en-gb">Intensity Correlatio<a name="coloc_ica"></a>n </span></span>Analysis</h3>
<p class="MsoNormal" style="margin-top:0;margin-bottom:12pt;">This plugin generates Mander’s coefficients (see below) as well as performing <em> Intensity Correlation Analysis</em> as described by Li <em>et al. </em> To fully  understand this analysis you should read:<br />
Li, Qi, Lau, Anthony, Morris, Terence J., Guo, Lin, Fordyce, Christopher B., and  Stanley, Elise F. (2004). A Syntaxin 1, G{alpha}o, and N-Type Calcium Channel  Complex at a Presynaptic Nerve Terminal: Analysis by Quantitative  Immunocolocalization. Journal of Neuroscience 24, 4070-4081.</p>
<p>It is bundled with WCIF ImageJ and can be downloaded alone <a href="http://www.uhnresearch.ca/facilities/wcif/fdownload.html" target="_blank"> here</a>.</p>
<p>reference:</p>
<p><a href="http://www.uhnresearch.ca/facilities/wcif/imagej/colour_analysis.htm">http://www.uhnresearch.ca/facilities/wcif/imagej/colour_analysis.htm</a></p>
<h4 style="margin-top:9px;margin-bottom:3px;"><span lang="EN-GB"><span style="font-style:normal;font-variant:normal;font-weight:normal;font-family:Arial;"> </span><span style="font-size:x-small;font-family:Arial;">“<span style="color:navy;">Manders&#8217; Coefficient&#8221;</span> (formerly <span style="color:navy;">Image Correlator plus</span></span></span><span style="font-family:Arial;"><span style="font-size:x-small;">&#60;!&#8211;[if supportFields]&#62;<span lang="EN-GB"> XE &#8220;</span><span style="font-style:normal;color:navy;">Image  Correlator plus: </span><span style="font-style:normal;" lang="EN-GB">Wayne  Rasband, Tony Collins<span style="color:navy;">&#8220;</span></span><span lang="EN-GB"><span style="font-size:x-small;"> </span> </span>&#60;![endif]&#8211;&#62;</span><!--[if supportFields]&#62;&#60;![endif]--> <span style="font-size:x-small;font-family:Arial;"><span lang="EN-GB">” and “<span style="color:navy;">Red-Green  Correlator</span>” plugins)</span></span></span></h4>
</p>
<p class="MsoNormal" style="margin-top:9px;margin-bottom:3px;"><span style="font-family:Arial;"><span style="font-family:Arial;"><span lang="EN-GB"> <span style="font-size:x-small;">This plugin generates  various colocalisation coefficients for two 8 or 16-bit images or stacks.</span></span></span><span style="font-size:x-small;font-family:Arial;"><img src="http://www.uhnresearch.ca/facilities/wcif/imagej/colour3.jpg" border="0" alt="" width="241" height="268" align="right" /></span></span></p>
<p class="MsoNormal" style="margin-top:9px;margin-bottom:3px;"><span style="font-family:Arial;"><span style="font-size:x-small;font-family:Arial;"><span lang="EN-GB">The plugins generate a scatter plots plus correlation coefficients. In each scatter plot, the first (channel 1) image component is represented along the x-axis, the second image (channel 2) along the y-axis. The intensity of a given pixel in the first image is used as the x-coordinate of the scatter-plot point and the intensity of the corresponding pixel in the second image as the y-coordinate.</span></span></span></p>
<p class="MsoNormal" style="margin-top:9px;margin-bottom:3px;"><span style="font-family:Arial;"><span style="font-size:x-small;font-family:Arial;"><span lang="EN-GB">The intensities of each pixel in the  “Correlation Plot” image represent the frequency of pixels that display those  particular red/green values. Since most of you image will probably be  background, the highest frequency of pixels will have low intensities so the  brightest pixels in the scatter plot are in the bottom left hand corner – i.e.  x~ zero, y ~ zero. The intensities in the “Red-Green correlation plot” image  represent the actual colour of the pixels in the image.</span></span></span></p>
<p class="MsoNormal" style="margin-top:9px;margin-bottom:3px;"><span style="font-family:Arial;"><strong><em> <span style="font-family:Arial;"><span style="font-size:x-small;">Mito-DsRed;  ER-EGFP </span> </span></em></strong><em> <span style="font-family:Arial;color:maroon;"><span style="font-size:x-small;"> </span></span></em></span></p>
<table id="AutoNumber2" style="border-collapse:collapse;height:281px;" border="1" cellspacing="0" cellpadding="0" width="64%">
<tbody>
<tr>
<td width="55%" height="126" align="left">
<p class="MsoNormal" style="margin-bottom:3px;text-align:left;margin-top:9px;"><em> <span style="font-family:Arial;color:maroon;"> <span style="font-size:x-small;">Pearson&#8217;s correlation (R)=0.34</span></span></em></p>
<p class="MsoNormal" style="margin-bottom:3px;text-align:left;margin-top:9px;"><em> <span style="font-family:Arial;color:maroon;"> <span style="font-size:x-small;">Overlap coefficient (R)=0.40</span></span></em></p>
<p class="MsoNormal" style="margin-bottom:3px;text-align:left;margin-top:9px;"><em> <span style="font-family:Arial;color:maroon;"> <span style="font-size:x-small;">Nred ÷ Ngreen pixels=0.66</span></span></em></p>
<p class="MsoNormal" style="margin-bottom:3px;text-align:left;margin-top:9px;"><em> <span style="font-family:Arial;color:maroon;"> <span style="font-size:x-small;">Colocalisation coefficient for red (Mred)=0.96</span></span></em></p>
<p class="MsoNormal" style="margin-bottom:3px;text-align:left;margin-top:9px;"><em> <span style="font-family:Arial;color:maroon;"><span style="font-size:x-small;">Colocalisation  coefficient for green (Mgreen)=0.49</span></span></em></p>
</td>
<td width="51%" height="126">
<p style="margin-top:9px;margin-bottom:3px;"><span style="font-size:x-small;font-family:Arial;"> <img src="http://www.uhnresearch.ca/facilities/wcif/imagej/colour13.jpg" border="0" alt="" width="247" height="119" /></span></p>
</td>
</tr>
<tr>
<td width="55%" height="154" align="center" valign="top">
<p style="margin-top:9px;margin-bottom:3px;"><span style="font-size:x-small;font-family:Arial;"> <img src="http://www.uhnresearch.ca/facilities/wcif/imagej/colour2.gif" border="0" alt="" width="158" height="148" /></span></p>
</td>
<td width="51%" height="154" align="center" valign="top">
<p style="margin-top:9px;margin-bottom:3px;"><span style="font-size:x-small;font-family:Arial;"> <img src="http://www.uhnresearch.ca/facilities/wcif/imagej/colour4.jpg" border="0" alt="" width="158" height="148" /></span></p>
</td>
</tr>
</tbody>
</table>
<p class="MsoNormal" style="margin-top:9px;margin-bottom:3px;"><span style="font-family:Arial;"> </span></p>
<p class="MsoNormal" style="text-align:left;margin-top:9px;margin-bottom:3px;" align="left"><span style="font-family:Arial;"><a name="_Toc64439147"><strong><em> <span style="font-family:Arial;"><span style="font-size:x-small;">TMRE (red) plus  Mito-pericam (Green)</span></span></em></strong></a><strong><em><span style="font-family:Arial;"><span style="font-size:x-small;"> </span> </span></em></strong></span></p>
<table id="AutoNumber1" style="border-collapse:collapse;height:281px;" border="1" cellspacing="0" cellpadding="0" width="65%">
<tbody>
<tr>
<td width="55%" height="126" align="left">
<p class="MsoNormal" style="margin-bottom:3px;text-align:left;margin-top:9px;"><em> <span style="font-family:Arial;color:maroon;"> <span style="font-size:x-small;">Pearson&#8217;s correlation Rr=0.93</span></span></em></p>
<p class="MsoNormal" style="margin-bottom:3px;text-align:left;margin-top:9px;"><em> <span style="font-family:Arial;color:maroon;"> <span style="font-size:x-small;">Overlap coefficient R=0.94</span></span></em></p>
<p class="MsoNormal" style="margin-bottom:3px;text-align:left;margin-top:9px;"><em> <span style="font-family:Arial;color:maroon;"> <span style="font-size:x-small;">Nred ÷ Ngreen pixels=0.93</span></span></em></p>
<p class="MsoNormal" style="margin-bottom:3px;text-align:left;margin-top:9px;"><em> <span style="font-family:Arial;color:maroon;"> <span style="font-size:x-small;">Colocalisation coefficient (red) Mred=0.99</span></span></em></p>
<p class="MsoNormal" style="margin-bottom:3px;text-align:left;margin-top:9px;"><em> <span style="font-family:Arial;color:maroon;"> <span style="font-size:x-small;">Colocalisation coefficient (green) Mgreen=0.98</span></span></em></p>
</td>
<td width="51%" height="126">
<p style="margin-top:9px;margin-bottom:3px;"><span style="font-size:x-small;font-family:Arial;"> <img src="http://www.uhnresearch.ca/facilities/wcif/imagej/colour14.jpg" border="0" alt="" width="241" height="133" /></span></p>
</td>
</tr>
<tr>
<td width="55%" height="154" align="center" valign="top">
<p style="margin-top:9px;margin-bottom:3px;"><span style="font-size:x-small;font-family:Arial;"> <img src="http://www.uhnresearch.ca/facilities/wcif/imagej/colour4.gif" border="0" alt="" width="158" height="148" /></span></p>
</td>
<td width="51%" height="154" align="center" valign="top">
<p style="margin-top:9px;margin-bottom:3px;"><span style="font-size:x-small;font-family:Arial;"> <img src="http://www.uhnresearch.ca/facilities/wcif/imagej/colour5.jpg" border="0" alt="" width="158" height="148" /></span></p>
</td>
</tr>
</tbody>
</table>
<p class="MsoNormal" style="margin-top:9px;margin-bottom:3px;"><span style="font-family:Arial;"> </span></p>
<p class="MsoNormal" style="margin-top:9px;margin-bottom:3px;"><span style="font-family:Arial;"><span style="font-size:x-small;font-family:Arial;"><span lang="EN-GB">Both  plugins generate various colocalisation coefficients: Pearson’s (Rr), Overlap  (R) and Colocalisation (M1, M2) See </span> <span style="font-family:TimesNewRomanPSMT;">Manders, E.E.M., Verbeek, F.J. &#38;  Aten, J.A. ‘Measurement of co-localisation of objects in dual-colour confocal  images’,  (1993) </span><em><span style="font-family:TimesNewRomanPS-ItalicMT;">J.  Microscopy</span></em><span style="font-family:TimesNewRomanPSMT;">, </span><strong> <span style="font-family:TimesNewRomanPS-BoldMT;">169</span></strong><span style="font-family:TimesNewRomanPSMT;">,  375-382. </span><span lang="EN-GB">See tutorial sheet ‘Colocalisation’  for details. The threshold  is also reported (0,0 means no threshold was used).</span></span></span></p>
<p class="MsoNormal" style="margin-top:9px;margin-bottom:3px;"><span style="font-family:Arial;"><span style="font-size:x-small;font-family:Arial;"> <img src="http://www.uhnresearch.ca/facilities/wcif/imagej/colour6.jpg" border="0" alt="" width="447" height="116" /></span></span></p>
<h3 style="margin-top:9px;margin-bottom:3px;"><span style="font-family:Arial;"><a name="6.2 Colocalisation Test">Colocalisation Test</a></span></h3>
<p class="MsoNormal" style="margin-top:9px;margin-bottom:3px;"><span style="font-family:Arial;"><span style="font-size:x-small;font-family:Arial;">When a coefficient is calculated for two  images, it is often unclear quite what this means, in particular for  intermediate values. This raises the following question: how does this value  compare with what would be expected by chance alone?</span></span></p>
<p class="MsoNormal" style="margin-top:9px;margin-bottom:3px;"><span style="font-family:Arial;"><span style="font-size:x-small;font-family:Arial;">There are several approaches that can be  used to compare an observed coefficient with the coefficients of randomly  generated images. Van Steensel (3) adopted an approach where the observed  colocalisation between channel 1 and channel 2 was compared to colocalisation  between channel 1 and a number of channel 2 images that had been translated  (i.e. displaced by a number of pixels) in increments along the image’s X-axis.  Fay et al (4) extended this approach by translating channel 2 in 5-pixel  increments along the X- and Y-axis (i.e., –10, –5, 0, 5, and 10) and ± 1 slices  in the Z-axis. This results in 74 randomisations (plus one original channel 2).  The observed correlation was compared to these 74 and considered significant if  it was greater than 95% of them.</span></span></p>
<p class="MsoNormal" style="margin-top:9px;margin-bottom:3px;"><span style="font-family:Arial;"><span style="font-size:x-small;font-family:Arial;">Costes et al. (5) subsequently adopted a  different approach, based on “scrambling” channel 2. The original channel 1  image was compared to 200 “scrambled” channel 2 images; the observed  correlations between channel 1 and channel 2 were considered significant if they  were greater than 95% of the correlations between channel 1 and scrambled  channel 2s. </span></span></p>
<p class="MsoNormal" style="margin-top:9px;margin-bottom:3px;"><span style="font-family:Arial;"><span style="font-size:x-small;font-family:Arial;">Costes’ scrambled images were generated  by randomly rearranging blocks of the channel-2 image. The size of these blocks  was chosen to equal the point spread function (PSF) of the image.</span></span></p>
<p class="MsoNormal" style="margin-top:9px;margin-bottom:3px;"><span style="font-family:Arial;"><span style="font-size:x-small;font-family:Arial;">An approximation of Costes’ approach is  used by Bitplane’s Imaris and also the Colocalisation Test plugin. For Imaris, a  white noise image is smoothed with a Gaussian filter the width of the image’s  PSF. The Colocalisation Test plugin generates a randomized image by taking  random pixels from the channel-2 image; it then smoothes the image with a  Gaussian filter, which is again the width of the image’s PSF. </span></span></p>
<p class="MsoNormal" style="margin-top:9px;margin-bottom:3px;"><span style="font-family:Arial;"><span style="font-size:x-small;font-family:Arial;">The Colocalisation Test plugin  calculates Pearson’s correlation coefficient for the two selected channels  (Robs) and compares this to Pearson’s coefficients for channel 1 against a  number of randomized channel-2 images (Rrand).</span></span></p>
<h2>&#8211;Colocalization image processing matlab:</h2>
<p><span style="font-family:Times;color:#666666;"> </span></p>
<p><img src="http://www.sciencedirect.com/scidirimg/clear.gif" border="0" alt="" width="1" height="10" /><a href="http://dx.doi.org/10.1016/S0169-2607%2803%2900071-3" target="doilink">doi:10.1016/S0169-2607(03)00071-3</a></p>
<div class="articleTitle">
<p>Automated high through-put colocalization analysis of multichannel confocal images</p></div>
<p><!-- articleText --></p>
<div id="authorsAnchors" class="authorsNoEnt"><strong>M. Kreft , I. Milisav , M. Potokar and R. Zorec</strong></p>
<p><strong></strong></div>
<p><!-- authorsNoEnt --></p>
<div class="articleText" style="display:inline;">
<div id="authorsAnchors" class="authorsNoEnt">
<p>Lab. Neuroendocrinology-Molecular Cell Physiology, Inst. Pathophysiology, Medical Faculty, Zaloska 4, 1000 Ljubljana and Celica Biomed. Sciences Center, Stegne 21, 1000, Ljubljana, Slovenia</p></div>
<p><!-- authorsNoEnt --></div>
<p><!-- articleText --></p>
<div class="articleText" style="display:inline;">accepted 20 April 2003.</div>
<p><!-- graphText, refText --></p>
<div class="articleText" style="display:inline;">Available online  15 July 2003.</div>
<p><!-- articleText -->We developed a simple tool using Matlab to automate the colocalization procedure and to exclude the biased estimations resulting from visual inspections of images. The script in Matlab language code automatically imports confocal images and converts them into arrays. The contrast of all images is uniformly set by linearly reassigning the values of pixel intensities to use the full 8-bit range (0–255). Images are binarized on several threshold levels. The area above a certain threshold level is summed for each channel of the image and for colocalized regions. As a result, count of pixels above several threshold levels in any number of images is saved in an ASCII file. In addition Pearson&#8217;s r correlation coefficient is calculated for fluorescence intensities of both confocal channels. Using this approach quick quantitative analysis of colocalization of hundreds of images is possible. In addition, such automated procedure is not biased by the examiner&#8217;s subject visualization.</p>
<p><a href="http://stef2cnrs.files.wordpress.com/2008/07/kreft-2004-colocalization.pdf">kreft-2004-colocalization</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[imageJ import export file format]]></title>
<link>http://stef2cnrs.wordpress.com/2008/07/07/imagej-import-export-file-format/</link>
<pubDate>Mon, 07 Jul 2008 20:10:22 +0000</pubDate>
<dc:creator>stef2cnrs</dc:creator>
<guid>http://stef2cnrs.wordpress.com/2008/07/07/imagej-import-export-file-format/</guid>
<description><![CDATA[2. Importing Image Files ImageJ primarily uses TIFF as the image file format. The menu command “File]]></description>
<content:encoded><![CDATA[<div class="Section1" style="width:606px;height:679px;">
<h1 style="margin-top:0;margin-bottom:3px;"><a name="_Ref43546089"><span lang="en-gb">2.<span style="font-size:small;"> </span> </span><span lang="EN-GB"><span style="font-size:small;">Importing Image Files</span></span></a></h1>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-family:Arial;font-size:x-small;"><span lang="EN-GB">ImageJ primarily uses TIFF as the image  file format. The menu command “<em>File/Save</em>” will save in TIFF format. The  menu command “<em>File/Open</em>” will open TIFF files and import a number of  other common file formats (e.g. JPEG, GIF, BMP, PGM, PNG). These natively  supported files can also be opened by drag-and-dropping the file on to the  ImageJ toolbar. MetaMorph *.STK files can also be opened directly.</span></span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-family:Arial;font-size:x-small;"><span lang="EN-GB">Several more file formats can be  imported via ImageJ plugins (e.g. Biorad, Noran, Zeiss, Leica). When you  subsequently save these files within ImageJ they will no longer be in their  native format. Bear this in mind; ensure you do not overwrite original data.</span></span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-family:Arial;font-size:x-small;"><span lang="EN-GB">There are further file formats such as  PNG, PSD (Photoshop), ICO (Windows icon), PICT, which can be imported via the  menu command <em>“<span style="color:navy;">File/Import/*.PNGJimi Reader…</span></em></span><!--[if supportFields]&#62;<span lang="EN-GB"> XE &#34;<i><span style="color:navy;">Jimi Reader…:</span></i>Wayne Rasband and Ulf  Dittmer (udittmer at mac.com)&#34; </span>&#60;![endif]&#8211;><!--[if supportFields]&#62; &#60;![endif]--> <span style="font-family:Arial;font-size:x-small;"> <em><span lang="EN-GB">”</span></em><span lang="EN-GB">. </span></span></p>
<h2 style="margin-top:9px;margin-bottom:3px;"><span lang="EN-GB"><a name="Import_LSM">2.1<span style="font-weight:400;"> </span>Importing  Zeiss LSM files</a></span></h2>
<p style="margin-top:0;margin-bottom:3px;"><span style="font-family:Arial;font-size:x-small;"><span lang="EN-GB"> <img src="http://www.uhnresearch.ca/facilities/wcif/imagej/import1.jpg" border="0" alt="" width="157" height="194" align="left" />Files acquired on the Zeiss confocal are  can be opened directly (with the “<em><span style="color:navy;">Handle Extra File  Type</span></em><span style="color:navy;">s”</span></span><!--[if supportFields]&#62;<span lang="EN-GB" style="color:navy;"> XE &#34;<i>Handle Extra File Type</i>s: </span><span lang="EN-GB">Gregory Jefferis (jefferis  at Stanford.edu)&#34; </span>&#60;![endif]&#8211;><!--[if supportFields]&#62;&#60;![endif]--> <span style="font-family:Arial;font-size:x-small;"> <span lang="EN-GB"> plugin installed) via the <em>“File/Open” </em>menu command,  or by dropping them on the ImageJ toolbar. They can also be imported via the  “Zeiss LSM Import Panel” which is activated by the menu command “<em><span style="color:navy;">File/Import/*.LSM”.</span></em></span><!--[if supportFields]&#62;<i><span lang="EN-GB" style="color:navy;"> XE &#34;Zeiss LSM Import panel…: </span><span lang="EN-GB">Patrick Pirrotte,  Yannick Krempp, and Jerome Mutterer (jerome.mutterer@ibmp-ulp.u-strasbg.fr)<i><span style="color:navy;"> ”.&#34; </span></i></span>&#60;![endif]&#8211;></span><!--[if supportFields]&#62;&#60;![endif]--> <span style="font-family:Arial;font-size:x-small;"><em> <span style="color:navy;" lang="EN-GB"> </span></em><span lang="EN-GB">This  plugin has the advantage of being able to access extra image information stored  with the LSM file, but it is an extra mouse click.</span></span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-family:Arial;font-size:x-small;"><span lang="EN-GB">Images are opened as 8-bit colour images  with the “no-palette” pseudocolour (!) from the LSM acquisition software. Each  channel is imported as a separate image/stack. Lambda stacks are therefore  imported as multiple images, not a single stack. They can be converted to a  stack with the menu command: <em>“Image/Stacks/Covert Images to stack”</em>.</span></span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-family:Arial;font-size:x-small;"><span lang="EN-GB">Once opened, the file information can be  accessed and the z/t/lambda information can be irreversibly stamped in to the  images or exported to a text file.</span></span></p>
<h2 style="margin-top:9px;margin-bottom:3px;"><a name="Import_ZVI"><span lang="en-gb"> <span style="font-family:Arial;">2</span></span>.2 Importing  Zeiss ZVI files</a></h2>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-size:x-small;"> <span style="font-family:Arial;">ZVI files can be imported via the menu command &#8220;<span style="color:#2c2c98;"><em>File/Import/*.ZVI</em></span>&#8220;. The files are opened as  a single stack with the different channels interleaved. The channels can be  separated with the &#8220;<span style="color:#2c2c98;"><em>Plugins/Stacks-Shuffling/DeInterleave</em></span></span>&#8221;  <span style="font-family:Arial;">plugin</span>. </span></p>
<h2 style="margin-top:9px;margin-bottom:3px;"><span lang="EN-GB"><a name="Import_Noran">2.3<span style="font-weight:400;"> </span>Importing Noran SGI file</a></span></h2>
<p class="MsoNormal" style="margin-bottom:3px;margin-top:0;"><span style="font-family:Arial;font-size:x-small;"><span lang="EN-GB">Noran  movies can be opened in several ways:</span></span></p>
<p class="MsoNormal" style="text-align:left;margin-bottom:3px;margin-top:0;" align="left"><span style="font-family:Arial;font-size:x-small;"> <span lang="EN-GB">“<em><span style="color:navy;">File/Import/Noran movie…</span></em></span><!--[if supportFields]&#62;<i><span lang="EN-GB" style="color:navy;"> XE “Noran movie…:</span><span lang="EN-GB"> Greg Joss (gjoss@bio.mq.edu.au)<i><span style="color:navy;">&#34; </span></i></span>&#60;![endif]&#8211;></span><!--[if supportFields]&#62;&#60;![endif]--> <span style="font-family:Arial;font-size:x-small;"> <span lang="EN-GB">”<em> </em>opens the entire movie as an image stack.<br />
“<em><span style="color:navy;">File/Import/Noran Selection…</span></em></span><!--[if supportFields]&#62;<i><span lang="EN-GB" style="color:navy;"> XE &#34;Noran Selection…: </span><span lang="EN-GB">Greg Joss (gjoss@bio.mq.edu.au)<i><span style="color:navy;">&#34; </span></i></span>&#60;![endif]&#8211;></span><!--[if supportFields]&#62;&#60;![endif]--> <span style="font-family:Arial;font-size:x-small;"> <span lang="EN-GB">”<em> </em>allows you to specify a range of frames to be opened  as a stack.</span></span>
</p>
<p class="MsoNormal" style="text-align:left;margin-top:0;margin-bottom:3px;" align="left"><span style="font-family:Arial;font-size:x-small;"><span lang="EN-GB"> The Noran SGI plugins are not bundled with the ImageJ package. To receive them,  please contact <a href="mailto:tonyc@uhnresearch.ca"> tonyc@uhnresearch.ca</a> or their author, Greg Joss, so he can keep track of  users. Greg Joss <a href="mailto:gjoss@bio.mq.edu.au"> gjoss AT bio.mq.edu.au</a> is in the Dept of Biology, Macquarie University, Sydney,  Australia.</span></span></p>
<h2 style="margin-top:9px;margin-bottom:3px;"><a name="Import_PIC">2.4 Importing Biorad PIC files</a></h2>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-family:Arial;font-size:x-small;"><span lang="EN-GB">Biorad PIC files can be now be imported  directly via the menu command “<em>File/Open”.</em> Experimental information, calibration, and other  useful information can be accessed via <em>Image/Show Info</em>. Biorad PIC files  can also be opened by drag-and-dropping the file on to the ImageJ toolbar. The  PIC file is opened with the same LUT with which it was saved in the original  acquisition software.</span></span></p>
<h2 style="margin-top:9px;margin-bottom:3px;"><a name="Import_multi">2.5 Importing multiple files from folder</a></h2>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-family:Arial;font-size:x-small;"><span lang="EN-GB">Each time point of an experiment  acquired with software such as Perkin Elmer’s Ultra<em>VIEW</em> or Scion Image’s  time lapse macro is saved by the acquisition software as a single TIF file. The  experimental sequence can be imported to ImageJ via the menu command “<em>File/Import/Image  Sequence…</em>”.</span></span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-family:Arial;font-size:x-small;"><span lang="EN-GB">Locate the directory, click on the first  image in the sequence and OK all dialogs. (You may get a couple of error  messages while ImageJ tries to open any non-image files in the experimental  directory.) The stack will “interleave” the multiple channels you recorded, and  can be de-interleaved via “<em><span style="color:navy;">Plugins/Stacks &#8211;  Shuffling/Deinterleave</span></em><span style="color:navy;">”</span></span><!--[if supportFields]&#62;<span lang="EN-GB" style="color:navy;"> XE &#34;<i> Deinterleave: </i></span><span lang="EN-GB">Russell Kincaid (rekincai@syr.edu),  Tony Collins<span style="color:navy;">&#34;</span></span>&#60;![endif]&#8211;><!--[if supportFields]&#62;&#60;![endif]--><span style="font-family:Arial;font-size:x-small;"><span lang="EN-GB">.</span></span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-family:Arial;font-size:x-small;"><span lang="EN-GB">Selected images that are not the same  size can be imported as individual images windows using “<em><span style="color:navy;">File/Import/Selected  files to open…</span></em></span><!--[if supportFields]&#62;<i><span lang="EN-GB" style="color:navy;"> XE &#34;Selected files to open…</span><span lang="EN-GB">: Wayne Rasband&#34; </span> &#60;![endif]&#8211;></span><!--[if supportFields]&#62;&#60;![endif]--> <span style="font-family:Arial;font-size:x-small;"><span lang="EN-GB">” or as a  stack with the “<em><span style="color:navy;">File/Import/Selected files for  stack…</span></em></span><!--[if supportFields]&#62;<span lang="EN-GB"> XE &#34;<i><span style="color:navy;">Selected  files for stack…:</span></i>Albert Cardona: albert@pensament.REMOVE-MEnet&#34; </span>&#60;![endif]&#8211;><!--[if supportFields]&#62;&#60;![endif]--> <span style="font-family:Arial;font-size:x-small;"><span lang="EN-GB">”.  Unlike the “<em>File/Import/Image Sequence…</em>” function, the images need not be  of the same dimensions. If memory is limited, stacks can be opened as  Virtual-Stacks with most of the stack remaining on the disk until it is required  “<em><span style="color:navy;">File/Import/Disk based stack”</span></em></span><!--[if supportFields]&#62;<span lang="EN-GB"> XE &#34;<i><span style="color:navy;">Disk based stack :</span></i></span>Wayne  Rasband<span lang="EN-GB">&#34; </span>&#60;![endif]&#8211;><!--[if supportFields]&#62; &#60;![endif]--> <span style="font-family:Arial;font-size:x-small;"> <em><span style="color:navy;" lang="EN-GB">.</span></em></span></p>
<h2 style="margin-top:9px;margin-bottom:3px;"><a name="Import_RAW">2.6 Importing Multi-RAW sequence from folder</a></h2>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-family:Arial;font-size:x-small;"><span lang="EN-GB">To form an image, ImageJ needs to know  the image dimensions, bit-depth, slice number per file and any extraneous  information in the file format (offset and header size). All you really need to  tell it is the image dimension in <em>x </em>and <em>y</em>. These values should be  obtainable from the software in which the images were acquired. Armed with this  information follow these steps:</span></span></p>
<p class="MsoNormal" style="text-indent:-17.85pt;margin:0 0 3px 17.85pt;"><span lang="EN-GB"><span style="font-family:Arial;font-size:x-small;">1.</span><span style="font-style:normal;font-variant:normal;font-weight:normal;font-family:Arial;"><span style="font-size:x-small;"> </span> </span></span><span style="font-family:Arial;font-size:x-small;"><em><span lang="EN-GB">File/Import/Raw…</span></em></span></p>
<p class="MsoNormal" style="text-indent:-18pt;margin:0 0 3px 18pt;"><span lang="EN-GB"><span style="font-family:Arial;font-size:x-small;">2.</span><span style="font-style:normal;font-variant:normal;font-weight:normal;font-family:Arial;"><span style="font-size:x-small;"> </span> </span><span style="font-family:Arial;font-size:x-small;">Select experimental directory.</span></span></p>
<p class="MsoNormal" style="text-indent:-18pt;margin:0 0 3px 18pt;"><span lang="EN-GB"><span style="font-family:Arial;font-size:x-small;">3.</span><span style="font-style:normal;font-variant:normal;font-weight:normal;font-family:Arial;"><span style="font-size:x-small;"> </span> </span><span style="font-family:Arial;font-size:x-small;">Typical values for the dialog box are: </span> </span></p>
<p class="MsoNormal" style="text-indent:36pt;margin-bottom:3px;margin-top:0;"><span style="font-family:Arial;font-size:x-small;"> <span lang="EN-GB">Image type = 16-bit unsigned            (or 8 bit typically) </span></span></p>
<p class="MsoNormal" style="text-indent:36pt;margin-bottom:3px;margin-top:0;"><span style="font-family:Arial;font-size:x-small;"> <span lang="EN-GB">width and height as determined earlier</span></span></p>
<p class="MsoNormal" style="text-indent:36pt;margin-bottom:3px;margin-top:0;"><span style="font-family:Arial;font-size:x-small;"> <span lang="EN-GB">offset = 0, number of image = 1, gap = 0, ‘white’ is zero =  off</span></span></p>
<p class="MsoNormal" style="margin:0 0 3px 36pt;"><span style="font-family:Arial;font-size:x-small;"> <span lang="EN-GB">‘Little-endian byte order’ = on, ‘open all files in folder’ =  on to open all files in folder.</span></span></p>
<p class="MsoNormal" style="margin-bottom:3px;margin-top:0;"><span style="font-family:Arial;font-size:x-small;"><span lang="EN-GB">Non-image  files will also be opened and may appear as blank images and need deleting: “<em>Image/Stacks/Delete  slice</em>”. The stack will “interleave” the multiple channels you recorded, and  can be de-interleaved via “<em><span style="color:navy;">Plugins/Stacks  &#8211; Shuffling/DeInterleave</span></em><span style="color:navy;">”</span>. </span> </span></p>
<h2 style="margin-top:9px;margin-bottom:3px;"><a name="Import_AVI">2.7 Importing AVI and MOV files</a></h2>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-family:Arial;font-size:x-small;"><span lang="EN-GB">There are two plugins which can open  uncompressed AVIs and some types of MOV file. </span></span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-family:Arial;font-size:x-small;"><span lang="EN-GB">For opening (and writing) QuickTime you  need a custom installation of QuickTime to include QT for Java (see section  1.3). QuickTime movies are then opened via “<em><span style="color:navy;">File/Import/</span></em></span><span style="color:#000080;" lang="en-gb"><em>*.MOV</em></span><!--[if supportFields]&#62;<i><span lang="EN-GB" style="color:navy;"> XE &#34;QuickTime…:</span><span lang="EN-GB"> Wayne Rasband (wsr at nih.gov),  Robert Dougherty (<a href="http://www.optinav.com/">www.optinav.com</a>)  Jeff Hardin (jdhardin at facstaff.wisc.edu) <i><span style="color:navy;">&#34; </span></i></span>&#60;![endif]&#8211;></span><!--[if supportFields]&#62;&#60;![endif]--> <span style="font-family:Arial;font-size:x-small;"> <span lang="EN-GB">”.</span></span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-family:Arial;font-size:x-small;"><span lang="EN-GB">Uncompressed AVIs can be opened via “<em><span style="color:navy;">File/Import/*.AVI</span></em></span><!--[if supportFields]&#62;<i><span lang="EN-GB" style="color:navy;">XE &#34;<a href="mailto:AVI…:%20Daniel%20Marsh%20(marshd@ninds.nih.gov)">AVI…: </a> </span><span lang="EN-GB"> <a href="mailto:AVI…:%20Daniel%20Marsh%20(marshd@ninds.nih.gov)">Daniel Marsh (marshd@ninds.nih.gov)</a><i><span style="color:navy;">&#34; </span></i></span>&#60;![endif]&#8211;></span><!--[if supportFields]&#62;&#60;![endif]--> <span style="font-family:Arial;font-size:x-small;"> <span lang="EN-GB">”.</span></span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;">
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><strong><span lang="en-gb"><span style="font-family:Arial;font-size:x-small;">2.8 Importing Scan<a name="Import_IPL"></a>alytics  IPLab IPL files</span></span></strong></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-family:Arial;font-size:x-small;"><span lang="EN-GB"> IPLab files can be imported directly by ImageJ.</span><span style="color:navy;" lang="EN-GB"><em> File/Import/*.IPL</em></span><!--[if supportFields]&#62;<span lang="EN-GB">XE &#34;</span>IPLab reader<span lang="EN-GB">:Wayne Rasband (wsr at nih.gov)&#34; </span>&#60;![endif]&#8211;><!--[if supportFields]&#62;&#60;![endif]--> <span style="font-family:Arial;font-size:x-small;"><span lang="EN-GB">.  Allows Windows IPLab files to be opened directly with the “<em>File/Open”</em> menu command, or drag-and-drop.</span></span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span lang="en-gb"><span style="font-family:Arial;font-size:x-small;">The spatial calibration should be  imported correctly from your IPLab software.</span></span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;">
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><strong><span style="font-family:Arial;font-size:x-small;">2.9 Import<a name="Import_lei"></a>ing Leica SP2  LEI series</span></strong></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-family:Arial;font-size:x-small;">Leica SP2 experiments are saved as multiple tiff  files in a single folder. This can contain many different series acquired during  the one experiment. Along with many tiffs, the folder also contains a text  description in the *.TXT files and a Leica proprietary file *.LEI.</span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-family:Arial;font-size:x-small;">Double clicking, drag/dropping of &#8220;<em>File/Open</em>&#8220;&#8216;ing  the *.LEI files should run the <span style="color:#2c2c98;"><em>Leica TIFF Sequence</em></span> plugin. Alternatively, run the menu command &#8220;<em>File/Import/*.TXT Leica SP2  series</em>&#8221; and select the experiment&#8217;s TXT file from the open dialog.</span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-family:Arial;font-size:x-small;">A second dialog will open listing the names of the  series in the folder. The user can then select those that are to be opened. The  appropriate spatial calibration should be read form the txt file and applied to  the image. Leica &#8216;Snapshots&#8217; do not have spatial calibration saved with them.  The entry in the TXT file for the series is written to the &#8216;Notes&#8217; for the image  and can be access by the menu command &#8220;<em>Image/Show Info&#8230;</em>&#8220;.</span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-family:Arial;font-size:x-small;">Folders with large numbers of series in could  potentially generate a dialog so large that some names are &#8220;off screen&#8221;. The  maximum number of series names per column can be set by running the plugin with  the alt-key down.</span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;">
<h2 style="margin-top:0;margin-bottom:3px;"><span lang="EN-GB"><a name="Import_other">2.<span style="font-style:normal;font-variant:normal;">10</span><span style="font-weight:400;font-style:normal;font-variant:normal;"> </span> Other Import functions </a></span></h2>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-family:Arial;font-size:x-small;">These import plugins import the image  data as well as meta-data.</span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-family:Arial;font-size:x-small;"><em><span style="color:navy;" lang="EN-GB">Leica SP- </span> </em><span lang="EN-GB">Leica multi-colour images are tiffs. They can be opened as  multiple files to a a single stack. Each channel can be imported separately by  adding &#8216;c1&#8242; or c2&#8242; etc. as the import string. Alternatively, they can be all  imported to the one stack then separated by de-interleaving them (<span style="color:#000080;"><em>&#8220;Plugins/Stack  &#8211; shuffling/Deinterleave</em></span>&#8220;). </span> </span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-family:Arial;font-size:x-small;"><em><span style="color:navy;" lang="EN-GB">Olympus Fluoview  &#8211; </span></em><span lang="EN-GB">available from <a href="http://rsb.info.nih.gov/ij/plugins/ucsd.html"> http://rsb.info.nih.gov/ij/plugins/ucsd.html</a>. Not bundled with the current  download.</span></span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-family:Arial;font-size:x-small;"><em><span style="color:navy;" lang="EN-GB">Animated GI</span></em><!--[if supportFields]&#62;<span lang="EN-GB">F  XE &#34;<i><span style="color:navy;">Animated GIF: </span></i>Kevin Weiner, FM  Software, W. Rasband.&#34; </span>&#60;![endif]&#8211;><!--[if supportFields]&#62;&#60;![endif]--> <span style="font-family:Arial;font-size:x-small;"><em> <span style="color:navy;" lang="EN-GB">F &#8211; </span></em><span lang="EN-GB">This  plugin opens an animated GIF file as an RGB stack. Also opens single GIF images.</span></span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-family:Arial;font-size:x-small;"><em><span style="color:navy;"> <a href="http://valelab.ucsf.edu/%7Enico/IJplugins/Ics_Opener.html" target="_blank">File/Import/ICS,IDS</a></span></em><span lang="en-gb"> </span>Image  Cytometry Standard file format from Nico Sturman.</span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-family:Arial;font-size:x-small;"><span style="color:#000080;"><em> <a href="http://rsb.info.nih.gov/ij/plugins/track/delta.html" target="_blank"> File/Import/*.DV</a></em></span> *.DV files  generated on DeltaVision system format from Fabrice Cordelieres</span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-family:Arial;font-size:x-small;"><span style="color:#000080;"><em> <a href="http://rsb.info.nih.gov/ij/plugins/track/builder.html" target="_blank"> File/Import/*.ND</a></em></span> *.ND files  created with MetaMorph&#8217;s &#8216;Multidimensional acquisition”. From Fabrice  Cordelieres</span></p>
</div>
]]></content:encoded>
</item>
<item>
<title><![CDATA[leica SP2 tiff sequence - ressources]]></title>
<link>http://stef2cnrs.wordpress.com/2008/07/07/leica-sp2-tiff-sequence-ressources/</link>
<pubDate>Mon, 07 Jul 2008 19:57:11 +0000</pubDate>
<dc:creator>stef2cnrs</dc:creator>
<guid>http://stef2cnrs.wordpress.com/2008/07/07/leica-sp2-tiff-sequence-ressources/</guid>
<description><![CDATA[formats: tiff volume tiff raw avi &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;]]></description>
<content:encoded><![CDATA[<p>formats:</p>
<ul>
<li><span>tiff</span></li>
<li><span>volume tiff</span></li>
<li><span>raw </span></li>
<li><span>avi</span></li>
</ul>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong>plug-in imageJ</strong></p>
<p>This plugin opens multi-TIFF series acquired with Leica SP2 confocal.</p>
<p>Run the plugin; select the TXT file associated with the TIFF series and select the series to be opened. This information is then passed to the native &#8220;Import Sequence&#8221; function.</p>
<p>Optional ability to split the channels.</p>
<p>The plugin should apply the spatial calibration found in the TXT file.</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-size:x-small;font-family:Arial;"><span lang="EN-GB">ImageJ primarily uses TIFF as the image  file format. The menu command “<em>File/Save</em>” will save in TIFF format. The  menu command “<em>File/Open</em>” will open TIFF files and import a number of  other common file formats (e.g. JPEG, GIF, BMP, PGM, PNG). These natively  supported files can also be opened by drag-and-dropping the file on to the  ImageJ toolbar. MetaMorph *.STK files can also be opened directly.</span></span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-size:x-small;font-family:Arial;"><span lang="EN-GB">Several more file formats can be  imported via ImageJ plugins (e.g. Biorad, Noran, Zeiss, Leica). When you  subsequently save these files within ImageJ they will no longer be in their  native format. Bear this in mind; ensure you do not overwrite original data.</span></span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-size:x-small;font-family:Arial;"><span lang="EN-GB">There are further file formats such as  PNG, PSD (Photoshop), ICO (Windows icon), PICT, which can be imported via the  menu command <em>“<span style="color:navy;">File/Import/*.PNGJimi Reader…</span></em></span>&#60;!&#8211;[if supportFields]&#62;<span lang="EN-GB"> XE &#8220;<em><span style="color:navy;">Jimi Reader…:</span></em>Wayne Rasband and Ulf  Dittmer (udittmer at mac.com)&#8221; </span>&#60;![endif]&#8211;&#62;<!--[if supportFields]&#62; &#60;![endif]--> <span style="font-size:x-small;font-family:Arial;"> <em><span lang="EN-GB">”</span></em><span lang="EN-GB">. </span></span></span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;">
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;">exemple pour Zeiss LSM:</p>
<h2 style="margin-top:9px;margin-bottom:3px;"><span lang="EN-GB"><a name="Import_LSM"></a></span></h2>
<p style="margin-top:0;margin-bottom:3px;"><span style="font-size:x-small;font-family:Arial;"><span lang="EN-GB"> <img src="http://www.uhnresearch.ca/facilities/wcif/imagej/import1.jpg" border="0" alt="" width="157" height="194" align="left" /></span></span></p>
<p><strong><span style="font-size:x-small;font-family:Arial;">Import<a name="Import_lei"></a>ing Leica SP2  LEI series</span></strong></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-size:x-small;font-family:Arial;">Leica SP2 experiments are saved as multiple tiff  files in a single folder. This can contain many different series acquired during  the one experiment. <strong>Along with many tiffs, the folder also contains a text  description in the *.TXT files and a Leica proprietary file *.LEI.</strong></span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-size:x-small;font-family:Arial;">Double clicking, drag/dropping of &#8220;<em>File/Open</em>&#8220;&#8216;ing  the *.LEI files should run the <span style="color:#2c2c98;"><em>Leica TIFF Sequence</em></span> plugin. Alternatively, run the menu command &#8220;<em>File/Import/*.TXT Leica SP2  series</em>&#8221; and select the experiment&#8217;s TXT file from the open dialog.</span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-size:x-small;font-family:Arial;">A second dialog will open listing the names of the  series in the folder. The user can then select those that are to be opened. The  appropriate spatial calibration should be read form the txt file and applied to  the image. Leica &#8216;Snapshots&#8217; do not have spatial calibration saved with them.  The entry in the TXT file for the series is written to the &#8216;Notes&#8217; for the image  and can be access by the menu command &#8220;<em>Image/Show Info&#8230;</em>&#8220;.</span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-size:x-small;font-family:Arial;">Folders with large numbers of series in could  potentially generate a dialog so large that some names are &#8220;off screen&#8221;. The  maximum number of series names per column can be set by running the plugin with  the alt-key down.</span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;">
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;">plug-in download:</p>
<p><a href="http://rsbweb.nih.gov/ij/plugins/leica-tiff.html">http://rsbweb.nih.gov/ij/plugins/leica-tiff.html</a></p>
<p><strong>2006/02/16:</strong>First version<br />
<strong>2006/03/02:</strong>Fixed error arising from series with similar names  containing spaces; errors arising from images with Gray LUT.<br />
<strong>2006/03/20:</strong>Filenames listed in multiple columns (max number of rows  per column can be set by running the plugin with the alt-key down.).</p>
<p>&#8212;&#8211;author</p>
<p><strong>Author:</strong> Tony Collins (tonyc at uhnresearch.ca)<br />
Wright Cell Imaging Facility, Toronto, Canada</p>
<p><a href="http://www.uhnresearch.ca/facilities/wcif/software/Plugins/LeicaTIFF.html">http://www.uhnresearch.ca/facilities/wcif/software/Plugins/LeicaTIFF.html</a></p>
<p>Save to plugins folder; compile and run plugin.<br />
The compiled version is bundled with latest WCIF ImageJ bundle along with modified HandleExtraFileTypes.class (courtesy of Greg Jefferis) to allow double-clicking of the *.LEI file to open the sequence.</p>
<p>Code for HandleExtraFileTypes.java from Greg:</p>
<pre>//  Leica SP confocal .lei file handler
        if (name.endsWith(".lei")) {
            int dotIndex = name.lastIndexOf(".");
            if (dotIndex&#62;=0)
                name = name.substring(0, dotIndex);
            path = directory+name+".txt";
            File f = new File(path);
            if(!f.exists()){
                IJ.error("Cannot find the Leica information file: "+path);
                return null;
            }
            IJ.runPlugIn("Leica_TIFF_sequence", path);
            width = IMAGE_OPENED;
            return null;
        }</pre>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<a href="http://support.svi.nl/wiki/HuygensSoftware">Huygens Software</a> reads and writes</p>
<p>The <a href="http://support.svi.nl/wiki/HuygensSoftware">Huygens Software</a> reads and writes (among other → <a href="http://support.svi.nl/wiki/FileFormats">File Formats</a>) <a href="http://support.svi.nl/wiki/TIFF">TIFF</a> series with Leica style numbering if there are more <a href="http://support.svi.nl/wiki/MultiChannel">channels</a> (different wavelength), slices or frames (in a <a href="http://support.svi.nl/wiki/TimeSeries">Time Series</a>) than in a simple <a href="http://support.svi.nl/wiki/NumberedTiff">Numbered Tiff</a> series.</p>
<p>An image of four slices and two frames is named with Leica style numbering as follows:</p>
<table border="0" cellpadding="5" bgcolor="#f8f8ef">
<tbody>
<tr>
<td>
<pre>c_t00_z000.tif
c_t00_z001.tif
c_t00_z002.tif
c_t00_z003.tif
c_t01_z000.tif
c_t01_z001.tif
c_t01_z002.tif
c_t01_z003.tif</pre>
</td>
</tr>
</tbody>
</table>
<p>And an image sTCh of four slices, three frames and two channels:</p>
<pre>sTCh_t00_z000_ch00.tif
sTCh_t00_z000_ch01.tif
sTCh_t00_z001_ch00.tif
sTCh_t00_z001_ch01.tif
sTCh_t00_z002_ch00.tif
sTCh_t00_z002_ch01.tif
sTCh_t00_z003_ch00.tif
sTCh_t00_z003_ch01.tif
sTCh_t01_z000_ch00.tif
sTCh_t01_z000_ch01.tif
sTCh_t01_z001_ch00.tif
sTCh_t01_z001_ch01.tif
sTCh_t01_z002_ch00.tif
sTCh_t01_z002_ch01.tif
sTCh_t01_z003_ch00.tif
sTCh_t01_z003_ch01.tif
sTCh_t02_z000_ch00.tif
sTCh_t02_z000_ch01.tif
sTCh_t02_z001_ch00.tif
sTCh_t02_z001_ch01.tif
sTCh_t02_z002_ch00.tif
sTCh_t02_z002_ch01.tif
sTCh_t02_z003_ch00.tif
sTCh_t02_z003_ch01.tif
------------

-----------------------quelques ressources des centres
<a href="http://www-ijpb.versailles.inra.fr/fr/lcc/fichiers/equip-sp2.htm"><span class="a">http://www-ijpb.versailles.inra.fr/fr/lcc/fichiers/equip-sp2.htm</span></a>
<a href="http://www-ijpb.versailles.inra.fr/fr/lcc/fichiers/pdf/instruction-utilisation-SP2.pdf">http://www-ijpb.versailles.inra.fr/fr/lcc/fichiers/pdf/instruction-utilisation-SP2.pdf</a>

<a href="http://www.itg.uiuc.edu/ms/equipment/microscopes/lscm.htm">http://www.itg.uiuc.edu/ms/equipment/microscopes/lscm.htm</a>
<a href="http://www.itg.uiuc.edu/ms/equipment/microscopes/sop_light_microscopes/leica_user_lcs_lite/InstallationLCSLite.zip">leica LCS lite</a>

<a href="http://microscopy.unc.edu/How-to/leicasp2/default-viewing.html">http://microscopy.unc.edu/How-to/leicasp2/default-viewing.html</a>

<a href="http://ijm2.ijm.jussieu.fr/imagerie/fichiers">http://ijm2.ijm.jussieu.fr/imagerie/fichiers</a></pre>
<table style="height:99px;" border="0" cellspacing="5" width="205">
<tbody>
<tr valign="top">
<td></td>
<td></td>
</tr>
<tr valign="top">
<td></td>
<td></td>
</tr>
<tr valign="top">
<td></td>
<td></td>
</tr>
<tr valign="top">
<td></td>
<td></td>
</tr>
</tbody>
</table>
]]></content:encoded>
</item>
<item>
<title><![CDATA[MRIcro  et autres freeware surface or volume rendering ]]></title>
<link>http://stef2cnrs.wordpress.com/2008/06/03/mricro-freeware/</link>
<pubDate>Tue, 03 Jun 2008 03:54:00 +0000</pubDate>
<dc:creator>stef2cnrs</dc:creator>
<guid>http://stef2cnrs.wordpress.com/2008/06/03/mricro-freeware/</guid>
<description><![CDATA[Introduction This page describes how to create volume renderings using my free MRIcro software. You]]></description>
<content:encoded><![CDATA[<p><span style="font-family:Arial,Helvetica;font-size:medium;"><strong>Introduction</strong> </span><a href="http://www.sph.sc.edu/comd/rorden/render.html#Index"></a></p>
<p>This page describes how to create volume renderings using my free <a href="http://www.sph.sc.edu/comd/rorden/mricro.html">MRIcro</a> software. You can learn a lot about the brain by viewing axial, coronal and sagittal slices. However, it is often useful to display lesion location on the rendered surface of the brain. Just as each individual has unique finger prints, each brain has a unique sulcal pattern. SPM&#8217;s spatial normalization adjusts the size and alignment of the MRI scan, but it does not deliver a precise sulcal match -such an algorithm would create many local distortions (just as an algorithm that attempted to normalize fingerprints from individuals with very different patterns would require many distortions). Volume rendering allows the viewer to grasp the sulcal pattern of the brain, and see lesions in relation to common landmarks. A second advantage for displaying a lesion on a rendered image is that you can specify how &#8216;deep&#8217; to search beneath the surface to display a lesion, and in this way you can show the cortical damage without the underlying damage to the white matter Note that only showing lesions near the brain&#8217;s surface can also be misleading, as it can hide deeper damage. Therefore, it is often best to present surface renderings in conjunction with stereotactically aligned slices.</p>
<p>There are two popular ways to render objects in 3D. <strong>Surface rendering</strong> treats the object as having a surface of a uniform colour. In surface rendering, shading is used to show the location of a light source &#8211; with some regions illuminated while other regions are darker due to shadows. <a href="http://www.isi.uu.nl/people/michael/vr.htm">VolumeJ</a> is an excellent example of a surface renderer. The benefit of surface rendering is that it is generally very fast &#8211; <span style="color:#008000;"><strong>you only need to manipulate the points on the surface rather than every single voxel.</strong></span></p>
<p>On the other hand, <strong>Volume rendering</strong> is a technique used to display a <a title="3D projection" href="http://en.wikipedia.org/wiki/3D_projection">2D projection</a> of a 3D discretely <a title="Sampling (signal processing)" href="http://en.wikipedia.org/wiki/Sampling_%28signal_processing%29">sampled</a> <a title="Data set" href="http://en.wikipedia.org/wiki/Data_set">data set</a>.</p>
<p>A typical 3D data set is a group of 2D slice images acquired by a <a class="mw-redirect" title="Computed axial tomography" href="http://en.wikipedia.org/wiki/Computed_axial_tomography">CT</a> or <a title="Magnetic resonance imaging" href="http://en.wikipedia.org/wiki/Magnetic_resonance_imaging">MRI</a> scanner. Usually these are acquired in a regular pattern (e.g., one slice every millimeter) and usually have a regular number of image <a title="Pixel" href="http://en.wikipedia.org/wiki/Pixel">pixels</a> in a regular pattern. This is an example of a regular volumetric grid, with each volume element, or <a title="Voxel" href="http://en.wikipedia.org/wiki/Voxel">voxel</a> represented by a single value that is obtained by sampling the immediate area surrounding the voxel.</p>
<p>To render a 2D projection of the 3D data set, one first needs to define a <a title="Virtual camera" href="http://en.wikipedia.org/wiki/Virtual_camera">camera</a> in space relative to the volume. Also, one needs to define the opacity and color of every voxel. This is usually defined using an <strong><a title="RGBA color space" href="http://en.wikipedia.org/wiki/RGBA_color_space">RGBA</a></strong> (for red, green, blue, alpha) transfer function that defines the RGBA value for every possible voxel value.</p>
<div class="thumb tright">
<div class="thumbinner" style="width:252px;"><a class="image" title="Volume rendered CT scan of a forearm with different colour schemes for muscle, fat, bone, and blood." href="http://en.wikipedia.org/wiki/Image:CTWristImage.png"><br />
</a></div>
</div>
<p>A volume may be viewed by extracting surfaces of equal values from the volume and rendering them as <a title="Polygon mesh" href="http://en.wikipedia.org/wiki/Polygon_mesh">polygonal meshes</a> or by rendering the volume directly as a block of data. The <a title="Marching cubes" href="http://en.wikipedia.org/wiki/Marching_cubes">Marching Cubes</a> algorithm is a common technique for extracting a surface from volume data.</p>
<p>On the other hand, <strong>volume rendering</strong> examines the intensity of the objects. So darker tissues (e.g. sulci) appear darker than brighter tissue. Finally, <strong>hybrid</strong> rendering allows the user to combine these two techniques &#8211; first computing a volume rendering and then highlighting regions based on illumination. For example, my software can create volume, surface or combined volume and surface renderings. The images created by <a href="http://www.sph.sc.edu/comd/rorden/mricro.html">MRIcro</a> below illustrates these techniques. The left-most image is a volume rendering, the middle image is a surface rendering, and the image on the right is a hybird.</p>
<p><img src="http://www.sph.sc.edu/comd/rorden/rendert.jpg" alt="" width="567" height="156" /></p>
<table border="0">
<tbody>
<tr>
<td>Surface rendering is by far the most popular approach         to rendering objects. One reason for this is that surface         rendering can be much quicker than volume rendering (as         only the vertexes need to be recomputed following a         rotation, while in volume rendering every voxel must be         recomputed). However, surface rendering typically has         several disadvantages compared to volume rendering:</p>
<ul>
<li>It requires high quality scan and excellent skull                 extraction to show clean edges.</li>
<li>Surface color does not reflect underlying tissue                 (unless texture maps are used).</li>
<li>To get sharp edges, the gray matter is typically                 eroded, creating an inaccurate image of brain                 size.</li>
</ul>
<p>The third point is illustrated on the image on the         right. Note that with a high air/surface threshold is         required to show nice sulcal definition in the surface         renderings. However, at these high values the gray matter         has been stripped from the image. In contrast, low signal         information enhances the definition of sulci for volume         renderings.</td>
<td><img src="http://www.sph.sc.edu/comd/rorden/surface.gif" alt="" width="178" height="231" /></td>
</tr>
</tbody>
</table>
<p>Most rendering tools add perspective: closer items appear larger than more distant items. Perspective is a strong monocular cue for depth, so this technique creates a powerful illusion of depth. However, in some situations, it is helpful to have perspective free images (&#8216;orthographic rendering&#8217;). Orthographic rendering has a couple of advantages: it it can be quicker and it can allow a region to remain a constant size in different views. MRIcro is an orthographic renderer.</p>
<p><img src="http://www.sph.sc.edu/comd/rorden/ortho.gif" alt="" width="473" height="171" /></p>
<p><span style="color:#ff0000;">One word of caution:</span> Be careful about judging left and right with rendered views. My software retains the left-and right of the image. This is particularly confusing with the coronal view when the head is facing toward you. When we see people facing us, we expect their left to be on our right. With my viewer, their left is on your left.</p>
<p><a name="Install"></a><span style="font-family:Arial,Helvetica;font-size:medium;"><strong>Installing MRIcro</strong> </span> <a href="http://www.sph.sc.edu/comd/rorden/render.html#Index"><span style="font-family:Arial;font-size:x-small;">Return to Index</span></a></p>
<p>The main <a href="http://www.sph.sc.edu/comd/rorden/mricro.html#Installation">MRIcro manual</a> describes how to download and install MRIcro. The software comes with a sample image of the brain.</p>
<p><a name="Create"></a><span style="font-family:Arial,Helvetica;font-size:medium;"><strong>Creating a rendered image</strong> </span> <a href="http://www.sph.sc.edu/comd/rorden/render.html#Index"><span style="font-family:Arial;font-size:x-small;">Return to Index</span></a></p>
<p>Rendering an image with MRIcro is very straightforward. Load the image you wish to view (use the &#8216;Open&#8217; command in the file menu). Finally, press the button labelled &#8217;3D&#8217;. You will see a new window that allows you to adjust the air/surface threshold (which selects the minimum brightness which will be counted as part of your volume) as well as the surface depth (how many voxels beneath the surface are averaged to determine the surface intensity).</p>
<p><img src="http://www.sph.sc.edu/comd/rorden/instruct.gif" alt="" width="700" height="660" /></p>
<table border="0">
<tbody>
<tr>
<td>Most rendering tools require very high quality scans         (such as the MRI scan above, which came from a single         individual who was scanned 27 times). As noted earlier,         surface rendering tools in particular have problems with         the low resolution or average contrast images that are         typically found in the clinic. Fortunately, MRIcro works         very well with clinical quality scans. The figures on the         right come from single fast scans from a clinical scanner         (the whole MPRAGE sequences required 6 minutes with         Siemens 1.5T). The image on the left shows a stroke         patient.</td>
<td><img src="http://www.sph.sc.edu/comd/rorden/negrender.jpg" alt="" width="218" height="218" /></td>
<td><span style="font-family:Arial,Helvetica;font-size:medium;"> </span></td>
<td><img src="http://www.sph.sc.edu/comd/rorden/cut.jpg" alt="" width="256" height="256" /></td>
</tr>
</tbody>
</table>
<p>The images above on the right shows a &#8216;free rotation&#8217; with a cutaway through the skull. When you select the free rotation view, a new set of controls appear that allow you to select the azimuth and elevation of your viewpoint. A 3D cube illustrates the selected viewpoint &#8211; with a crosshair depicting the position of the nose. You can also use the mouse to drag the cube to your desired viewpoint. Finally, the &#8216;free rotation&#8217; selection allows you to select a &#8216;cutout&#8217; region to allow you to view inside the surface of the image.</p>
<p><a name="Yoke"></a><span style="font-family:Arial,Helvetica;font-size:medium;"><strong>Yoking Images</strong> </span> <a href="http://www.sph.sc.edu/comd/rorden/render.html#Index"><span style="font-family:Arial;font-size:x-small;">Return to Index</span></a></p>
<p><a href="http://www.sph.sc.edu/comd/rorden/mricro.html">MRIcro</a> is specifically designed to help the user locate and identify the ridges and folds (gyri and sulci) of the human brain. These are often difficult to identify given 2D slices of the brain. By running two copies of my software, you can select a landmark on a rendered view and see the corresponding location on a 3D image (as shown below, note you need to have &#8216;Yoke&#8217; checked [highlighted in green]).</p>
<p><img src="http://www.sph.sc.edu/comd/rorden/yokerend.gif" alt="" width="624" height="252" /></p>
<p><a name="Overlay"></a><span style="font-family:Arial,Helvetica;font-size:medium;"><strong>Overlays</strong> </span> <a href="http://www.sph.sc.edu/comd/rorden/render.html#Index"><span style="font-family:Arial;font-size:x-small;">Return to Index</span></a></p>
<p>MRIcro can also display Overlay images &#8211; the figures below illustrate overlays. Typically, these are statistical maps generated by SPM, VoxBo or Activ2000 which show functional regions (computed from PET, SPECT or fMRI scans). I have a web page dedicated to loading <a href="http://www.sph.sc.edu/comd/rorden/overlay.html">overlays</a> with MRIcro.</p>
<p>For volume rendering, you must then make sure the &#8216;Overlay ROI/Depth&#8217; checkbox is checked. The number next to this check box allows you to specify how deep beneath the surface the software will look for a ROI or Overlay (in voxels). A small value means you will only see surface cortical activations/lesions, while a large value will allow you to see deep activations. For example, in the image on the left below, a skull-stripped brain image was loaded and then a functional map was overlaid.</p>
<table border="0">
<tbody>
<tr>
<td><img src="http://www.sph.sc.edu/comd/rorden/depth.gif" alt="" width="434" height="194" /></td>
<td>Left: functional results can be overlayed. Adjusting         the depth value allows you to visualise surface or deep         activity/lesions.</td>
</tr>
</tbody>
</table>
<p>It is important to mention that MRIcro&#8217;s renderings of objects below the brain&#8217;s surface are viewpoint dependent. This is illustrated in the figures below. Both regions of interest (lesions) and overlays are mapped based on the viewer&#8217;s line of sight. This is very different from mri3dX, which computes the location of objects based on the surface normal (essentially, mri3dX computes a line of sight perpendicular to the plane of the surface). Each of these approaches has its benefits and costs &#8211; both are correct, but lead to different results. Note that the location of subcortical objects appears to move when viewpoint changes in MRIcro. On the other hand, deep objects will appear greatly magnified with mri3dX. The rendered image of a brain (above, right) illustrates this difference. Here MRIcro is showing a very deep lesion near the center of the brain. The lesion appears at a different location in each image (SPMers call this a &#8216;glass brain&#8217; view). A very deep object like this would appear much larger in mri3dX.</p>
<table border="0">
<tbody>
<tr>
<td><img src="http://www.sph.sc.edu/comd/rorden/viewpoint.gif" alt="" width="461" height="135" /></td>
<td><img src="http://www.sph.sc.edu/comd/rorden/deep.gif" alt="" width="131" height="131" /></td>
</tr>
</tbody>
</table>
<p><a name="BET"></a><span style="font-family:Arial,Helvetica;font-size:medium;"><strong>Brain Extraction</strong> </span> <a href="http://www.sph.sc.edu/comd/rorden/render.html#Index"><span style="font-family:Arial;font-size:x-small;">Return to Index</span></a></p>
<p>In order to create high quality images of the brain&#8217;s surface, you need to strip away the scalp. This is a challenging problem. My software comes with Steve Smith&#8217;s automated Brain Extraction Tool <a href="http://www.fmrib.ox.ac.uk/analysis/research/bet/">[BET]</a>, (for citations: Smith, SM (2002) Fast robust automated brain extraction, Human Brain Mapping, 17, 143-155). BET is usually able to accurately extract brain images very effectively. To use BET, you simply click on &#8216;Skull strip image [for rendering]&#8216; from the &#8216;Etc&#8217; menu. You then select the image you want to convert, and give a name for the new stripped image. If you have trouble brain stripping an image, try these techniques:</p>
<ul>
<li>You can adjust BET&#8217;s fractional intensity threshold. The         default is 0.50. Lower numbers lead to smoother brains         and a larger estimate of brain size.</li>
<li>BET starts stripping an image from the center of         &#8220;gravity&#8221; of the volume (think of intensity as         mass). If the COG of your head image is not near the         centre of the brain, you may have a problem. This is         particularly a problem with clinical images that show         large portions of the neck. To clip excess slices from an         image, choose MRIcro&#8217;s &#8216;Save as [clipped/format]&#8216;         function and set the number of low and high slices you         wish to clip <a href="http://www.sph.sc.edu/comd/rorden/mritut.html#Normalize">(clipping is         described in stage 1, Step 1 of my normalization         tutorial)</a>.</li>
</ul>
<p><a name="saltnoise"></a><span style="font-family:Arial,Helvetica;font-size:medium;"><strong>Object Extraction</strong> </span> <a href="http://www.sph.sc.edu/comd/rorden/render.html#Index"><span style="font-family:Arial;font-size:x-small;">Return to Index</span></a></p>
<table border="0">
<tbody>
<tr>
<td>The Brain Extraction Tool described in the previous         section is useful for removing a brain from the         surrounding scalp. How about removing other objects &#8211; for         example BET will not work if you wish to extract the         image of a torso from surrounding speckle noise. Most         scans show a bit of &#8216;speckle&#8217; in the air surrounding an         object (also known as &#8216;salt and pepper noise&#8217;. Most of         the time, you can simply adjust the MRIcro&#8217;s <a href="http://www.sph.sc.edu/comd/rorden/render.html#Create">&#8216;air/surface&#8217; threshold</a> to eliminate         noise. However, sometimes spikes of noise are impossible         to eliminate without eroding the surface of the object         you want to image. To help, MRIcro (1.36 or later)         includes a tool to eliminate air speckles.</p>
<ul>
<li>Load the image and adjust the contrast (often                 choosing &#8216;Contrast autobalance&#8217; [Fn5] does a good                 job, but this often does not work for <a href="http://www.sph.sc.edu/comd/rorden/faq.html#CT">CT scans</a>).</li>
<li>Choose &#8216;Remove air speckles&#8217; from the &#8216;Etc&#8217; menu.</li>
<li>Adjust the &#8216;Air/Surface threshold&#8217; so that most                 noise appers as isolated pixels, while the object                 you want to extract is virtually all green.</li>
<li>Set the Erode and Dilate cycles &#8211; usually values                 of 2-3 for each is about right.</li>
<li>Press &#8216;Go&#8217; and name your new file.</li>
</ul>
</td>
<td><img src="http://www.sph.sc.edu/comd/rorden/despeckle1.gif" alt="" width="340" height="303" /></td>
</tr>
</tbody>
</table>
<p>To understand the settings of this command, consider the stages MRIcro uses to despeckle an image. First, consider an image with a few air speckles (figure A below, note a few red speckles in the air). MRIcro first smooths the image by finding the mean of the voxel and the 6 voxels that share a surface with it (B). This usually attenuates any speckles (a median filter would be better, but is much slower). Second, only voxels brighter than the user specified threshold are included in a mask (C). Third, a number of passes of erosion are conducted (D). During each pass, a voxel is eroded if 3 or more of its immediate neighbors are not part of the mask. Fourth, the mask is grown for the number of dilate cycles (E). During each dilation pass, a voxel is grown if any of its immediate neighbors is part of a mask. Note that any cluster of voxels completely eliminated during erosion does not regrow &#8211; thus eliminating most noise speckles. Finally, the voxels from the original image are inserted into the masked region (F)<br />
<img src="http://www.sph.sc.edu/comd/rorden/despeckle2.gif" alt="" width="636" height="218" /></p>
<table border="0">
<tbody>
<tr>
<td>The images to the right show how this technique can         be used to effectively extract bone from a CT of an <a href="http://radiology.uiowa.edu/downloads/">ankle</a>.         The right panel shows a standard rendering of the image         using a air/surface threshold that shows the bone and         hides the surrounding tissue. Note that the ends of the         bones are not visible. On the right we see the same image         after object extraction (threshold 110, 2 erode cycles, 2         dilate cycles). The extracted rendering appears much         clearer than the original.</td>
<td><img src="http://www.sph.sc.edu/comd/rorden/ankle.jpg" alt="" width="362" height="128" /></td>
</tr>
</tbody>
</table>
<p><a name="MIP"></a><span style="font-family:Arial,Helvetica;font-size:medium;"><strong>Maximum Intensity Projections [MIP]</strong> </span> <a href="http://www.sph.sc.edu/comd/rorden/render.html#Index"><span style="font-family:Arial;font-size:x-small;">Return to Index</span></a></p>
<table border="0">
<tbody>
<tr>
<td valign="top">So far this web page has described         MRIcro&#8217;s two primary rendering techniques: volume and         surface rendering. However, MRIcro 1.37 and later add a         third technique: the maximum intensity projection. This         technique simply plots the brightest voxel in the path of         a ray traversing the image. The result is a flat looking         image that looks a bit like a 2D plain film XRay. This         technique is typically a poor choice for most images. The         exception is some CAT scans and angiograms. In this case,         the MIP is able to identify bright objects embedded         inside another object. The images at the right show an <a href="http://www.sph.sc.edu/comd/rorden/render.html#Sample">MR angiogram</a> of my brain (this image         shows an axial view of my circle of willis) and a CT scan         of a <a href="http://radiology.uiowa.edu/downloads/">wrist</a> (note the bright metal pin). To create a MIP, simply         select press the &#8216;MIP&#8217; button in MRIcro&#8217;s render window.</td>
<td><img src="http://www.sph.sc.edu/comd/rorden/mip.gif" alt="" width="286" height="278" /></td>
</tr>
</tbody>
</table>
<p><a name="Sample"></a><span style="font-family:Arial,Helvetica;font-size:medium;"><strong>Sample Datasets</strong> </span> <a href="http://www.sph.sc.edu/comd/rorden/render.html#Index"><span style="font-family:Arial;font-size:x-small;">Return to Index</span></a></p>
<p>Here are some large sample datasets. The CT scan is perfect for surface renderings, and allows you to change the air/surface threshold to either see the skin or bone as the image surface. This image demonstrates that MRIcro&#8217;s rendering can be equally effective with CT scans. Additional images can be on the web. Some nice data sets are <a href="http://radiology.uiowa.edu/downloads/">a knee</a>, <a href="http://neuroimage.usc.edu/phantoread.html">a skull (with EEG leads attached)</a>, <a href="http://www.volren.org/">a bonsai tree, an aneurysm, a foot, a lobster</a>, a <a href="http://www.anthro.univie.ac.at/virtanth/weber.html">high resolution skull</a>, a <a href="http://www9.cs.fau.de/Persons/Roettger/library/">a fish</a>, and a <a href="http://wwwvis.informatik.uni-stuttgart.de/%7Eengel/pre-integrated/data.html">a teddy bear</a>. All the images I provide for download here have had the voxels outside the object (typically air) set to zero (this improves file compression).</p>
<table border="0">
<tbody>
<tr>
<td><img src="http://www.sph.sc.edu/comd/rorden/ct.jpg" alt="" width="217" height="234" /></td>
<td>This CT scan is from the Chapel Hill Volume Rendering         Test Dataset. The data is from a General Electric CT         scanner at the North Carolina Memorial Hospital. I         cropped the image to 208x256x225 voxels. <a href="http://www.sph.sc.edu/comd/rorden/ct.zip">Shift+click</a> here to download (2.7 Mb).</td>
</tr>
<tr>
<td>A clinical-quality MRI scan of a healthy individual         (1.5T Siemens MPRAGE flip-angle=12-degrees, TR=9.7ms,         TE=4.0ms, 1x1x1mm). This image has 180x256x213 voxels. <a href="http://www.sph.sc.edu/comd/rorden/clinicmr.zip">Shift+click</a> here to download (3.4         Mb). Courtesy of <a href="http://www.nottingham.ac.uk/radiology/paul/">Paul         Morgan</a>.</td>
<td><img src="http://www.sph.sc.edu/comd/rorden/cut.jpg" alt="" width="256" height="256" /></td>
</tr>
<tr>
<td><img src="http://www.sph.sc.edu/comd/rorden/engine.jpg" alt="" width="244" height="200" /></td>
<td>This is a 256x256x110 voxel CT of an engine. This is         a popular public domain image. <a href="http://www.sph.sc.edu/comd/rorden/engine.zip">Shift+click</a> here to download (1.5 Mb).</td>
</tr>
<tr>
<td>As well as CT and MRI scans, MRIcro can also render         high resolution images from laser scanning confocal         microscopy. The latest versions of MRIcro automatically         read BioRad PIC and Zeiss TIF images. <a href="http://www.sph.sc.edu/comd/rorden/confocal.zip">Shift+click</a> to download this         image of a daisy pollen granule from <a href="http://bienemaja.informatik.uni-freiburg.de/pollen/3D_images.html">Olaf         Ronneberger</a> (0.5 Mb).</td>
<td><img src="http://www.sph.sc.edu/comd/rorden/confocal.jpg" alt="" width="124" height="124" /></td>
</tr>
<tr>
<td><img src="http://www.sph.sc.edu/comd/rorden/mouse.jpg" alt="" width="109" height="164" /></td>
<td><a href="http://www.sph.sc.edu/comd/rorden/mouse.zip">Shift+click </a>to download this         MRI scan from a mouse embryo taken 13.5 days post         conception (0.5 Mb). For more details, visit the <a href="http://mouseatlas.caltech.edu/13.5dpc/13.5-index.html">home         page</a> for this project.</td>
</tr>
<tr>
<td><a href="http://www.sph.sc.edu/comd/rorden/angio.zip">Shift+click </a>to download this         MRI arterial angiogram of my brain&#8217;s circle of willis         (0.5 Mb). This scan was acquired with a 0.2&#215;0.2&#215;0.5mm         resolution, then object extracted and rescaled to 0.4mm         isotropic (to reduce download time). (3.0T Philips FFE         flip-angle=20-degrees, TR=32.7ms, TE=3.4ms, &#8217;3DI INFL         HR&#8217;). Courtesy of <a href="http://www.nottingham.ac.uk/radiology/paul/">Paul         Morgan</a> (see his web page for movies of angiograms and         other MRI scans). Amazingly, there is no artificial         contrast. Also, note that the veins have been suppressed.</td>
<td><img src="http://www.sph.sc.edu/comd/rorden/angio.jpg" alt="" width="552" height="260" /></td>
</tr>
</tbody>
</table>
<p><a name="Acknowledge"></a><span style="font-family:Arial,Helvetica;font-size:medium;"><strong>Acknowledgements</strong> </span> <a href="http://www.sph.sc.edu/comd/rorden/render.html#Index"><span style="font-family:Arial;font-size:x-small;">Return to Index</span></a></p>
<p><a href="http://www.tom.womack.net/">Tom Womack</a> devised the rapid surface shading algorithm and gave me a lot of tips (he also compiled the version of BET that I distribute). Krish Singh&#8217;s brilliant <a href="http://www-users.aston.ac.uk/%7Esinghkd/mri3dX/">mri3dX</a> inspired me. Its ability to show viewpoint independent functional data makes it a complimentary tool for visualising the brain. Steve Smith&#8217;s <a href="http://www.fmrib.ox.ac.uk/analysis/research/bet/">BET </a>usually turns skull stripping from a tedious effort to an automated process. <a href="http://homepages.borland.com/efg2lab/Graphics/ThreeDLab.htm">Earl F. Glynn</a> developed the code for computing a matrix based on azimuth and elevation. This elegant tool allows the user to change their viewpoint without having to worry about gimbal lock problems or confusing controls. MRIcro does not use/require DirectX or OpenGL, for great articles on 3D graphics visit <a href="http://www.delphi3d.net/">www.delphi3d.net</a>.</p>
<p><a name="Other"></a><span style="font-family:Arial,Helvetica;font-size:medium;"><strong>Other renderers</strong> </span> <a href="http://www.sph.sc.edu/comd/rorden/render.html#Index"><span style="font-family:Arial;font-size:x-small;">Return to Index</span></a></p>
<p>In addition to MRIcro, a number of freeware programs are available that can display rendered images of the brain (either surface rendering, which treats the surface as a uniform color, or volume rendering, which takes into account the brightness of the material beneath the surface). Both MRIcro and mri3dX inlude Steve Smith&#8217;s BET software for extracting the brain from the rest of the image. For the other programs, you will first need to skull-strip your brain images (e.g. with <a href="http://www.fmrib.ox.ac.uk/analysis/research/bet/">BET</a> or <a href="http://neuroimage.usc.edu/BSE/">BSE</a>).</p>
<table border="0">
<tbody>
<tr>
<td><strong>Name</strong></td>
<td><strong>Description</strong></td>
</tr>
<tr>
<td bgcolor="#c0c0c0"><a href="http://www.fmritools.org/">Activ2000</a><br />
Windows</td>
<td bgcolor="#c0c0c0">Activ2000 for Windows can show         functional activity on a surface rendering.</td>
</tr>
<tr>
<td><a href="http://amide.sourceforge.net/">AMIDE</a><br />
Linux</td>
<td>This Linux software can read Analyze, DICOM and ECAT         images.</td>
</tr>
<tr>
<td bgcolor="#c0c0c0"><a href="http://www.isi.uu.nl/people/michael/vr.htm">ImageJ         with the Volume Rendering plugin</a><br />
Macintosh, Unix, Windows</td>
<td bgcolor="#c0c0c0">Michael Abramoff has added volume         rendering features to Wayne Rasband&#8217;s popular Java-based         ImageJ software. ImageJ can read/write analyze format         using <a href="http://rsb.info.nih.gov/ij/plugins/analyze.html">Guy         Williams&#8217; plugin</a>.</td>
</tr>
<tr>
<td><a href="http://www.j3d.org/tutorials/quick_fix/volume.html">Java         3D Volume Rendering</a><br />
Macintosh, Unix, Windows</td>
<td>Java based volume renderer.</td>
</tr>
<tr>
<td bgcolor="#c0c0c0"><a href="http://www.julius.caesar.de/home/home.html">Julius</a><br />
Unix, Windows</td>
<td bgcolor="#c0c0c0">Volume Rendering Software.</td>
</tr>
<tr>
<td><a href="http://www.cora.nwra.com/Ogle/">OGLE</a><br />
Linux, Windows</td>
<td>Volume rendering of grayscale (continuous intensity)         and RGB (discrete colours) datasets. Ogle is a nice tool         for rendering MRI/CT scans. For example, to view the         clinical MRI scan from my <a href="http://www.sph.sc.edu/comd/rorden/render.html#Sample">Sample         Datasets</a> section, you can double-click on its .ogle         text file (the first time you open a .ogle file, you will         have to tell Windows that you want to open these files         with Ogle). Here is a <a href="http://www.sph.sc.edu/comd/rorden/clinicmr.ogle">sample         .ogle</a> file for the clinical scan. You can also try a         different version of this software named <a href="http://www.uke.uni-hamburg.de/kliniken/neurochirurgie/forschung/it_neurosurg/visualization/ogles/index.en.html">ogleS</a>.</td>
</tr>
<tr>
<td bgcolor="#c0c0c0"><a href="http://www.image.med.osaka-u.ac.jp/member/reza/#MEDAL">MEDAL</a><br />
Windows</td>
<td bgcolor="#c0c0c0">Reza A. Zoroofi&#8217;s freeware for         Windows can create surface renderings of Analyze and         DICOM images.</td>
</tr>
<tr>
<td><a href="http://sig.biostr.washington.edu/projects/MindSeer/index.html">MindSeer</a><br />
Macintosh, Unix, Windows</td>
<td>Java based volume renderer that can overlay statistical maps as well as venous/arterial maps. Can view Analyze, MINC and NIfTI formats.</td>
</tr>
<tr>
<td bgcolor="#c0c0c0"><a href="http://www.aston.ac.uk/lhs/staff/singhkd/mri3dX/index.html">mri3dX</a><br />
Unix</td>
<td bgcolor="#c0c0c0">Krish Singh&#8217;s freeware, which runs on Linux, Mac OSX,         Sun and SGI computers. A basic <a href="http://www.sph.sc.edu/comd/rorden/mri3dtut.html">mri3dX         tutorial</a> is available.</td>
</tr>
<tr>
<td><a href="http://www.cs.utah.edu/%7Ejmk/simian/">Simian</a><br />
Linix, Windows</td>
<td>looks like the future of volume         rendering. Joe Kniss has developed this software that can         take advantage of powerful but low cost GeForce and         Radeon graphics cards. The <a href="http://www.cs.utah.edu/%7Ejmk/simian/img/scatter/gallery-scatter.htm">Translucency         approximation</a> looks pretty stunning.</td>
</tr>
<tr>
<td bgcolor="#c0c0c0"><a href="http://lcni.uoregon.edu/%7Emark/Space_program.html">Space</a><br />
Windows</td>
<td bgcolor="#c0c0c0">Lovely interface with nice looking rendering.</td>
</tr>
<tr>
<td><a href="http://www.vets.ucar.edu/software/volsh/">Volsh</a><br />
Unix</td>
<td>NCAR Volume Rendering Software.</td>
</tr>
<tr>
<td bgcolor="#c0c0c0"><a href="http://www.gris.uni-tuebingen.de/areas/scivis/volren/software/software.html">VolRenApp</a><br />
Windows</td>
<td bgcolor="#c0c0c0">Volume and surface rendering.</td>
</tr>
<tr>
<td><a href="http://www.volume-one.org/">Volume-One</a><br />
Windows</td>
<td>This software can also use an         extension for viewing <a href="http://www.ut-radiology.umin.jp/people/masutani/dTV_frame-e.htm">diffusion         tensor imaging data</a>.</td>
</tr>
<tr>
<td bgcolor="#c0c0c0"><a href="http://www9.cs.fau.de/Persons/Roettger/#Volume">V^3</a><br />
Windows, Linux, MacOSX</td>
<td bgcolor="#c0c0c0">Accelerated volume rendering (requires a GeForce video card).</td>
</tr>
<tr>
<td><a href="http://rsb.info.nih.gov/ij/plugins/volume-viewer.html">ImageJ         with the Volume Rendering plugin</a><br />
Macintosh, Unix, Windows</td>
<td>Kai Uwe Barthel has added volume         rendering features to Wayne Rasband&#8217;s popular Java-based         ImageJ software. ImageJ can read/write analyze format         using <a href="http://rsb.info.nih.gov/ij/plugins/analyze.html">Guy         Williams&#8217; plugin</a>.</td>
</tr>
<tr>
<td bgcolor="#c0c0c0"><a href="http://www.nephrology.iupui.edu/imaging/voxx/index.htm">Voxx</a><br />
Windows</td>
<td bgcolor="#c0c0c0">Volume rendering tailored for confocal imaging         (requires a GeForce video card, with fast         hardware-accelerated rendering). Includes the ability to         superimpose different image protocols of the same volume         (e.g. with one protein-type shown in red and the other         shown as green).</td>
</tr>
<tr>
<td><a href="http://www.mitk.net/">MITK</a><br />
Windows</td>
<td>Medical Imaging ToolKit, developed by Dr. Tian and colleagues.</td>
</tr>
</tbody>
</table>
]]></content:encoded>
</item>
<item>
<title><![CDATA[importer_zeiss_leica_olympus_nikon_autres]]></title>
<link>http://stef2cnrs.wordpress.com/2008/02/28/importer_zeiss_leica_olympus_nikon_autres/</link>
<pubDate>Thu, 28 Feb 2008 22:37:14 +0000</pubDate>
<dc:creator>stef2cnrs</dc:creator>
<guid>http://stef2cnrs.wordpress.com/2008/02/28/importer_zeiss_leica_olympus_nikon_autres/</guid>
<description><![CDATA[ImageJ primarily uses TIFF as the image file format. The menu command “File/Save” will save in TIFF]]></description>
<content:encoded><![CDATA[<p><span style="font-family:Arial;font-size:x-small;"><span><strong>ImageJ primarily uses TIFF as the image  file format. </strong>The menu command “<em>File/Save</em>” will save in TIFF format. The  menu command “<em>File/Open</em>” will open TIFF files and import a number of  other common file formats (e.g. JPEG, GIF, BMP, PGM, PNG). These natively  supported files can also be opened by drag-and-dropping the file on to the  ImageJ toolbar. MetaMorph *.STK files can also be opened directly.</span></span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><em><strong><span style="font-family:Arial;font-size:x-small;"><span>Several more file formats can be  imported via ImageJ plugins (e.g. Biorad, Noran, Zeiss, Leica). When you  subsequently save these files within ImageJ they will no longer be in their  native format. Bear this in mind; ensure you do not overwrite original data.</span></span></strong></em></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-family:Arial;font-size:x-small;"><span>There are further file formats such as  PNG, PSD (Photoshop), ICO (Windows icon), PICT, which can be imported via the  menu command <em>“<span style="color:navy;">File/Import/*.PNGJimi Reader…</span></em></span>&#60;!&#8211;[if supportFields]&#62;<span> XE &#8220;<em><span style="color:navy;">Jimi Reader…:</span></em>Wayne Rasband and Ulf  Dittmer (udittmer at mac.com)&#8221; &#60;![endif]&#8211;&#62;</span></span><!--[if supportFields]&#38;gt; &#38;lt;![endif]--> <span style="font-family:Arial;font-size:x-small;"> <em><span>”</span></em><span>. </span></span></p>
<p>La collection de plug-in pour imageJ pour importer:</p>
<p><a href="http://www.uhnresearch.ca/facilities/wcif/imagej/importing_image_files.htm#Import_other">http://www.uhnresearch.ca/facilities/wcif/imagej/importing_image_files.htm#Import_other</a></p>
<p>I<strong>MPORTING LEICA files:</strong></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-family:Arial;font-size:x-small;">Leica SP2 experiments are saved as multiple tiff  files in a single folder. This can contain many different series acquired during  the one experiment. Along with many tiffs, the folder also contains a text  description in the *.TXT files and a Leica proprietary file *.LEI.</span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-family:Arial;font-size:x-small;">Double clicking, drag/dropping of &#8220;<em>File/Open</em>&#8220;&#8216;ing  the *.LEI files should run the </span><span style="color:#2c2c98;"><em>Leica TIFF Sequence</em></span> plugin. Alternatively, run the menu command &#8220;<em>File/Import/*.TXT Leica SP2  series</em>&#8221; and select the experiment&#8217;s TXT file from the open dialog.</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-family:Arial;font-size:x-small;">A second dialog will open listing the names of the  series in the folder. The user can then select those that are to be opened. The  appropriate spatial calibration should be read form the txt file and applied to  the image. Leica &#8216;Snapshots&#8217; do not have spatial calibration saved with them.  The entry in the TXT file for the series is written to the &#8216;Notes&#8217; for the image  and can be access by the menu command &#8220;<em>Image/Show Info&#8230;</em>&#8220;.</span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-family:Arial;font-size:x-small;">Folders with large numbers of series in could  potentially generate a dialog so large that some names are &#8220;off screen&#8221;. The  maximum number of series names per column can be set by running the plugin with  the alt-key down.</span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;">
<h2><span><a title="Import_other" name="Import_other"></a><span style="font-weight:400;font-style:normal;font-variant:normal;"> </span>Other Import functions</span></h2>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;">
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-family:Arial;font-size:x-small;">These import plugins import the image  data as well as meta-data.</span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-family:Arial;font-size:x-small;"><em><span style="color:navy;">Leica SP- </span> </em><span>Leica multi-colour images are tiffs. They can be opened as  multiple files to a a single stack. Each channel can be imported separately by  adding &#8216;c1&#8242; or c2&#8242; etc. as the import string. Alternatively, they can be all  imported to the one stack then separated by de-interleaving them (<span style="color:#000080;"><em>&#8220;Plugins/Stack  &#8211; shuffling/Deinterleave</em></span>&#8220;).</span></span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;">
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;">
<p class="MsoNormal" style="margin-top:0;margin-bottom:3px;"><span style="font-family:Arial;font-size:x-small;"><em><span style="color:navy;">Olympus Fluoview  &#8211; </span></em><span>available from <a href="http://rsb.info.nih.gov/ij/plugins/ucsd.html"> http://rsb.info.nih.gov/ij/plugins/ucsd.html</a>. Not bundled with the current  download. WCIF collection de plug-in.<br />
</span></span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[micro-manager]]></title>
<link>http://stef2cnrs.wordpress.com/2008/02/28/micro-manager/</link>
<pubDate>Thu, 28 Feb 2008 22:30:05 +0000</pubDate>
<dc:creator>stef2cnrs</dc:creator>
<guid>http://stef2cnrs.wordpress.com/2008/02/28/micro-manager/</guid>
<description><![CDATA[http://micro-manager.org/ Une collection de plug-in pour imageJ: http://www.uhnresearch.ca/facilitie]]></description>
<content:encoded><![CDATA[<p><a href="http://micro-manager.org/">http://micro-manager.org/</a></p>
<p>Une collection de plug-in pour imageJ:</p>
<p><a href="http://www.uhnresearch.ca/facilities/wcif/imagej/">http://www.uhnresearch.ca/facilities/wcif/imagej/ </a></p>
<p>Installation d&#8217;imageJ , aussi issu du monde mac (NIH image; 70000lignes pascal)  sur macOSX:</p>
<p><a href="http://rsb.info.nih.gov/ij/docs/install/osx.html">http://rsb.info.nih.gov/ij/docs/install/osx.html</a></p>
]]></content:encoded>
</item>

</channel>
</rss>
