<div dir="auto">Hello Brad,<div dir="auto"><br></div><div dir="auto">That is a very nice example indeed. I will try it and see if that is sufficient for my purposes.</div><div dir="auto">As far as I understood the python multithreading, spawning new threads can create quite a bit over overhead compared to say, OpenMP.<br></div><div dir="auto"><br></div><div dir="auto">If I wanted to translate your example to ITK/C++ would a direct translation be the most sensible thing to do, or does ITK have smarter methods for that?</div><div dir="auto"><br></div>Jonas<br><div class="gmail_extra" dir="auto"><br><div class="gmail_quote">On May 22, 2017 16:46, "Lowekamp, Bradley (NIH/NLM/LHC) [C]" <<a href="mailto:blowekamp@mail.nih.gov">blowekamp@mail.nih.gov</a>> wrote:<br type="attribution"><blockquote class="quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">



<div style="word-wrap:break-word">
Hello Jonas,
<div><br>
</div>
<div>So ITK ( and therefore SimpleITK ), by default multi-thread each filter by default. This enables efficient processing of larger images.</div>
<div><br>
</div>
<div>However, for your task you can run a large number of filters concurrently. Fortunately, SimpleITK does support concurrent execution of ITK filters with light weight python Threads! This is an uncommon feature for Python libraries and is a distinguishing
 feature of SimpleITK.</div>
<div><br>
</div>
<div>I have been planning on writing an example or notebook on this.  Here is an efficient and compact code to accomplish your task as I understand it:</div>
<div><br>
</div>
<div>
<div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures">import SimpleITK as sitk</span></div>
</div>
<div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures">
<div style="margin:0px;line-height:normal"><span style="font-variant-ligatures:no-common-ligatures">from multiprocessing.pool import ThreadPool</span></div>
<div style="margin:0px;line-height:normal"><span style="font-variant-ligatures:no-common-ligatures"><br>
</span></div>
<div style="margin:0px;line-height:normal"><span style="font-variant-ligatures:no-common-ligatures">p = ThreadPool()</span></div>
<div><span style="font-variant-ligatures:no-common-ligatures"><br>
</span></div>
<div><span style="font-variant-ligatures:no-common-ligatures"># <a href="https://github.com/blowekamp/itkOBBLabelMap/tree/master/test/data" target="_blank">https://github.com/<wbr>blowekamp/itkOBBLabelMap/tree/<wbr>master/test/data</a></span></div>
</span></div>
<div>
<div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures">img = sitk.ReadImage(“~/Downloads/<wbr>jelly_beans.png")</span></div>
<div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures">seg = sitk.ReadImage(“~/Downloads/<wbr>jelly_beans_seg.png”)</span></div>
</div>
<div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"><br>
</span></div>
<div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures">shapeStats = sitk.<wbr>LabelShapeStatisticsImageFilte<wbr>r()</span></div>
<div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures">shapeStats.Execute(seg)</span></div>
<div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures"><br>
</span></div>
<div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures">
<div style="margin:0px;line-height:normal"><span style="font-variant-ligatures:no-common-ligatures">def extract_bb(img, shape_stats_filter, label):</span></div>
<div style="margin:0px;line-height:normal"><span style="font-variant-ligatures:no-common-ligatures">    [x,y,xsize,ysize]=shape_stats_<wbr>filter.GetBoundingBox(label)</span></div>
<div style="margin:0px;line-height:normal"><span style="font-variant-ligatures:no-common-ligatures">    return sitk.RegionOfInterest(img,<wbr>size=[xsize,ysize],index=[x,y]<wbr>)</span></div>
</span></div>
<div><br>
</div>
<div>
<div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo">
<span style="font-variant-ligatures:no-common-ligatures">bbimg_list = p.map(lambda label: extract_bb(img, shapeStats, label), shapeStats.GetLabels())</span></div>
</div>
<div><br>
</div>
<div><br>
</div>
<div>This uses advance concepts of multi-threading, closures, mapping, and thread pools. I think it is the integration of SimpleITK any Python at its bests!</div>
<div><br>
</div>
<div>One tweak which could be made to this code is to create a RegionOfInterestImageFilter object, and explicitly set it’s number of threads to 1, so that it is not multi-threaded.</div>
<div><br>
</div>
<div>A related not is the recently Oriented Bounding Box computation has been added to ITK’s LabelShape objects and filters, this is starting to get propagated into SimpleITK now. This can be used for a similar purpose but with a resample image filter
 to change the orientation of the separate object.</div>
<div><br>
</div>
<div>Enjoy!</div>
<div>Brad</div>
<div><br>
<div>
<blockquote type="cite"><div class="elided-text">
<div>On May 22, 2017, at 5:59 AM, Jonas Teuwen <<a href="mailto:jonasteuwen@gmail.com" target="_blank">jonasteuwen@gmail.com</a>> wrote:</div>
<br class="m_5204697272368616392Apple-interchange-newline">
</div><div><div class="elided-text">
<div dir="ltr">
<div>
<div>
<div>
<div>Dear all,<br>
<br>
</div>
Currently I have SimpleITK code to extract patches from a 3D medical image to train a neural network with. I do this with CropImageFilter and check if they are on the edge or not, and pad if necessary.<br>
<br>
</div>
Currently this is done offline, so speed is not really an issue, however, I would like to do this online now, so load the image and mask, and return the patches. If I want to extract many small patches, about 1000 out of a large image (~3000x3000x50 or so)
 is there any reason why I would not use OpenMP instead of ITK's possibilities? I do not have a good understanding of the multithreading capabilities yet, so any pointers would be great.<br>
<br>
</div>
Best,<br>
</div>
Jonas Teuwen<br>
<div>
<div><br>
</div>
</div>
</div></div><div class="quoted-text">
______________________________<wbr>_______<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at<br>
<a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/<wbr>opensource/opensource.html</a><br>
<br>
Kitware offers ITK Training Courses, for more information visit:<br>
<a href="http://www.kitware.com/products/protraining.php" target="_blank">http://www.kitware.com/<wbr>products/protraining.php</a><br>
<br>
Please keep messages on-topic and check the ITK FAQ at:<br>
<a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www.itk.org/Wiki/ITK_<wbr>FAQ</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://public.kitware.com/mailman/listinfo/insight-users" target="_blank">http://public.kitware.com/<wbr>mailman/listinfo/insight-users</a><br>
</div></div>
</blockquote>
</div>
<br>
</div>
</div>

</blockquote></div><br></div></div>