Team:Aachen/Notebook/Software/Measurarty
From 2014.igem.org
(→Measurarty - An Introduction) |
(→Statistical Region Merging (SRM)) |
||
Line 114: | Line 114: | ||
[2] Boltz S. Statistical region merging matlab implementation; 2014. Available | [2] Boltz S. Statistical region merging matlab implementation; 2014. Available | ||
from: [http://www.mathworks.com/matlabcentral/fileexchange/25619-image-segmentation-using-statistical-region-merging] . Accessed 12 Dec 2013. | from: [http://www.mathworks.com/matlabcentral/fileexchange/25619-image-segmentation-using-statistical-region-merging] . Accessed 12 Dec 2013. | ||
+ | |||
+ | === SRM Clustering === | ||
+ | |||
+ | In our project we used Statistical Region Merging for clustering. In contrast to other algorithms, like ''k-means'' this approach is highly deterministic. | ||
+ | For our purposes we only have one SRM run for $Q=256$. | ||
+ | |||
+ | In Matlab we use the previously mentioned code from Matlab Fileexchange. | ||
+ | For our Qt-based GUI we implemented the SRM method ourselves. | ||
+ | |||
+ | The SRM clustering reduces the amount of different colors in the image and therefore eases the recognition of parts belonging together. | ||
+ | |||
+ | <html> | ||
+ | <div class="codediv"> | ||
+ | <pre><code class="matlab"> | ||
+ | Qlevel = 256; | ||
+ | [maps,images]=singlesrm(double(image),Qlevel); | ||
+ | </code></pre> | ||
+ | </div> | ||
+ | </html> | ||
{{Team:Aachen/BlockSeparator}} | {{Team:Aachen/BlockSeparator}} |
Revision as of 00:02, 17 October 2014
|
|
|
|
|
|