<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/244712</link>
    <title>MATLAB Central Newsreader - Horn Detection in Leukaemia Images</title>
    <description>Feed for thread: Horn Detection in Leukaemia Images</description>
    <language>en-us</language>
    <copyright>&amp;copy;1994-2012 by MathWorks, Inc.</copyright>
    <webmaster>webmaster@mathworks.com</webmaster>
    <generator>MATLAB Central Newsreader</generator>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <ttl>60</ttl>
    <image>
      <title>MathWorks</title>
      <url>http://www.mathworks.com/images/membrane_icon.gif</url>
    </image>
    <item>
      <pubDate>Tue, 17 Feb 2009 15:55:05 -0500</pubDate>
      <title>Horn Detection in Leukaemia Images</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/244712#628889</link>
      <author>Lee Borland</author>
      <description>Hi all,&lt;br&gt;
&lt;br&gt;
I have an interesting problem that is currently proving difficult to solve.&lt;br&gt;
&lt;br&gt;
I have an image (&lt;a href=&quot;http://i41.tinypic.com/10i71o2.jpg)&quot;&gt;http://i41.tinypic.com/10i71o2.jpg)&lt;/a&gt; containing leukaemia infected red blood cells. My task is to firstly detect and count the biconcave cells in my image, which I have done. The second is to detect the presence of horn like features (far left, bottom left). Following their detection, a count of the number of horns on each cell needs to be conducted.&lt;br&gt;
&lt;br&gt;
Im struggling to complete this as the horns are all unique. Can anyone shed some light on this issue?&lt;br&gt;
&lt;br&gt;
Thanks in advance for any help.</description>
    </item>
    <item>
      <pubDate>Tue, 17 Feb 2009 16:39:01 -0500</pubDate>
      <title>Re: Horn Detection in Leukaemia Images</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/244712#628907</link>
      <author>Image Analyst</author>
      <description>Lee Borland:&lt;br&gt;
Well you've done the hard part - finding and isolating the cells (not easy in this kind of image, particularly when the overlap).  Now all you have to do is to analyze each cell for the perimeter squared divided by the area.  This will distinguish between your cells with smooth boundaries and those with the &quot;horns.&quot;&lt;br&gt;
Good luck,&lt;br&gt;
ImageAnalyst&lt;br&gt;
P.S. Thanks for posting the image first.</description>
    </item>
    <item>
      <pubDate>Tue, 17 Feb 2009 16:47:04 -0500</pubDate>
      <title>Re: Horn Detection in Leukaemia Images</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/244712#628910</link>
      <author>Lee Borland</author>
      <description>Thank you for your reply. I used CircularHough_SL, created by Tao Peng to detect my diameters.&lt;br&gt;
&lt;br&gt;
Your advise is very helpful. Can you advise me as to how I would calculate perimeter and area? regionprops is it?&lt;br&gt;
&lt;br&gt;
And this will detect the presence or my horn structures. Still undecided as to counting the number of horns present. Seems to me a difficult challenge.&lt;br&gt;
&lt;br&gt;
Thanks again</description>
    </item>
    <item>
      <pubDate>Tue, 17 Feb 2009 19:44:53 -0500</pubDate>
      <title>Re: Horn Detection in Leukaemia Images</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/244712#628964</link>
      <author>ImageAnalyst</author>
      <description>Lee Borland:&lt;br&gt;
regionprops will give you the perimeter, area, and solidity.  In a&lt;br&gt;
loop, go through all the blobs examining the ratio (4*Perimeter^2)/&lt;br&gt;
(pi*Area) and the solidity measurement.  There will be some number for&lt;br&gt;
smooth contour blobs, that will distinguish the two.  For example the&lt;br&gt;
ratio &amp;lt; 5 for smooth blobs and is &amp;gt; 5 for &quot;horny&quot; blobs.  You may also&lt;br&gt;
see some value were you can distinguish the two kinds of blobs based&lt;br&gt;
on the solidity value.&lt;br&gt;
&lt;br&gt;
If counting the number of blobs is important, then that's tougher&lt;br&gt;
since not all of the horns appear on the perimeter - some appear in&lt;br&gt;
the middle of the blob.  If it were just the perimeter then you could&lt;br&gt;
erode a few pixels (to get rid of horns) then dilate out a bit more&lt;br&gt;
than you eroded and find the boundary of that (using bwboundaries).&lt;br&gt;
That would give a line (the outline) a little bigger than the main&lt;br&gt;
bulk of the blob and then you could run around this to see where a&lt;br&gt;
horn intersected it.  However you may still have horns on the back&lt;br&gt;
side of the blob that you can't see so I'm wondering if you can't&lt;br&gt;
really get what you need with out the horn count.  Maybe it's not&lt;br&gt;
necessary.  If it is, you're out of luck since you can't see the back&lt;br&gt;
side and getting the ones in the middle will be tough.  You may have&lt;br&gt;
to fall back to manual inspection where a user enters the number of&lt;br&gt;
horns they see.  And of course even this won't tell you how many horns&lt;br&gt;
are on the back side and thus are unseen in the image, so you'll never&lt;br&gt;
really have the true number anyway.&lt;br&gt;
Regards,&lt;br&gt;
ImageAnalyst</description>
    </item>
    <item>
      <pubDate>Tue, 17 Feb 2009 20:45:04 -0500</pubDate>
      <title>Re: Horn Detection in Leukaemia Images</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/244712#628973</link>
      <author>Pete </author>
      <description>This looks tricky.&lt;br&gt;
&lt;br&gt;
How well is your current detection working?  And how automated do you need your analysis to be?  If your project is to develop an automated method, it looks difficult but interesting.  If your project is more concerned with using the results, a computer-assisted manual or semi-automated method might be a better option.&lt;br&gt;
&lt;br&gt;
If you don't mind it being mostly manual, you could write something simple to allow you to click each horn / cell, leave a coloured marker there, then automatically count up the markers corresponding to each cell.  I suppose that wouldn't necessarily be much better than printing each image and using coloured pens, except that you could automate the processing of the results or save them.&lt;br&gt;
&lt;br&gt;
Somewhat more advanced would be to click each cell, then use a region growing / marker controlled watershed segmentation method to find the interior of the cells.  I think at some point you will need a labeled image in which the interior of each cell has a separate label - only then can you use regionprops to do what Image Analyst describes.  You can also trace the perimeter coordinates and look for abrupt changes in direction to try to detect the horns occurring on the exterior, although they'll need to be distinguished from overlaps...&lt;br&gt;
&lt;br&gt;
If you can solve these problems, the step to full automation is simplified to a matter of finding a good centre point so the user doesn't have to click.  But even without that analysis should be speeded up by a lot.&lt;br&gt;
&lt;br&gt;
There are a lot of options, but the best one depends upon how deep into the problem you want to get...&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&quot;Lee Borland&quot; &amp;lt;lborland01@qub.ac.uk&amp;gt; wrote in message &amp;lt;gnemko$pnv$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; Hi all,&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; I have an interesting problem that is currently proving difficult to solve.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; I have an image (&lt;a href=&quot;http://i41.tinypic.com/10i71o2.jpg)&quot;&gt;http://i41.tinypic.com/10i71o2.jpg)&lt;/a&gt; containing leukaemia infected red blood cells. My task is to firstly detect and count the biconcave cells in my image, which I have done. The second is to detect the presence of horn like features (far left, bottom left). Following their detection, a count of the number of horns on each cell needs to be conducted.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Im struggling to complete this as the horns are all unique. Can anyone shed some light on this issue?&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Thanks in advance for any help.&lt;br&gt;
&lt;br&gt;
&quot;Lee Borland&quot; &amp;lt;lborland01@qub.ac.uk&amp;gt; wrote in message &amp;lt;gnemko$pnv$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; Hi all,&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; I have an interesting problem that is currently proving difficult to solve.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; I have an image (&lt;a href=&quot;http://i41.tinypic.com/10i71o2.jpg)&quot;&gt;http://i41.tinypic.com/10i71o2.jpg)&lt;/a&gt; containing leukaemia infected red blood cells. My task is to firstly detect and count the biconcave cells in my image, which I have done. The second is to detect the presence of horn like features (far left, bottom left). Following their detection, a count of the number of horns on each cell needs to be conducted.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Im struggling to complete this as the horns are all unique. Can anyone shed some light on this issue?&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Thanks in advance for any help.</description>
    </item>
    <item>
      <pubDate>Tue, 17 Feb 2009 22:41:01 -0500</pubDate>
      <title>Re: Horn Detection in Leukaemia Images</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/244712#629006</link>
      <author>Lee Borland</author>
      <description>My current detection is working well on other images, see below:&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://i40.tinypic.com/1huu1e.jpg&quot;&gt;http://i40.tinypic.com/1huu1e.jpg&lt;/a&gt; (a little overdetection)&lt;br&gt;
&lt;a href=&quot;http://i44.tinypic.com/34nrss2.jpg&quot;&gt;http://i44.tinypic.com/34nrss2.jpg&lt;/a&gt; (perfect)&lt;br&gt;
&lt;br&gt;
I have not yet attempted on the image attached in my original post as my attention has switched to the horn shaped objects. In terms of automation, I would like to aim for an end result of an automated process but as this is only a masters project and not a phd type researching post, i am happy to initially place importance on manual completion. I have thoughts in my head of my final result being incorporated into a GUI. Would you advise this?&lt;br&gt;
&lt;br&gt;
I like your idea on perimeter / area, Image Analysist, thank you for that. Although it may seem crude, I really am attempting for a best estimation type result. For example, if i were to say count the horns in the cell centre, add to the horns found on the cell edge then double the result for the unseen rear of the cell.&lt;br&gt;
&lt;br&gt;
I also like the click method. Although manual, it would indeed solve the issue. Can you advise me as to how I would attempt this? Once I finish clicking the horns I could have matlab then double the result, outputting a horn estimation.&lt;br&gt;
&lt;br&gt;
What I am now unsure about is that in order to complete analysis in regionprops, I need to complete some segmentation and labelling. As you can see in the images above, I have avoided segmentation through Hough Transform circle detection. Prior to reaching this point i used watershed, blob analysis etc but it really did get tricky. Hough transform detection proved easier in the end. I suppose i'll need to go back to alternatives for horn detection.&lt;br&gt;
&lt;br&gt;
Thank you both for your help.</description>
    </item>
    <item>
      <pubDate>Wed, 18 Feb 2009 06:56:02 -0500</pubDate>
      <title>Re: Horn Detection in Leukaemia Images</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/244712#629073</link>
      <author>Pete </author>
      <description>If you happen to know Java pretty well and are willing to commit to the more manual option, you could check out ImageJ - which is freely available, making it easier to share your work.  I've written ImageJ plugins to do a few semi-automated tasks - I prefer it to MATLAB for making nice user interfaces when the user will have to click a lot, but it is much, much easier and faster to design and test out more complicated new algorithms in MATLAB.  In any case, there are lots of ImageJ plugins available for download on the website - they might at least give you some inspiration.&lt;br&gt;
&lt;br&gt;
Unless I really preferred Java programming to MATLAB though, I'd probably stick with the latter because the fiddly and annoying problems of automated detection are usually more interesting than the fiddly and annoying problems of user interface design.  If you have time, you can make a MATLAB user interface in GUIDE - if not, you can use functions like uigetfile to make things a bit easier for the user at the command line.&lt;br&gt;
&lt;br&gt;
The functions getpts from the Image Processing Toolbox can be used to, well, get points.  I guess you could prompt the user three times: once to click on normal cells, once to click on cells with horns, once to click on horns (assuming an average number of horns per cell is ok).  You can overlay markers on the image using the line or plot functions.&lt;br&gt;
&lt;br&gt;
getline would allow the user to draw around a cell instead.&lt;br&gt;
&lt;br&gt;
The results on your detection images look pretty good, although I wonder how the other image would fare.  My images (also cells, but different ones) haven't contained interesting features that are consistently enough shaped for me to rely on the Hough transform, but I didn't explore it for very long and maybe it is more powerful than I realise.&lt;br&gt;
&lt;br&gt;
Maybe Image Analyst, or anyone else, has better segmentation suggestions.  I briefly tested a couple of techniques I knew on your images, with the familiar result that they seem to almost worked well.... but, frustratingly, not quite well enough, because some of the borders between cells are quite indistinct.</description>
    </item>
    <item>
      <pubDate>Wed, 18 Feb 2009 22:41:01 -0500</pubDate>
      <title>Re: Horn Detection in Leukaemia Images</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/244712#629288</link>
      <author>Lee Borland</author>
      <description>Thanks for the reply Pete. Im sorry to say, my coding experience in general is quite limited so I think I will have to stick to Matlab. The GUIDE seems quite intuitive though, Ive heard good things about it. Ive looked into uigetfile since you mentioned it aswell. Can you advise as to how I could make use this?&lt;br&gt;
&lt;br&gt;
Hmmm...I think getpts could be the way forward here, will try tomorrow. I know what you mean about the cell borders proving difficult. Could I ask which functions you used? Just to compare the reults to mine. The Hough Transform actually suprised me with its detection powers, working well to date. Are you using alternative segmentation methods in your project?&lt;br&gt;
&lt;br&gt;
Anyone else have segmentation suggestions? I can post the original versions of the images I have implemented the Hough Transform on if that would help.</description>
    </item>
    <item>
      <pubDate>Thu, 19 Feb 2009 09:38:01 -0500</pubDate>
      <title>Re: Horn Detection in Leukaemia Images</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/244712#629391</link>
      <author>Pete </author>
      <description>Hi there,&lt;br&gt;
&lt;br&gt;
I tried creating a gradient magnitude image after different levels of Gaussian smoothing to see how strong the edges looked... they are pretty good, but not all of the time.  I also tried a wavelet transform in case it happened to make things any clearer.  Then I tried thresholding, and some morphological operations.  All of them provided interesting alternative ways to view the image, but none suggested (to me) a really straightforward solution.&lt;br&gt;
&lt;br&gt;
The Hough transform surprised me too - it looks pretty good, but I wonder how you can take it further.  It could perhaps suggest cell centres to use as seed locations for region growing.&lt;br&gt;
&lt;br&gt;
I've sent you an email.&lt;br&gt;
&lt;br&gt;
-----&lt;br&gt;
Regarding the GUI stuff.... uigetfile just gives a slightly nicer way for the user to input a filename, rather than having to type it (and possibly the file path) at the command line.&lt;br&gt;
[fname, fpath] = uigetfile;&lt;br&gt;
im = imread(fullfile(fpath, fname));&lt;br&gt;
&lt;br&gt;
There  are other options in uigetfile that let you refine it a bit, such as applying a filter so that only files with valid (image) extensions are selectable.&lt;br&gt;
&lt;br&gt;
Which is only really to suggest that if you don't have time for a full GUI, you can use functions like that to quickly make things a bit simpler for users who feel uncomfortable with controlling everything from the command line.  You can also try dialog boxes, like&lt;br&gt;
&amp;nbsp;&amp;nbsp;n_cells = inputdlg('Input the number of cells');&lt;br&gt;
although sometimes this can be more distracting than helpful.... and you'll need to deal with the possibility the user will enter something silly.... but that's for later.</description>
    </item>
    <item>
      <pubDate>Sat, 21 Feb 2009 05:01:18 -0500</pubDate>
      <title>Re: Horn Detection in Leukaemia Images</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/244712#629835</link>
      <author>Sven </author>
      <description>&quot;Pete &quot; &amp;lt;pete.dot.bankhead@btinternet.dot.com&amp;gt; wrote in message &amp;lt;gngbe2$gg$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; If you happen to know Java pretty well and are willing to commit to the more manual option, you could check out ImageJ - which is freely available, making it easier to share your work.  I've written ImageJ plugins to do a few semi-automated tasks - I prefer it to MATLAB for making nice user interfaces when the user will have to click a lot, but it is much, much easier and faster to design and test out more complicated new algorithms in MATLAB.  In any case, there are lots of ImageJ plugins available for download on the website - they might at least give you some inspiration.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Unless I really preferred Java programming to MATLAB though, I'd probably stick with the latter because the fiddly and annoying problems of automated detection are usually more interesting than the fiddly and annoying problems of user interface design.  If you have time, you can make a MATLAB user interface in GUIDE - if not, you can use functions like uigetfile to make things a bit easier for the user at the command line.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; The functions getpts from the Image Processing Toolbox can be used to, well, get points.  I guess you could prompt the user three times: once to click on normal cells, once to click on cells with horns, once to click on horns (assuming an average number of horns per cell is ok).  You can overlay markers on the image using the line or plot functions.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; getline would allow the user to draw around a cell instead.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; The results on your detection images look pretty good, although I wonder how the other image would fare.  My images (also cells, but different ones) haven't contained interesting features that are consistently enough shaped for me to rely on the Hough transform, but I didn't explore it for very long and maybe it is more powerful than I realise.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Maybe Image Analyst, or anyone else, has better segmentation suggestions.  I briefly tested a couple of techniques I knew on your images, with the familiar result that they seem to almost worked well.... but, frustratingly, not quite well enough, because some of the borders between cells are quite indistinct.&lt;br&gt;
&lt;br&gt;
Hi Lee,&lt;br&gt;
&lt;br&gt;
Just a couple of suggestions that may improve your (already quite good) results using hough circle detection.&lt;br&gt;
For the overdetection problem, I think you could tune things a little by looking at the radius of each circle that has been detected. It seems that you're generally getting up to 3 concentric circles:&lt;br&gt;
1. The &quot;inner&quot; radius (I'm not sure if this is a required result or not)&lt;br&gt;
2. The &quot;outer&quot; radius&lt;br&gt;
3. Overdetected circles.&lt;br&gt;
If it's safe to assume the cells in your image will all be around the same size, I think you could trim away the overdetected circles by creating a histogram of these radii found in your initial pass. You should see a plateau at each of the levels (1) and (2) above, which might help you decide automatically which are the oversampled circles. Other logic may be something as simple as &quot;if there are 3 or more concentric circles detected, discard all but the smallest two&quot;.&lt;br&gt;
&lt;br&gt;
As for the interface side of things, my suggestion is to think about how many images you will be processing, and how you comparatively value the data (ie, results of cell counts, horn counts etc) vs the implementation (how clean and reusable your code and gui is).&lt;br&gt;
&lt;br&gt;
If you need to process, say, 100 images and they're already saved as .jpgs with standard file names, then you will probably attack the problem differently compared to needing to process 2000 images one by one as they are being made. For the former, you might just loop over your detection code for each image, and ask for manual input to count the horns - and be done in an afternoon. For the latter case, you might get more value out of spending the extra time on creating a nice gui for the user, as well as an auto-horn-detector.&lt;br&gt;
&lt;br&gt;
It looks like an interesting problem. Please keep us updated as to how things progress.&lt;br&gt;
&lt;br&gt;
Cheers,&lt;br&gt;
Sven.</description>
    </item>
    <item>
      <pubDate>Fri, 10 Sep 2010 09:55:04 -0400</pubDate>
      <title>Re: Horn Detection in Leukaemia Images</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/244712#778453</link>
      <author>Ursa Major</author>
      <description>&quot;Pete &quot; &amp;lt;pete.dot.bankhead@btinternet.dot.com&amp;gt; wrote in message &amp;lt;gngbe2$gg$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; If you happen to know Java pretty well and are willing to commit to the more manual option, you could check out ImageJ - which is freely available, making it easier to share your work.  I've written ImageJ plugins to do a few semi-automated tasks - I prefer it to MATLAB for making nice user interfaces when the user will have to click a lot, but it is much, much easier and faster to design and test out more complicated new algorithms in MATLAB.  In any case, there are lots of ImageJ plugins available for download on the website - they might at least give you some inspiration.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Unless I really preferred Java programming to MATLAB though, I'd probably stick with the latter because the fiddly and annoying problems of automated detection are usually more interesting than the fiddly and annoying problems of user interface design.  If you have time, you can make a MATLAB user interface in GUIDE - if not, you can use functions like uigetfile to make things a bit easier for the user at the command line.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; The functions getpts from the Image Processing Toolbox can be used to, well, get points.  I guess you could prompt the user three times: once to click on normal cells, once to click on cells with horns, once to click on horns (assuming an average number of horns per cell is ok).  You can overlay markers on the image using the line or plot functions.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; getline would allow the user to draw around a cell instead.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; The results on your detection images look pretty good, although I wonder how the other image would fare.  My images (also cells, but different ones) haven't contained interesting features that are consistently enough shaped for me to rely on the Hough transform, but I didn't explore it for very long and maybe it is more powerful than I realise.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Maybe Image Analyst, or anyone else, has better segmentation suggestions.  I briefly tested a couple of techniques I knew on your images, with the familiar result that they seem to almost worked well.... but, frustratingly, not quite well enough, because some of the borders between cells are quite indistinct.</description>
    </item>
    <item>
      <pubDate>Fri, 10 Sep 2010 09:58:04 -0400</pubDate>
      <title>Writing ImageJ plugins</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/244712#778456</link>
      <author>Ursa Major</author>
      <description>Hi Pete,&lt;br&gt;
&lt;br&gt;
I came across that you know how to write ImageJ plugins, could you guide me on a fast-track development?&lt;br&gt;
&lt;br&gt;
Thank you.</description>
    </item>
    <item>
      <pubDate>Fri, 10 Sep 2010 10:16:43 -0400</pubDate>
      <title>Re: Writing ImageJ plugins</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/244712#778458</link>
      <author>ImageAnalyst</author>
      <description>On Sep 10, 5:58&#160;am, &quot;Ursa Major&quot; &amp;lt;loveblessi...@yahoo.com&amp;gt; wrote:&lt;br&gt;
&amp;gt; Hi Pete,&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; I came across that you know how to write ImageJ plugins, could you guide me on a fast-track development?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Thank you.&lt;br&gt;
&lt;br&gt;
----------------------------------------------------------------------------&lt;br&gt;
Ursa Major:&lt;br&gt;
This doesn't seem to be related to MATLAB.&lt;br&gt;
However you can go here for the official tutorial:&lt;br&gt;
&lt;a href=&quot;http://www.imagingbook.com/index.php?id=102&quot;&gt;http://www.imagingbook.com/index.php?id=102&lt;/a&gt;&lt;br&gt;
By the way, I got it just by clicking through the obvious links on the&lt;br&gt;
ImageJ web site - not too hard to find.  ;-)</description>
    </item>
  </channel>
</rss>

