From magicimaging at gmail.com Sun Jan 1 04:38:40 2017 From: magicimaging at gmail.com (Y T) Date: Sun, 1 Jan 2017 04:38:40 -0500 Subject: [ITK-users] what is the best way to do TriangleMeshToBinaryImageFilter on a region In-Reply-To: References: Message-ID: Subject: what is the best way to do TriangleMeshToBinaryImageFilter on a region I want to show a small local mesh in a big volume, but I encounter following issue when Info Image is big (meshCastFilter->SetInfoImage(meshVisualInfor) = 512x512x1300) even the mesh is a small locally generated mesh (100x50x50), the TriangleMeshToBinaryImageFilter filter take ~1 second to finish. If try following ExtractImageFilter code to get a small region of original full volume (meshVisualInfor) TriangleMeshToBinaryImageFilter will crash at m_InfoImage->Update(); Is there good way to do regional TriangleMeshToBinaryImageFilter ? Thanks and happy 2017! typedef itk::ExtractImageFilter< OutputImageType, OutputImageType > ExtractImageFilter; ExtractImageFilter::Pointer roifilter = ExtractImageFilter::New(); roifilter->SetDirectionCollapseToSubmatrix(); roifilter->SetInput(meshVisualInfor); roifilter->SetExtractionRegion(region); roifilter->Update(); meshCastFilter->SetInfoImage(roifilter->GetOutput()); //meshVisualInfor work but take ~1 second On Sat, Dec 31, 2016 at 10:55 AM, wrote: > You are not allowed to post to this mailing list, and your message has > been automatically rejected. This mailing list requires subscription > before you can post any messages. For subscription information, go to: > http://www.itk.org/mailman/listinfo/insight-users > > If you think that your messages are being rejected in error, contact > the mailing list owner at insight-users-owner at itk.org. > > > > ---------- Forwarded message ---------- > From: Leon Tan > To: insight-users at itk.org > Cc: > Date: Sat, 31 Dec 2016 08:55:26 -0700 (MST) > Subject: what is the best way to do TriangleMeshToBinaryImageFilter on a > region > I want to show a small local mesh in a big volume, but I encounter > following > issue > > when Info Image is big (meshCastFilter->SetInfoImage(meshVisualInfor) = > 512x512x1300) even the mesh is a small locally generated mesh (100x50x50), > the TriangleMeshToBinaryImageFilter filter take ~1 second to finish. > > If try following ExtractImageFilter code to get a small region of original > full volume (meshVisualInfor) TriangleMeshToBinaryImageFilter will crash > at > m_InfoImage->Update(); > > Is there good way to do regional TriangleMeshToBinaryImageFilter ? > Thanks and happy 2017! > > > typedef itk::ExtractImageFilter< OutputImageType, OutputImageType > > ExtractImageFilter; > ExtractImageFilter::Pointer roifilter = ExtractImageFilter::New(); > roifilter->SetDirectionCollapseToSubmatrix(); > roifilter->SetInput(meshVisualInfor); > roifilter->SetExtractionRegion(region); > roifilter->Update(); > meshCastFilter->SetInfoImage(roifilter->GetOutput()); //meshVisualInfor > work > but take ~1 second > > > > -- > View this message in context: http://itk-insight-users. > 2283740.n2.nabble.com/what-is-the-best-way-to-do- > TriangleMeshToBinaryImageFilter-on-a-region-tp7589525.html > Sent from the ITK Insight Users mailing list archive at Nabble.com. > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From questionleon at gmail.com Sun Jan 1 05:12:39 2017 From: questionleon at gmail.com (Young Lee) Date: Sun, 1 Jan 2017 03:12:39 -0700 (MST) Subject: [ITK-users] what is the best way to do TriangleMeshToBinaryImageFilter on a region Message-ID: <1483265559490-7589527.post@n2.nabble.com> I want to show a small local mesh in a big volume, but I encounter following issue when Info Image is big (meshCastFilter->SetInfoImage(meshVisualInfor) = 512x512x1300) even the mesh is a small locally generated mesh (100x50x50), the TriangleMeshToBinaryImageFilter filter take ~1 second to finish. If try following ExtractImageFilter code to get a small region of original full volume (meshVisualInfor) TriangleMeshToBinaryImageFilter will crash at m_InfoImage->Update(); Is there good way to do regional TriangleMeshToBinaryImageFilter ? Thanks and happy 2017! typedef itk::ExtractImageFilter< OutputImageType, OutputImageType > ExtractImageFilter; ExtractImageFilter::Pointer roifilter = ExtractImageFilter::New(); roifilter->SetDirectionCollapseToSubmatrix(); roifilter->SetInput(meshVisualInfor); roifilter->SetExtractionRegion(region); roifilter->Update(); meshCastFilter->SetInfoImage(roifilter->GetOutput()); //meshVisualInfor work but take ~1 second -- View this message in context: http://itk-insight-users.2283740.n2.nabble.com/what-is-the-best-way-to-do-TriangleMeshToBinaryImageFilter-on-a-region-tp7589527.html Sent from the ITK Insight Users mailing list archive at Nabble.com. From dzenanz at gmail.com Sun Jan 1 10:44:36 2017 From: dzenanz at gmail.com (=?UTF-8?B?RMW+ZW5hbiBadWtpxIc=?=) Date: Sun, 1 Jan 2017 10:44:36 -0500 Subject: [ITK-users] what is the best way to do TriangleMeshToBinaryImageFilter on a region In-Reply-To: References: Message-ID: Hi Leon, have you tried using RegionOfInterest instead of ExtractImageFilter? Extract is used for changing image dimension, e.g. extracting a 2D slice from a 3D volume. Regards, D?enan On Sun, Jan 1, 2017 at 4:38 AM, Y T wrote: > Subject: what is the best way to do TriangleMeshToBinaryImageFilter on a > region > I want to show a small local mesh in a big volume, but I encounter > following > issue > > when Info Image is big (meshCastFilter->SetInfoImage(meshVisualInfor) = > 512x512x1300) even the mesh is a small locally generated mesh (100x50x50), > the TriangleMeshToBinaryImageFilter filter take ~1 second to finish. > > If try following ExtractImageFilter code to get a small region of original > full volume (meshVisualInfor) TriangleMeshToBinaryImageFilter will crash > at > m_InfoImage->Update(); > > Is there good way to do regional TriangleMeshToBinaryImageFilter ? > Thanks and happy 2017! > > > typedef itk::ExtractImageFilter< OutputImageType, OutputImageType > > ExtractImageFilter; > ExtractImageFilter::Pointer roifilter = ExtractImageFilter::New(); > roifilter->SetDirectionCollapseToSubmatrix(); > roifilter->SetInput(meshVisualInfor); > roifilter->SetExtractionRegion(region); > roifilter->Update(); > meshCastFilter->SetInfoImage(roifilter->GetOutput()); //meshVisualInfor > work > but take ~1 second > > On Sat, Dec 31, 2016 at 10:55 AM, wrote: > >> You are not allowed to post to this mailing list, and your message has >> been automatically rejected. This mailing list requires subscription >> before you can post any messages. For subscription information, go to: >> http://www.itk.org/mailman/listinfo/insight-users >> >> If you think that your messages are being rejected in error, contact >> the mailing list owner at insight-users-owner at itk.org. >> >> >> >> ---------- Forwarded message ---------- >> From: Leon Tan >> To: insight-users at itk.org >> Cc: >> Date: Sat, 31 Dec 2016 08:55:26 -0700 (MST) >> Subject: what is the best way to do TriangleMeshToBinaryImageFilter on a >> region >> I want to show a small local mesh in a big volume, but I encounter >> following >> issue >> >> when Info Image is big (meshCastFilter->SetInfoImage(meshVisualInfor) = >> 512x512x1300) even the mesh is a small locally generated mesh >> (100x50x50), >> the TriangleMeshToBinaryImageFilter filter take ~1 second to finish. >> >> If try following ExtractImageFilter code to get a small region of original >> full volume (meshVisualInfor) TriangleMeshToBinaryImageFilter will >> crash at >> m_InfoImage->Update(); >> >> Is there good way to do regional TriangleMeshToBinaryImageFilter ? >> Thanks and happy 2017! >> >> >> typedef itk::ExtractImageFilter< OutputImageType, OutputImageType > >> ExtractImageFilter; >> ExtractImageFilter::Pointer roifilter = ExtractImageFilter::New(); >> roifilter->SetDirectionCollapseToSubmatrix(); >> roifilter->SetInput(meshVisualInfor); >> roifilter->SetExtractionRegion(region); >> roifilter->Update(); >> meshCastFilter->SetInfoImage(roifilter->GetOutput()); //meshVisualInfor >> work >> but take ~1 second >> >> >> >> -- >> View this message in context: http://itk-insight-users.22837 >> 40.n2.nabble.com/what-is-the-best-way-to-do-TriangleMeshToB >> inaryImageFilter-on-a-region-tp7589525.html >> Sent from the ITK Insight Users mailing list archive at Nabble.com. >> >> > > _____________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Kitware offers ITK Training Courses, for more information visit: > http://www.kitware.com/products/protraining.php > > Please keep messages on-topic and check the ITK FAQ at: > http://www.itk.org/Wiki/ITK_FAQ > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/insight-users > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From fisidoro at ethz.ch Sun Jan 1 17:40:00 2017 From: fisidoro at ethz.ch (D'Isidoro Fabio) Date: Sun, 1 Jan 2017 22:40:00 +0000 Subject: [ITK-users] FW: ExtractImageFilter.Update() inside loop works until 24th iteration Message-ID: <50B858FB5F53124F9E32314E5C1B4094446CE653@MBX212.d.ethz.ch> Update: generalizing the problem, I figured out that any time the final filter is updated inside a loop, after a certain number of iterations the Update() does not work anymore and filter.GetOutput() returns always the same image as the last working iteration. I guess it's a memory issue. This issue happens no matter what the final filter of the pipeline is (I tried with ResampleImageFilter, Writer, ExtractImageFilter), and even when using the filter.InPlaceOn() when possible. This issue happens even if I split the pipeline and avoid connecting its components with SetInput( GetOutput() ). Are filters of a pipeline not supposed to be used in a loop (where, in my case, the given transform changes at any loop)? I guess the issue formulated this way is a common issue. Thank you for your help. Fabio. From: D'Isidoro Fabio Sent: Sonntag, 1. Januar 2017 19:48 To: insight-users at itk.org Subject: ExtractImageFilter.Update() inside loop works until 24th iteration Hallo, I work with ITK Python. I need to explore the domain of an image metric (like in MeanSquaresImageMetric1.cxx) for 2D/3D registration (using RayCastInterpolator). Since the metric works only between 2D/2D or 3D/3D images, I need to convert the generated DRR (SizeX, SizeY, 1) into a 2D image (SizeX, SizeY) with ExtractImageFilter, before metric evaluation. I then pass to the metric the converted 2D DRR as moving image and the 2D fixed image for similarity metric evaluation (with IdentityTransform, and NearestNeighbourInterpolator set for the metric). Metric evaluation is done in a loop within a range of the domain for the transform parameters. For each iteration of the loop (that is, different transforms used for generation of the DRR) the ExtractImageFilter is updated with Update(). The code runs but mysteriously stops working properly at the 24th iteration of the loop for the domain range. After the 24th iteration I figured no new DRR is generated and the metric value keeps constant at the value of the 24th iteration. I tried with input 3D volumes of different sizes and with different ranges for the transform parameters, but the code stops generating new DRRs always after the 24th iteration. The important parts of the code are: interpolatorRayCast = itk.RayCastInterpolateImageFunction[MovingImageType, ScalarType].New() filterRayCast = itk.ResampleImageFilter[MovingImageType, MovingImageType].New() filterRedim = itk.ExtractImageFilter[MovingImageType, FixedImageType].New() ... filterRayCast.SetInput( movingImageReader.GetOutput() ) filterRayCast.SetInterpolator( interpolatorRayCast ) ... filterRedim.SetInput(filterRayCast.GetOutput()) ... for dx in translation_range_x: for dy in translation_range_y: for dz in translation_range_z: ... transformDRR.SetParameters( transform_parameters ) filterRedim.Update() value = metric.GetValue() I believe the pipeline might not be set properly, but I don't know where. In attachment you find the code and the required inputs. Any help would be highly appreciated, thank you! Fabio. -------------- next part -------------- An HTML attachment was scrubbed... URL: From questionleon at gmail.com Mon Jan 2 09:09:27 2017 From: questionleon at gmail.com (Young Lee) Date: Mon, 2 Jan 2017 07:09:27 -0700 (MST) Subject: [ITK-users] what is the best way to do TriangleMeshToBinaryImageFilter on a region In-Reply-To: References: Message-ID: <1483366167327-7589530.post@n2.nabble.com> Thanks for D?enan's suggestion, I tried RegionOfInterestImageFilter but still crash. Looks like there is a bug and following code in itkTriangleMeshToBinaryImageFilter.hxx does not support regional process, zInc = extent[3] - extent[2] + 1; zInc can be huge as for a region m_Size[1] - 1 can be < m_Index[1]. Should it be extent[3] = region.GetUpperIndex()[1]; itk4100\Modules\Core\Mesh\include\itkTriangleMeshToBinaryImageFilter.hxx code // create a similar extent like vtk extent[0] = m_Index[0]; extent[1] = m_Size[0] - 1; extent[2] = m_Index[1]; extent[3] = m_Size[1] - 1; extent[4] = m_Index[2]; extent[5] = m_Size[2] - 1; int zInc = extent[3] - extent[2] + 1; int zSize = extent[5] - extent[4] + 1; My code to try ROI filter typedef itk::RegionOfInterestImageFilter< OutputImageType, OutputImageType > ROIImageFilter; ROIImageFilter::Pointer roifilter = ROIImageFilter::New(); roifilter->SetInput(meshVisualInforVol); roifilter->SetRegionOfInterest(region); roifilter->Update(); meshCastFilter->SetInfoImage(roifilter->GetOutput()); //VisualizingImageType::Pointer visualizing -- View this message in context: http://itk-insight-users.2283740.n2.nabble.com/Re-ITK-users-what-is-the-best-way-to-do-TriangleMeshToBinaryImageFilter-on-a-region-tp7589528p7589530.html Sent from the ITK Insight Users mailing list archive at Nabble.com. From francois.budin at kitware.com Mon Jan 2 11:59:06 2017 From: francois.budin at kitware.com (Francois Budin) Date: Mon, 2 Jan 2017 11:59:06 -0500 Subject: [ITK-users] FW: ExtractImageFilter.Update() inside loop works until 24th iteration In-Reply-To: <50B858FB5F53124F9E32314E5C1B4094446CE653@MBX212.d.ethz.ch> References: <50B858FB5F53124F9E32314E5C1B4094446CE653@MBX212.d.ethz.ch> Message-ID: Hello Fabio, When you say "avoid connecting its components with SetInput(GetOutput())", do you mean that you used the method "DisconnectPipeline()"? Francois On Sun, Jan 1, 2017 at 5:40 PM, D'Isidoro Fabio wrote: > Update: generalizing the problem, I figured out that any time the final > filter is updated inside a loop, after a certain number of iterations the > Update() does not work anymore and filter.GetOutput() returns always the > same image as the last working iteration. I guess it?s a memory issue. This > issue happens no matter what the final filter of the pipeline is (I tried > with ResampleImageFilter, Writer, ExtractImageFilter), and even when using > the filter.InPlaceOn() when possible. This issue happens even if I split > the pipeline and avoid connecting its components with SetInput( GetOutput() > ). > > > > Are filters of a pipeline not supposed to be used in a loop (where, in my > case, the given transform changes at any loop)? > > > > I guess the issue formulated this way is a common issue. > > > > Thank you for your help. > > > > Fabio. > > > > *From:* D'Isidoro Fabio > *Sent:* Sonntag, 1. Januar 2017 19:48 > *To:* insight-users at itk.org > *Subject:* ExtractImageFilter.Update() inside loop works until 24th > iteration > > > > Hallo, > > > > I work with ITK Python. I need to explore the domain of an image metric > (like in MeanSquaresImageMetric1.cxx) for 2D/3D registration (using > RayCastInterpolator). Since the metric works only between 2D/2D or 3D/3D > images, I need to convert the generated DRR (SizeX, SizeY, 1) into a 2D > image (SizeX, SizeY) with ExtractImageFilter, before metric evaluation. I > then pass to the metric the converted 2D DRR as moving image and the 2D > fixed image for similarity metric evaluation (with IdentityTransform, and > NearestNeighbourInterpolator set for the metric). Metric evaluation is done > in a loop within a range of the domain for the transform parameters. For > each iteration of the loop (that is, different transforms used for > generation of the DRR) the ExtractImageFilter is updated with Update(). > > > > The code runs but mysteriously stops working properly at the 24th > iteration of the loop for the domain range. After the 24th iteration I > figured no new DRR is generated and the metric value keeps constant at the > value of the 24th iteration. I tried with input 3D volumes of different > sizes and with different ranges for the transform parameters, but the code > stops generating new DRRs always after the 24th iteration. > > > > The important parts of the code are: > > > > interpolatorRayCast = itk.RayCastInterpolateImageFunction[MovingImageType, > ScalarType].New() > > filterRayCast = itk.ResampleImageFilter[MovingImageType, > MovingImageType].New() > > filterRedim = itk.ExtractImageFilter[MovingImageType, > FixedImageType].New() > > ? > > filterRayCast.SetInput( movingImageReader.GetOutput() ) > > filterRayCast.SetInterpolator( interpolatorRayCast ) > > ? > > filterRedim.SetInput(filterRayCast.GetOutput()) > > ? > > for dx in translation_range_x: > > for dy in translation_range_y: > > for dz in translation_range_z: > > ? > > transformDRR.SetParameters( transform_parameters ) > > > > filterRedim.Update() > > > > value = metric.GetValue() > > > > > > I believe the pipeline might not be set properly, but I don?t know where. > > > > In attachment you find the code and the required inputs. > > > > Any help would be highly appreciated, thank you! > > > > Fabio. > > _____________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Kitware offers ITK Training Courses, for more information visit: > http://www.kitware.com/products/protraining.php > > Please keep messages on-topic and check the ITK FAQ at: > http://www.itk.org/Wiki/ITK_FAQ > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/insight-users > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From fisidoro at ethz.ch Mon Jan 2 12:23:35 2017 From: fisidoro at ethz.ch (D'Isidoro Fabio) Date: Mon, 2 Jan 2017 17:23:35 +0000 Subject: [ITK-users] FW: ExtractImageFilter.Update() inside loop works until 24th iteration In-Reply-To: References: <50B858FB5F53124F9E32314E5C1B4094446CE653@MBX212.d.ethz.ch> Message-ID: <50B858FB5F53124F9E32314E5C1B4094446CE68C@MBX212.d.ethz.ch> No, I did not know this option. I just coded this way: Filter1.Update() Output1 = Filter1.GetOutput() Filter2.SetInput(Output1) Filter2.Update() Output2 = Filter2.GetOutput() Instead of Filter2.SetInput( Filter1.GetOutput() ) Filter2.Update() Fabio From: Francois Budin [mailto:francois.budin at kitware.com] Sent: Montag, 2. Januar 2017 17:59 To: D'Isidoro Fabio Cc: insight-users at itk.org Subject: Re: [ITK-users] FW: ExtractImageFilter.Update() inside loop works until 24th iteration Hello Fabio, When you say "avoid connecting its components with SetInput(GetOutput())", do you mean that you used the method "DisconnectPipeline()"? Francois On Sun, Jan 1, 2017 at 5:40 PM, D'Isidoro Fabio > wrote: Update: generalizing the problem, I figured out that any time the final filter is updated inside a loop, after a certain number of iterations the Update() does not work anymore and filter.GetOutput() returns always the same image as the last working iteration. I guess it?s a memory issue. This issue happens no matter what the final filter of the pipeline is (I tried with ResampleImageFilter, Writer, ExtractImageFilter), and even when using the filter.InPlaceOn() when possible. This issue happens even if I split the pipeline and avoid connecting its components with SetInput( GetOutput() ). Are filters of a pipeline not supposed to be used in a loop (where, in my case, the given transform changes at any loop)? I guess the issue formulated this way is a common issue. Thank you for your help. Fabio. From: D'Isidoro Fabio Sent: Sonntag, 1. Januar 2017 19:48 To: insight-users at itk.org Subject: ExtractImageFilter.Update() inside loop works until 24th iteration Hallo, I work with ITK Python. I need to explore the domain of an image metric (like in MeanSquaresImageMetric1.cxx) for 2D/3D registration (using RayCastInterpolator). Since the metric works only between 2D/2D or 3D/3D images, I need to convert the generated DRR (SizeX, SizeY, 1) into a 2D image (SizeX, SizeY) with ExtractImageFilter, before metric evaluation. I then pass to the metric the converted 2D DRR as moving image and the 2D fixed image for similarity metric evaluation (with IdentityTransform, and NearestNeighbourInterpolator set for the metric). Metric evaluation is done in a loop within a range of the domain for the transform parameters. For each iteration of the loop (that is, different transforms used for generation of the DRR) the ExtractImageFilter is updated with Update(). The code runs but mysteriously stops working properly at the 24th iteration of the loop for the domain range. After the 24th iteration I figured no new DRR is generated and the metric value keeps constant at the value of the 24th iteration. I tried with input 3D volumes of different sizes and with different ranges for the transform parameters, but the code stops generating new DRRs always after the 24th iteration. The important parts of the code are: interpolatorRayCast = itk.RayCastInterpolateImageFunction[MovingImageType, ScalarType].New() filterRayCast = itk.ResampleImageFilter[MovingImageType, MovingImageType].New() filterRedim = itk.ExtractImageFilter[MovingImageType, FixedImageType].New() ? filterRayCast.SetInput( movingImageReader.GetOutput() ) filterRayCast.SetInterpolator( interpolatorRayCast ) ? filterRedim.SetInput(filterRayCast.GetOutput()) ? for dx in translation_range_x: for dy in translation_range_y: for dz in translation_range_z: ? transformDRR.SetParameters( transform_parameters ) filterRedim.Update() value = metric.GetValue() I believe the pipeline might not be set properly, but I don?t know where. In attachment you find the code and the required inputs. Any help would be highly appreciated, thank you! Fabio. _____________________________________ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Kitware offers ITK Training Courses, for more information visit: http://www.kitware.com/products/protraining.php Please keep messages on-topic and check the ITK FAQ at: http://www.itk.org/Wiki/ITK_FAQ Follow this link to subscribe/unsubscribe: http://public.kitware.com/mailman/listinfo/insight-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From dzenanz at gmail.com Mon Jan 2 12:39:26 2017 From: dzenanz at gmail.com (=?UTF-8?B?RMW+ZW5hbiBadWtpxIc=?=) Date: Mon, 2 Jan 2017 12:39:26 -0500 Subject: [ITK-users] what is the best way to do TriangleMeshToBinaryImageFilter on a region In-Reply-To: <1483366167327-7589530.post@n2.nabble.com> References: <1483366167327-7589530.post@n2.nabble.com> Message-ID: Hi Lee, I created a test for the behavior you described (attached). The problem occurred only with multiple calls to Update of TriangleMeshToBinaryImageFilter. Can you review my patch ? Regards, D?enan On Mon, Jan 2, 2017 at 9:09 AM, Young Lee wrote: > > Thanks for D?enan's suggestion, I tried RegionOfInterestImageFilter but > still crash. Looks like there is a bug and following code in > itkTriangleMeshToBinaryImageFilter.hxx does not support regional > process, > zInc = extent[3] - extent[2] + 1; zInc can be huge as for a region > m_Size[1] - 1 can be < m_Index[1]. > > Should it be extent[3] = region.GetUpperIndex()[1]; > > itk4100\Modules\Core\Mesh\include\itkTriangleMeshToBinaryImageFilter.hxx > code > // create a similar extent like vtk > extent[0] = m_Index[0]; > extent[1] = m_Size[0] - 1; > extent[2] = m_Index[1]; > extent[3] = m_Size[1] - 1; > extent[4] = m_Index[2]; > extent[5] = m_Size[2] - 1; > > int zInc = extent[3] - extent[2] + 1; > int zSize = extent[5] - extent[4] + 1; > > > > > > My code to try ROI filter > typedef itk::RegionOfInterestImageFilter< OutputImageType, > OutputImageType > > ROIImageFilter; > ROIImageFilter::Pointer > roifilter = ROIImageFilter::New(); > > roifilter->SetInput( > meshVisualInforVol); > roifilter-> > SetRegionOfInterest(region); > roifilter->Update(); > > meshCastFilter->SetInfoImage(roifilter->GetOutput()); > //VisualizingImageType::Pointer visualizing > > > > -- > View this message in context: http://itk-insight-users. > 2283740.n2.nabble.com/Re-ITK-users-what-is-the-best-way-to-do- > TriangleMeshToBinaryImageFilter-on-a-region-tp7589528p7589530.html > Sent from the ITK Insight Users mailing list archive at Nabble.com. > _____________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Kitware offers ITK Training Courses, for more information visit: > http://www.kitware.com/products/protraining.php > > Please keep messages on-topic and check the ITK FAQ at: > http://www.itk.org/Wiki/ITK_FAQ > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/insight-users > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: tester.cpp Type: text/x-c++src Size: 2662 bytes Desc: not available URL: From francois.budin at kitware.com Mon Jan 2 14:06:56 2017 From: francois.budin at kitware.com (Francois Budin) Date: Mon, 2 Jan 2017 14:06:56 -0500 Subject: [ITK-users] FW: ExtractImageFilter.Update() inside loop works until 24th iteration In-Reply-To: <50B858FB5F53124F9E32314E5C1B4094446CE68C@MBX212.d.ethz.ch> References: <50B858FB5F53124F9E32314E5C1B4094446CE653@MBX212.d.ethz.ch> <50B858FB5F53124F9E32314E5C1B4094446CE68C@MBX212.d.ethz.ch> Message-ID: Could you try to modify your code to: Filter1.Update() Output1 = Filter1.GetOutput() Output1.DisconnectPipeline() Filter2.SetInput(Output1) Filter2.Update() Output2 = Filter2.GetOutput() Output2.DisconnectPipeline() And let us know if that changes anything? Thanks! On Mon, Jan 2, 2017 at 12:23 PM, D'Isidoro Fabio wrote: > No, I did not know this option. I just coded this way: > > > > Filter1.Update() > > Output1 = Filter1.GetOutput() > > Filter2.SetInput(Output1) > > Filter2.Update() > > Output2 = Filter2.GetOutput() > > > > Instead of > > > > Filter2.SetInput( Filter1.GetOutput() ) > > Filter2.Update() > > > > Fabio > > > > *From:* Francois Budin [mailto:francois.budin at kitware.com] > *Sent:* Montag, 2. Januar 2017 17:59 > *To:* D'Isidoro Fabio > *Cc:* insight-users at itk.org > *Subject:* Re: [ITK-users] FW: ExtractImageFilter.Update() inside loop > works until 24th iteration > > > > Hello Fabio, > > When you say "avoid connecting its components with SetInput(GetOutput())", > do you mean that you used the method "DisconnectPipeline()"? > > Francois > > > > On Sun, Jan 1, 2017 at 5:40 PM, D'Isidoro Fabio wrote: > > Update: generalizing the problem, I figured out that any time the final > filter is updated inside a loop, after a certain number of iterations the > Update() does not work anymore and filter.GetOutput() returns always the > same image as the last working iteration. I guess it?s a memory issue. This > issue happens no matter what the final filter of the pipeline is (I tried > with ResampleImageFilter, Writer, ExtractImageFilter), and even when using > the filter.InPlaceOn() when possible. This issue happens even if I split > the pipeline and avoid connecting its components with SetInput( GetOutput() > ). > > > > Are filters of a pipeline not supposed to be used in a loop (where, in my > case, the given transform changes at any loop)? > > > > I guess the issue formulated this way is a common issue. > > > > Thank you for your help. > > > > Fabio. > > > > *From:* D'Isidoro Fabio > *Sent:* Sonntag, 1. Januar 2017 19:48 > *To:* insight-users at itk.org > *Subject:* ExtractImageFilter.Update() inside loop works until 24th > iteration > > > > Hallo, > > > > I work with ITK Python. I need to explore the domain of an image metric > (like in MeanSquaresImageMetric1.cxx) for 2D/3D registration (using > RayCastInterpolator). Since the metric works only between 2D/2D or 3D/3D > images, I need to convert the generated DRR (SizeX, SizeY, 1) into a 2D > image (SizeX, SizeY) with ExtractImageFilter, before metric evaluation. I > then pass to the metric the converted 2D DRR as moving image and the 2D > fixed image for similarity metric evaluation (with IdentityTransform, and > NearestNeighbourInterpolator set for the metric). Metric evaluation is done > in a loop within a range of the domain for the transform parameters. For > each iteration of the loop (that is, different transforms used for > generation of the DRR) the ExtractImageFilter is updated with Update(). > > > > The code runs but mysteriously stops working properly at the 24th > iteration of the loop for the domain range. After the 24th iteration I > figured no new DRR is generated and the metric value keeps constant at the > value of the 24th iteration. I tried with input 3D volumes of different > sizes and with different ranges for the transform parameters, but the code > stops generating new DRRs always after the 24th iteration. > > > > The important parts of the code are: > > > > interpolatorRayCast = itk.RayCastInterpolateImageFunction[MovingImageType, > ScalarType].New() > > filterRayCast = itk.ResampleImageFilter[MovingImageType, > MovingImageType].New() > > filterRedim = itk.ExtractImageFilter[MovingImageType, > FixedImageType].New() > > ? > > filterRayCast.SetInput( movingImageReader.GetOutput() ) > > filterRayCast.SetInterpolator( interpolatorRayCast ) > > ? > > filterRedim.SetInput(filterRayCast.GetOutput()) > > ? > > for dx in translation_range_x: > > for dy in translation_range_y: > > for dz in translation_range_z: > > ? > > transformDRR.SetParameters( transform_parameters ) > > > > filterRedim.Update() > > > > value = metric.GetValue() > > > > > > I believe the pipeline might not be set properly, but I don?t know where. > > > > In attachment you find the code and the required inputs. > > > > Any help would be highly appreciated, thank you! > > > > Fabio. > > > _____________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Kitware offers ITK Training Courses, for more information visit: > http://www.kitware.com/products/protraining.php > > Please keep messages on-topic and check the ITK FAQ at: > http://www.itk.org/Wiki/ITK_FAQ > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/insight-users > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From francois.budin at kitware.com Mon Jan 2 16:51:28 2017 From: francois.budin at kitware.com (Francois Budin) Date: Mon, 2 Jan 2017 16:51:28 -0500 Subject: [ITK-users] Itk Python GetParameters In-Reply-To: <50B858FB5F53124F9E32314E5C1B40943A18A889@MBX112.d.ethz.ch> References: <50B858FB5F53124F9E32314E5C1B40943A18A889@MBX112.d.ethz.ch> Message-ID: Hello Fabio, The itk::OptimizerParameter class is derived from the class vnl_vector, which allows you to get the different component of the transform it contains using the "get( )" method. The way to use it is as follow: a=itk.AffineTransform.New() b=a.GetParameters() b.get(0) If you want to have direct access to the element of the array in Python without the use of the "get()" method, you need to download and compile one of the latest commits of ITK (more recent than commit 991f67ee0c377d59acdedf40382b2804f068b47b merged on December 13th, 2016) and compile ITK with the CMake option Module_BridgeNumPy set to ON to compile the remote module NumpyBridge. Then you can simply do: a=itk.AffineTransform.New() b_array=itk.GetArrayFromVnlVector(a.GetParameters()) Hope this helps, Francois On Sat, Dec 31, 2016 at 5:13 AM, D'Isidoro Fabio wrote: > Hallo, > > > > within the context of exploring the domain of an image metric > (MeanSquaresImageMetric1.cxx), I want to check the current parameters used > for the translation transform: > > > > parameters = transform.GetParameters() > > parameters[0] = dx > > parameters[1] = dy > > metric.SetParameters( parameters ) > > > > > > If I then code: > > > > > > print(metric.GetParameters()) > > > > > > I get the proxy of Swig Object, from which I can?t see the parameters. > > > > > > I have tried in many ways: > > > > > > print(metric.GetParameters()[0]) > > print(metric.GetParameters()[1]) > > > > print(metric.GetTransform().GetParameters()) > > > > print(metric.GetTransform().GetParameters().GetElement(0)) > > > > but none of them works. > > > > How can I get the elements from the Swig Object? > > > > Thank you! > > > > Fabio > > > > _____________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Kitware offers ITK Training Courses, for more information visit: > http://www.kitware.com/products/protraining.php > > Please keep messages on-topic and check the ITK FAQ at: > http://www.itk.org/Wiki/ITK_FAQ > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/insight-users > > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 3700 bytes Desc: not available URL: From questionleon at gmail.com Wed Jan 4 07:08:10 2017 From: questionleon at gmail.com (Young Lee) Date: Wed, 4 Jan 2017 05:08:10 -0700 (MST) Subject: [ITK-users] what is the best way to do TriangleMeshToBinaryImageFilter on a region In-Reply-To: References: <1483366167327-7589530.post@n2.nabble.com> Message-ID: <1483531690161-7589536.post@n2.nabble.com> Thanks D?enan I tried your tester, and add imageFilter->SetOutsideValue(0); imageFilter->SetInsideValue(255); I saved the imageFilter->GetOutput() result to ITKMesh_Output.mha, but when I open with volview volume with all zero value , do I missing something? -- View this message in context: http://itk-insight-users.2283740.n2.nabble.com/Re-ITK-users-what-is-the-best-way-to-do-TriangleMeshToBinaryImageFilter-on-a-region-tp7589528p7589536.html Sent from the ITK Insight Users mailing list archive at Nabble.com. From dzenanz at gmail.com Wed Jan 4 07:37:24 2017 From: dzenanz at gmail.com (=?UTF-8?B?RMW+ZW5hbiBadWtpxIc=?=) Date: Wed, 4 Jan 2017 07:37:24 -0500 Subject: [ITK-users] what is the best way to do TriangleMeshToBinaryImageFilter on a region In-Reply-To: <1483531690161-7589536.post@n2.nabble.com> References: <1483366167327-7589530.post@n2.nabble.com> <1483531690161-7589536.post@n2.nabble.com> Message-ID: Tester reproduces the problem. If you comment out line 43, then it works. If you use the master version of ITK (with this patch applied), then unmodified tester should work too. Regards, D?enan On Wed, Jan 4, 2017 at 7:08 AM, Young Lee wrote: > Thanks D?enan > I tried your tester, and add > imageFilter->SetOutsideValue(0); > imageFilter->SetInsideValue(255); > > I saved the imageFilter->GetOutput() result to ITKMesh_Output.mha, but > when I open with volview volume with all zero value , do I missing > something? > > > > -- > View this message in context: http://itk-insight-users. > 2283740.n2.nabble.com/Re-ITK-users-what-is-the-best-way-to-do- > TriangleMeshToBinaryImageFilter-on-a-region-tp7589528p7589536.html > Sent from the ITK Insight Users mailing list archive at Nabble.com. > _____________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Kitware offers ITK Training Courses, for more information visit: > http://www.kitware.com/products/protraining.php > > Please keep messages on-topic and check the ITK FAQ at: > http://www.itk.org/Wiki/ITK_FAQ > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/insight-users > -------------- next part -------------- An HTML attachment was scrubbed... URL: From aharr8 at uwo.ca Wed Jan 4 15:41:50 2017 From: aharr8 at uwo.ca (Andrew Harris) Date: Wed, 4 Jan 2017 15:41:50 -0500 Subject: [ITK-users] [ITK] PowellOptimizerv4 does not run CommandIterationUpdate Execute() method Message-ID: Hi, hope someone can help direct me to a reference. I have been trying to use the PowellOptimizerv4 to do an automated image alignment between two 3D ultrasound images. We are using Mutual Information as a metric and it is exiting at -0.30 for images with a high degree of overlap, but when I use CommandIterationUpdate to try and see how the optimizer is behaving the Execute() method doesn't run. It is identical to the code copied from ITK examples that ran when I was using the LBFGS optimizer, with the exception that I've added a few print statements to see whether one of the if statements was being activated prior to the output. Let me know if you have any suggestions, thanks. -- AH ----------------------------------------------------------------------------------------------- *This email and any attachments thereto may contain private, confidential, and privileged materials for the sole use of the intended recipient. Any reviewing, copying, or distribution of this email (or any attachments thereto) by other than the intended recipient is strictly prohibited. If you are not the intended recipient, please contact the sender immediately and permanently destroy this email and any attachments thereto.* -------------- next part -------------- An HTML attachment was scrubbed... URL: From blowekamp at mail.nih.gov Thu Jan 5 09:21:39 2017 From: blowekamp at mail.nih.gov (Lowekamp, Bradley (NIH/NLM/LHC) [C]) Date: Thu, 5 Jan 2017 14:21:39 +0000 Subject: [ITK-users] [ITK] PowellOptimizerv4 does not run CommandIterationUpdate Execute() method In-Reply-To: References: Message-ID: <201F36DF-7970-42FC-901B-EC5A0B1EAEBA@mail.nih.gov> Hello, I have some SimpleITK tests which do verify that this optimizer does produce the ?iteration event?. I don?t recall the details of this optimizer, but I think it does a complex update step and may not report the event if it terminates early. I suspect there is a problem with how the registration problem is setup which causes the optimizer not work and not a problem with the ITK code. What is the ?stop condition description?? Brad On Jan 4, 2017, at 3:41 PM, Andrew Harris > wrote: Hi, hope someone can help direct me to a reference. I have been trying to use the PowellOptimizerv4 to do an automated image alignment between two 3D ultrasound images. We are using Mutual Information as a metric and it is exiting at -0.30 for images with a high degree of overlap, but when I use CommandIterationUpdate to try and see how the optimizer is behaving the Execute() method doesn't run. It is identical to the code copied from ITK examples that ran when I was using the LBFGS optimizer, with the exception that I've added a few print statements to see whether one of the if statements was being activated prior to the output. Let me know if you have any suggestions, thanks. -- AH ----------------------------------------------------------------------------------------------- This email and any attachments thereto may contain private, confidential, and privileged materials for the sole use of the intended recipient. Any reviewing, copying, or distribution of this email (or any attachments thereto) by other than the intended recipient is strictly prohibited. If you are not the intended recipient, please contact the sender immediately and permanently destroy this email and any attachments thereto. _____________________________________ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Kitware offers ITK Training Courses, for more information visit: http://www.kitware.com/products/protraining.php Please keep messages on-topic and check the ITK FAQ at: http://www.itk.org/Wiki/ITK_FAQ Follow this link to subscribe/unsubscribe: http://public.kitware.com/mailman/listinfo/insight-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From matt.mccormick at kitware.com Mon Jan 9 20:08:39 2017 From: matt.mccormick at kitware.com (Matt McCormick) Date: Mon, 9 Jan 2017 20:08:39 -0500 Subject: [ITK-users] [ANN] ITK 4.11 Release Candidate 1 is ready for testing! Message-ID: On behalf of the Insight Toolkit community, we are proud to announce that ITK 4.11 release candidate 1 has been tagged and is available for testing! Please take this opportunity to test the new features in the release candidate. To obtain the source code, git clone https://itk.org/ITK.git cd ITK git checkout -q --detach v4.11rc01 For more details, please see the Git documentation [1]. A few selected highlights for this release: - Remote Modules were added to: perturb mesh vertices with additive gaussian noise, accurately benchmark computational performance, perform principal components analysis of scalar, vector, and mesh vertex data, create a run-length encoded memory compression scheme for itk::Image, run N-D morphological contour interpolation, interpolate multi-label images, iterate over multiple images simultaneously, and compute inverse displacement fields. - NumPy bridge support is now enabled by default with NumPy array views of multi-component images and VNL vectors and matrices. - Internal HDF5 was updated to the latest upstream version along with a number of other third-party libraries. This release introduces a new template class export specification macro, ITK_TEMPLATE_EXPORT. The macro should be used with templated classes to address failing dynamic_cast's and exception catching across binaries on Mac OSX. Bugs were addressed and improvements were made to how the pseudo-random number generator is used. Tests that rely on the random number generator should explicitly set the global seed at start: itk::Statistics::MersenneTwisterRandomVariateGenerator::GetInstance()->SetSeed( 121212 ); To improve randomness, new instances of the generator start from a different seed; some minor differences in the output of algorithms that uses the generator, like mutual information metrics, should be expected. Please test the release candidate and share your experiences on the mailing list, issue tracker, and Gerrit Code Review. An Experimental build, which demonstrates how the test suite performs on your local build system, can be submitted to the dashboard [2] with: mkdir ../ITK-build cd ../ITK-build cmake ../ITK ctest -j 4 -M Experimental -T Configure -T Build -T Test -T Submit Visual Studio builds must also add ?-C Release? to the ctest command. Notify the mailing list if there are any unexpected failures. Testing your own applications against the RC is also appreciated. Congratulations to the 31 contributors to this release. We would especially like to recognize the new contributors: Hastings Greer, Gilles Filippini, Thien Nguyen, Caspar Goch, Mayeul Chassagnard, Somesh Kashyap, Simon Rit, Pierre Barbier de Reuille, and Maeliss Jallais. The 4.11.0 final release is scheduled for January 23rd. [1] http://www.itk.org/Wiki/ITK/Git [2] http://open.cdash.org/index.php?project=Insight New Features ------------ * Wrapping Improvements - Python GetArrayFromImage() and GetImageFromArray() from ITKBridgeNumPy are directly accessible from the Python itk namespace. - The itk package loads much faster: individual modules are loaded only when required. - Conversion of ITK images from and to NumPy array using Bridge NumPy supports RGB, RGBA, and Vector images. - VNL vectors and VNL matrices can be converted from and to NumPy objects with respectively the new couple of functions GetArrayFromVnlVector()/GetVnlVectorFromArray() and GetArrayFromVnlMatrix()/GetVnlMatrixFromArray() - The global timestamp is used across all ITK Python modules when built statically - Wrap additional classes such as KernelFunctionBase - itk_python_add_test CMake function added for Python script testing in ITK modules * New Remote Modules - DVMeshNoise - Perturbing mesh vertices with additive gaussian noise - http://hdl.handle.net/10380/3567 - PerformanceBenchmarking - Accurate benchmarking of computational performance - http://hdl.handle.net/10380/3557 - PrincipalComponentsAnalysis - Principal components analysis of scalar, vector, and mesh vertex data - http://hdl.handle.net/10380/3386 - RLEImage - Run-length encoded memory compression scheme for itk::Image - http://hdl.handle.net/10380/3562 - MorphologicalContourInterpolation - N-D morphological contour interpolation - http://hdl.handle.net/10380/3563 - GenericLabelInterpolator - A generic interpolator for multi-label images - http://hdl.handle.net/10380/3506 - MultipleImageIterator - Iterate over multiple images simultaneously - http://hdl.handle.net/10380/3455 - FixedPointInverseDisplacementField - Computes inverse displacement field - http://hdl.handle.net/10380/3222 * Core Improvements - New ITK_TEMPLATE_EXPORT for templated classes resolves cross-binary dynamic_cast on Mac OSX - New MersenneTwisterRandomVariateGenerator instances are initialized with different seeds - Use compiler feature detection in CMake for C++11 features, etc. - New CMake macro itk_module_add_library for creating libraries in ITK modules - Improved support for ccache and distcc with CMAKE__COMPILER_LAUNCHER (CMake >=3.4 required) - Support for .sha512 ExternalData content links - GitHub Pages and data.kitware.com ExternalData repositories added - GPGPU system support for C++11 - Support of new compilers: Visual Studio 15 and XCode 8.2.1 (clang-800.0.42.1) * Filtering Improvements - HessianToObjectnessMeasure moved out of the ITKReview module - New UnsharpMaskImageFilter for image edge enhancement * IO Improvements - TransformFactory class has been moved to a separate module - Spline order added to BSplineTransform identifier - Improved NIFTI orientation support * Documentation Improvements - Updates to the Software Guide, Doxygen, Wiki and Sphinx Examples * Third Party Library Updates - pygccxml updated to v1.8.0 - VNL updated to latest upstream (2016.07.06) - SWIG updated to v3.0.11 - KWSys updated to latest upstream (2016.11.21) - HDF5 updated to v1.8.17 - SCIFIO updated to latest upstream (2016.12.01) - DCMTK updated to 3.6.1_20121012 - CastXML to latest upstream (2016.01.28) * Improved Code Coverage -- we are at 85.44%! - Jon Haitz-Legarreta's extensive code coverage improvements - https://blog.kitware.com/why-should-we-spend-time-writing-tests/ * *Lots* of important bug fixes * And much more! See details in the log below. Changes from v4.10.0 to v4.11rc01 ------------------------------------------------ Bill Lorensen (4): COMP: Restore support for clang 3.0 compiler COMP: Consistent use of ModifiedTimeType ENH: Bump WikiExamples remote module version ENH: Bump WikiExamples version Bradley Lowekamp (57): ENH: Add registered TrasformIO's to exception ENH: Use template or constant for loop stop condition ENH: Updating SWIG version to 3.0.9 COMP: Address VS9 ambiguous std::abs call in Haung calculator COMP: Fix undefined NumericTraits::Zero and One errors with mingw64 BUG: Fix segfault if ~CleanUpObjectFactory called multiple times BUG: Address itkHDF5ImageIO test failures for mingw64 BUG: demonstrate dynamic_cast failure when reading transforms BUG: Address itkHDF5ImageIO test failures for mingw64 ENH: Updating SWIG version to 3.0.10 ENH: Enable CMP0063 New behavior COMP: Enable hidden visibility property with vxl static libraries COMP: Enable hidden visibility property with HDF5 static libraries COMP: Enable hidden visibility property with HDF5 static libraries BUG: Match Add2 function to AddImageFilter documentation ENH: Improve support for std::complex with PowImageFilter ENH: Explicitly mark required files for dependent tests COMP: Bypass XCode 7.3,8 internal compilation error COMP: Address CMake configuration error with itkJPEG2000Test03 property BUG: Correct test's REQUIRED_FILES to only the input. ENH: move HessianToObjectnessMeasure filter out of Review ENH: Separate TransformFactory class into separate module DOC: Add links between similar label to rgb filters ENH: Separate data from function calls COMP: Fix changed Graft method ENH: Reduce template dependencies on CalculateRotationMatrix ENH: Add Functor Accessors to LabelMapToRGB filter BUG: Enable VirtualDomain and FixedTransform in RegMethv4 BUG: Use BSpline Order 3 for 2D in transform factory. ENH: Add spline order to BSplineTransform's string id ENH: Adding initial CircleCi configuration file COMP: Fix float to unsigned integer conversion warnings BUG: Include installed modules in ITK_MODULES_ENABLED COMP: Address CMake error that ITKGPUCommon is not in export COMP: Address wrong library types with VS and shared libraries BUG: Ensure CreateImageIO is concurrent thread safe ENH: Mark HDF5 CMake options as internal COMP: Add template export declaration for ParametricPath COMP: Correct TEMPLATE_EXPLICIT definition in Path module ENH: Factor out common code in the TrasformFactoryBase registration ENH: Add CMake variable for max transform dimension, defaults 4 ENH: Create CMake module to check for private RTTI compatibility ENH: Improving setting of default ITK_TEMPATE_VISIBILITY_DEFAULT COMP: Correct ifndef value to allow user defined ITK_TEMPLATE_EXPORT BUG: Add explicit instantiate for ObjectToObjectOptimizerBase COMP: Use add_definitions for CMake 2.8.9 compatibility COMP: Add warning suppression for distcc warning ENH: Explicitly instantiate the optimizer base over float BUG: Use IsLinear to check if transform is "affine" ENH: Remove unneeded includes of random iterator header ENH: Improve thread-safety for Generator, and unique New sequence ENH: Do not use global random generator BUG: Update v3 registration metrics to use local seed ENH: Prefer setting local seed over global in tests. ENH: Update SWIG to latest 3.0.11 release BUG: relax testing parameters for v3 translation registration BUG: Restore baseline for debug registration Caspar Goch (2): BUG: Use printable type for RGBA pixel ostream for ITK-3501 STYLE: Remove extra space for ITK-3501 Christina Rossmanith (1): DOC: Added more details to the class Doxygen documentation. Davis Vigneault (2): COMP: VCL_DEFINE_SPECIALIZATION not defined ENH: Add remote module DVMeshNoise D?enan Zuki? (27): BUG: Fixing CID-1355433 (IDENTICAL_BRANCHES) ENH: Adding MultipleImageIterator as a remote module COMP: enables TBB 4.4 back-end for VTK7's SMP COMP: enabling position independent code flag for FFTW ENH: adding configuration file for code reformatting tool clang-format ENH: Updating hooks to work with Windows/TortoiseGit/KDiff3 COMP: Fixing -fPIC flag passing with Ninja build system ENH: Adding RLEImage as a remote module ENH: Updating uncrustify configuration to current git version STYLE: better compliance with ITK style STYLE: A new option in uncrustify, updating the config file accordingly ENH: Adding MorphologicalContourInterpolation as a remote module ENH: improving documentation BUG: fixing buffer growing endlessly, as reported by Timothee Evain BUG: fixing buffer growing endlessly, as reported by Timothee Evain STYLE: default uncrustify configuration file is less aggressive COMP: Fixing warning COMP: VS15 compiler fix BUG: casting -9 to unsigned produced unwanted result BUG: Ensuring consistency between debug and release COMP: Updating LesionSizingToolkit after some recent compile fixes COMP: respect option METAIO_USE_NAMESPACE ENH: updating version of AnisotropicDiffusionLBR ENH: adding UnsharpMaskingImageFilter COMP: explicitly cast to output type BUG: double call to update would cause empty output image ENH: Updating RLEImage remote module. Change-log: Eugene Prilepin (4): ENH: Add the "ITK_USE_GPU" to ITK Config BUG: Fix API for set/get "LaplacianImageFilter" object ENH: Add support of images types with the 'CovariantVector' pixel type ENH: Add python test for the 'GradientVectorFlowImageFilter' wrap Francois Budin (52): ENH: Adding GetArrayFromImage in python itk namespace ENH: Adding GetImageFromArray in python itk namespace ENH: *_WRAP_* variable per external module BUG: ImportImageFilter not responsible of memory management ENH: New remote module GenericLabelInterpolator DOC: SetNumberOfOutputs had wrong comment BUG: lazyAttributes dictionary keys could be over-ridden BUG: lazyAttributes dictionary keys could be over-ridden BUG: Fix recent update of HDF5 (1.8.17) ENH: Update SCIFIO to latest version on 08/23/2016 ENH: Addition of the remote module FixedPointInverseDisplacementField ENH: Update SCIFIO to latest version on 08/29/2016 BUG: Path to commit was relative instead of absolute ENH: Path to SetupForDevelopment is relative, not absolute BUG: LSMImageIO write function was not checking image dimension BUG: LSMImageIO was not checking correctly image dimension BUG: Missing associated test data BUG: Missing associated test data ENH: Bump CMakeLists.txt version to 4.10.1. BUG: Quotes are not escaped in configured cmake file ENH: Improving API of Graft() in itk::Image ENH: Updating ITKGenericLabelInterpolator remote module ENH: Update ITKIOTransformDCMTK remote module BUG: Factory registration should depend on ITK_BUILD_SHARED COMP: Updating DCMTK compilation for Ninja ENH: Update version of DCMTK to 3.6.1_20121012 ENH: Update SCIFIO to latest version on 10/25/2016 BUG: Swig and PCRE do not support space in installation paths BUG: exit() call from within piped commands was not exiting the script BUG: Typo in folder creation command ENH: Only display message for transform registered multiple times in debug ENH: Image spacing must be positive BUG: Supported extensions by PNG IO were not added in constructor. DOC: Documentation in itkRBGAPixel and itkRGBPixel was incorrect. ENH: Update SCIFIO to lastest (2016.12.01) ENH: FixedPointInverseDisplacementField moved to InsightSoftwareConsortium COMP: Remove compilation warnings ENH: Improved support of ccache and distcc BUG: GPUImage regression due to API change. ENH: Update Bridge Numpy (2016.12.05) ENH: Update VariationalRegistration to remove warnings during compilation ENH: FindPythonLibs does not support both debug and release python libraries ENH: Update VariationalRegistration BUG: Missing ITK_TEMPLATE_EXPORT in forward declaration of itk::ImageBase BUG: Missing ITK_TEMPLATE_EXPORT in itkOptimizerParametersHelper BUG: Missing ITK_TEMPLATE_EXPORT in templated class BUG: Remove linkage warnings on MacOS BUG: HDF5 CMake installation directory variable had not been updated BUG: Missing include header in AnisotropicDiffusionBLR remote module hxx files COMP: Silencing unused variable warning in itkTimeStamp STYLE: Improve style checking by using module ITKKWStyleOverwrite.txt COMP: OS*Barrier functions are deprecated on MacOS 10.12 GCC-XML Upstream (1): ENH: pygccxml v1.8.0 (reduced) Gert Wollny (1): BUG: Relax vnl_complex floating point comparisons for i386 Gilles Filippini (1): BUG: Use NATIVE_HBOOL for encoding HDF5 types. HDF Group (1): ENH: hdf5 1.8.17-r30218 (reduced) Hans Johnson (23): COMP: Use cmake WriteCompilerDetectionHeader ENH: Use itk_compiler_detection versions COMP: Need ITK_NOEXCEPT_OR_THROW macro. COMP: Provide consistent granular C++11 support STYLE: Use granular ITK_COMPILER_CXX_STATIC_ASSERT STYLE: Prefer to use consistent definitions COMP: Improve robustness of identifying the compiler standard used BUG: try_compile for AlignAs were always failing STYLE: Provide a well documented macro for repeated code STYLE: Delete functions in consistent way COMP: GPU baseclass ivars need to be protected COMP: Remove unnecessary circular dependancy COMP: Add long long usage for HDF5 COMP: Add long long usage for HDF5 STYLE: Prefer static small array to dynamic array BUG: Confusing interface for FFTW wisdom files STYLE: Output dimension from OutputImageType STYLE: Code review style cleanups STYLE: Prefer to use ITK AssertOrThrow macros ENH: Add OverrideBoundaryCondition logic ENH: Provide mechanism for enhanced NIFTI support BUG: Use NIFTI sform/qform conventions correctly ENH: Remove ambiguity about sform/qform Hastings Greer (8): BUG: ITK-3448 Wrap itkQuadEdgeCellTraitsInfo more specifically BUG: make itkTriangleHelper instantiable to ease wrapping BUG: remove lsqr because of license issues ITK 1160 BUG: make itkTriangleHelper instantiable to ease wrapping BUG: initialize X to zero in lsmr Solve BUG: Labled Point Set Registration: test multiple labels BUG: Fix python wrapping of Cuberille remote module BUG: Add test demonstrating Python global timestamp issue Jean-Christophe Fillion-Robin (5): STYLE: UseITK: Set ImageIO exceptions using new convention. See #3393 STYLE: MeshIO: Moves virtual destructor into cpp files. See #3393 STYLE: Update MeshIO factories to use RegisterFactoryInternal. See #3393 STYLE: MeshIO: Move MeshFileWriterException into its own file. See #3393 STYLE: MeshIO: Remove unused include from headers. See #3393 Johan Andruejol (3): ENH: Add missing itkKernelFunctionBase wrapping ENH: Add PrincipalComponentsAnalysis remote module COMP: Override cannot be used with inline Jon Haitz Legarreta (216): ENH: Improve itkFlatStructutingElement coverage. ENH: Improve itkPathToImageFilter class coverage. ENH: Improve itkIsolatedWatershedImageFilter coverage. ENH: Improve itkLogSigmoidTransferFunction coverage. STYLE: Improve itkBSplineTransform doc style. ENH: Improve GaborKernelFunctionCoverage. PERF: Remove duplicate itkMath include STYLE: Move the PrintSelf method to the end STYLE: Improve the itkScalarToRGBColormapImageFilter style. STYLE: Delete duplicate method documentation STYLE: Remove method documentation from implementation file STYLE: Improve GACLevelSet classes' style STYLE: Improve test style ENH: Improve itkGaussianDerivativeImageFilter coverage. ENH: Improve the itkScalarToRGBColormapImageFilter coverage STYLE: Improve itkScalarToRGBColormap test style ENH: Improve GACLSImageFilter classes' coverage STYLE: Improve comment style in GACLS tests ENH: Improve itkImportImageFilter coverage ENH: Improve itkVideoFileReader coverage ENH: Improve itkVideoFileWriter coverage STYLE: Improve the itkVideoFileWriter style. STYLE: Imrpove itkVideoFileReader style. ENH: Improve the itkBSplineControlPointImageFunction coverage STYLE: Improve the itkIntensityWindowingImageFilter style STYLE: Improve the itkIntensityWindowingImageFilter test style ENH: Improve ImageToSpatialObjectRegistrationMethod coverage STYLE: Improve test style ENH: Improve MaskNeighborhoodOperatorImageFilter coverage ENH: Improve itkMeshFileWriter coverage ENH: Improve RescaleIntensityImageFilter coverage. ENH: Improve itkClampImageFilter coverage. BUG: Fix ivar type casting in PrintSelf. STYLE: Improve MRIBiasFieldCorrectionFilter style. ENH: Improve MRIBiasFieldCorrectionFilter coverage. ENH: Improve itkIntensityWindowingImageFilter coverage BUG: Fix Run-time type information in CSV module classes. ENH: Improve the itkHistogram class code coverage. DOC: Fix documentation typo. STYLE: Improve the ImproveRescaleIntensityImageFilter style. PERF: Make the itkVideoFileReader ivars private PERF: Make itkVideoFileWriter ivars private ENH: Improve coverage for itk::OrientImageFilter. STYLE: Improve itk::OrientImageFilter class style. ENH: Improve itkCSVNumericObjectFileWriter coverage. ENH: Add missing standard class typdefs. ENH: Improve itkVoronoiSegmentationImageFilter coverage. ENH: Improve itkVoronoiSegmentationImageFilter style. STYLE: Improve the MalahanobisDistanceThresholdImageFunction style. ENH: Improve coverage for itkMalahanobisDistanceThreshold. ENH: Improve itk::MinimumMaximumImageCalculator coverage. ENH: Improve itkMinimumMaximumImageCalculator style. BUG: Fix type mismatch in test. STYLE: Improve itkPolylineMaskImagefilter style. ENH: Improve itkPolylineMaskImageFilter coverage. ENH: Improve itkFileListVideoStyle. ENH: Improve itkLandmarkBasedTransformInitializer coverage. ENH: Add baseline image to itkPolylineMaskImageFilter test. ENH: Improve coverage for itkBSplineTransformInitializer. STYLE: Improve itkBSplineTransformInitializer doc style. ENH: Enhance itkBSplineTransformInitializer implementation. DOC: Fix typo in method documentation. ENH: Improve the itkRegularStepGradientDescentOptimizerv4 style. STYLE: Improve the itkSimpleContourExtractorImageFilter style. ENH: Exercise the class' Get methods. ENH: Improve coverage for itkStatisticsOpeningLabelMapFilter. ENH: Improve style for itkThresholdLabelerImageFilter. ENH: Improve itkThresholdLabelerImageFilter coverage. ENH: Get internal ImageIO via a const macro. ENH: Improve the itkSimpleContourExtractorImageFilter coverage. STYLE: Improve the itkMetaArray class style. ENH: Improve MetaArrayReader/Writer coverages. ENH: Improve the itkCovarianceImageFunction style. STYLE: Improve itkVoronoiDiagram2DGenerator style. ENH: Improve VoronoiDiagram2DGenerator coverage. STYLE: Improve the itkBayesianClassifierImageFilter style. STYLE: Improve the itkMetaArrayWriter style. ENH: Improve itkCovarianteImageFunction coverage. COMP: Fix signed/unsigned int comparison warning. DOC: Improve itkGrayscaleDilateImageFilter documentation. DOC: Improve documentation for itkGrayscaleErodeImageFilter. DOC: Improve ConfigureHistogram method documentation. STYLE: Improve the itkMovingHistogramMorphologyImagefilter style. BUG: Fix Superclass name in RTTI. STYLE: Improve itkGaussianInterpolateImageFunction style. ENH: Improve coverage for itkGaussianInterpolateImageFunction. ENH: Improve itkBayesianClassifierImageFilter coverage. ENH: Add itkBSplineControlPointImageFilter RTTI. STYLE: Improve itkBSplinecontrolPointImageFilter style. ENH: Improve itkBSplineControlPointImageFilter coverage. ENH: Improve coverage for itkRegularStepGradientDescentOptimizerv4. STYLE: Improve the class implementation file style. STYLE: Improve the itkResampleImageFilter style. DOC: Fix typo in GetMTime method doc. STYLE: Remove out-of-body implementation doc ENH: Improve itkResampleImageFilter coverage. ENH: Improve itkAbsImageAdaptor and Filter coverage. BUG: Fix itkLSMImageIO class' Superclass name. ENH: Improve the itkInterpolateImagePointsFilter coverage. ENH: Improve itkPowImageFilter coverage. BUG: Fix ConvolutionImageFilter RTTI. STYLE: Use initialization lists. STYLE: Improve BinaryFunctorImageFilter style. ENH: Improve itkMinimumImageFilter code coverage. BUG: Fix Linux-x86_64-gcc4.1 warning on implicit conversion. ENH: Improve MaximumImageFilter coverage. BUG: Fix conversion to PixelType conversion. COMP: Fix double to unsigned char conversion warning. ENH: Improve coverage for itkNormalizeToConstantImageFilter. BUG: Fix itkSquaredDifferenceErrorFunction RTTI. ENH: Improve itkMeanImageFunctionCoverage. ENH: Improve itkSquareImageFilter coverage. STYLE: Improve the itkSquaredDifferenceErrorFunction style. STYLE: Enhance style for itkNormalizeToConstantImageFilter. STYLE: Improve itkMeanImageFunction style. ENH: Remove unnecesary call to filter print. ENH: Improve itkRegionOfInterestImageFilter coverage. STYLE: Improve itkRegionOfInterestImageFilter style. STYLE: Improve itkPasteImageFilter style. STYLE: Improve itkJoinSeriesImageFilter style. BUG: Fix itkPadLabelMapFilter RTTI Superclass. COMP: Address std::cout.precision conversion warning. ENH: Improve itkBayesianClassifiertImageFilter coverage. ENH: Improve itkPadLabelMapFilter coverage. ENH: Improve itkJoinSeriesImageFilter coverage. ENH: Improve the itkPasteImageFilter coverage. ENH: Improve MeanImageFilter coverage. COMP: Address std::cout.precision conversion warning. ENH: Improve TernaryMagnitudeImageFilter coverage. ENH: Improve FFTConvolutionImageFilter coverage. DOC: Fix class documentation in ternary magnitude filters. ENH: Improve ConstrainedValueDifferenceImageFilter coverage. ENH: Improve AndImageFilter coverage. ENH: Add baseline test to itkTernaryMagnitudeImageFilter. ENH: Use MD5 comparison framework in baseline test. ENH: Improve itk::VectorRescaleIntensityImageFilter coverage. STYLE: Improve the itkVectorRescaleIntensityImageFilter style. ENH: Print missing ivar in filter PrintSelf method. ENH: Improve itkComplexToImaginaryFilter coverage. ENH: Improve itkComplexToPhaseImageFilter coverage. ENH: Improve itkComplexToModulusImageFilter coverage. ENH: Improve itkComplexToRealImageFilter coverage. ENH: Improve itkVectorResampleImageFilter coverage. ENH: Add GetTransform method. ENH: Improve itkConstrainedValueAdditionImageFilter coverage. ENH: Improve itkModulusImageFilter coverage. ENH: Improve itkLog10ImageFilter coverage. ENH: Imporve itkMagnitudeAndPhaseToComplexImageFilter coverage. ENH: Improve itkLogImageFilter coverage. ENH: Improve itkInvertIntensityImageFilter coverage. STYLE: Improve itkInvertIntensityImageFilter style. DOC: Add missing doc to itkInvertIntensityImageFilter. STYLE: Improve itkIntensityWindowingImageFilter style. STYLE: Use initialization lists. ENH: Improve itkIntensityWindowingImageFilter coverage. ENH: Improve itkNaryMaximumImageFilter coverage. COMP: Fix std::precision type casting warning. ENH: Improve itkPointSetToPointSetRegistrationMethod coverage. STYLE: Improve the itkPointSetToPointSetImageRegistrationMethod style. ENH: Remove SmartPointers being explicitly initialized to null. STYLE: Improve the itkPointSetToImageRegistrationMethod style. ENH: Improve itkPointSetToImageRegistration coverage. STYLE: Change the name of the itkPointSetToImageRegistrationMethod test. STYLE: Improve itkVectorResampleImageFilter style. STYLE: Improve the itkAntiAliasBinaryImageFilter style. ENH: Improve trigonometric function filters' coverage. STYLE: Remove test names from std::out messages. ENH: Improve Boolean Algebra ImageFilters coverage. STYLE: Improve the EuclideanDistancePointMetric style. ENH: Improve itkSigmoidImageFilter coverage. STYLE: Improve itkCropImageFilter style. ENH: Improve itkCropImageFilter coverage. ENH: Improve RGBToLuminanceImageFilter and Adaptor coverage. ENH: Improve itkRescaleIntensityImageFilter coverage. ENH: Improve the itkMatrixSelectionImageFilter coverage. ENH: Improve itkTanImageFilter and Adaptor coverage. ENH: Increase itkSqrtImageFilter and Adaptor coverage. ENH: Increase itkTernaryOperatorImageFilter coverage. ENH: Increase itkSymmetricEigenAnalysisImageFilter coverage. STYLE: Improve itkScalarImagekmeansImageFilter style. STYLE: Conform to TEST_SET_GET_VALUE definition. BUG: Fix uninitialized variable due to dynamic analysis defect. BUG: Fix uninitialized variable defect reported by valgrind. ENH: Improve the itkPointSetToPointSetRegistrationTest. ENH: Improve the itkPointSetToImageRegistrationTest. ENH: Increas BinaryMagnitudeImageFilter coverage. STYLE: Remove test name from std output. ENH: Increase MagnitudeImageFilter coverage. BUG: Fix uninitialized variable defect reported by valgrind. BUG: Fix Superclass name in RTTI. STYLE: Improve itkFrustumSpatialFunction style. STYLE: Improve the itkConicShellInteriorExteriorSpatialFunction style. BUG: Fix Superclass template argument list. STYLE: Improve the itkTorusInteriorExteriorSpatialFunction style. STYLE: Improve the itkCheckerBoardImageFilter class style. ENH: Improve the itk::LabelVotingImageFilter coverage. ENH: Improve itkCheckerBoardImageFilter coverage. STYLE: Improve itk::LabelVotingImageFilter style. STYLE: Improve the itkHoughTransform2DCirclesImageFilter style. ENH: Add test for itk::FrustumSpatialFunction class. ENH: Improve itkConnectedThresholdImageFilter coverage. STYLE: Improve itkConnectedThresholdImageFilter style. BUG: Fix FrustumSpatialFunction internal precision conversion. COMP: Fix implicit conversion warning. STYLE: Improve itkThresholdImageFilter style. ENH: Add test for itk::TorusInteriorExteriorSpatialFunction. BUG: Fix Superclass template argument list. ENH: Improve itkUnsharpMaskingImageFilter implementation. ENH: Improve the itkUnsharpMaskingImageFilter coverage. ENH: Fix UnsharpMaskingImageFilter test inconsistencies. BUG: Add missing itkTypeMacro. DOC: Document the member variables. BUG: Fix the itkImageSource RTTI class name, STYLE: Improve itkLabelImageGaussianInterpolateImageFunction style. ENH: Finish itkGaussianInterpolateImageFunction PrintSelf. STYLE: Improve itkLabelOverlapMeasurementImageFilter style. KWSys Robot (6): KWSys 2016-06-30 (96f06c8e) KWSys 2016-10-23 (b630d2f5) KWSys 2016-11-03 (37306a1c) KWSys 2016-11-08 (2b3e2b1c) KWSys 2016-11-09 (18c65411) KWSys 2016-11-21 (cb55cf5a) Maeliss Jallais (1): BUG: Add unsigned and signed short to the wrapping of vnl_matrix Matthew McCormick (85): PERF: Simplify HilbertPath numberOfPathVertices computation. BUG: CID 1355469 NNetClassifierTest4 unintended integer division. BUG: Update Cuberille Remote for version check fix. ENH: Bump ITK version to 4.11.0. BUG: Fix HDF5ImageIO type information. BUG: Fix H5File memory leak in HDF5ImageIO. DOC: Collect Francois Budin's contributions in .mailmap BUG: Limit WRAP_ITK_MODULES when building externally STYLE: Improvements to ResourceProbe report output. ENH: Add a useTabs argument to ResourceProbe::Report. ENH: Add standard error measure to the ResourceProbe ENH: Add itk_python_add_test function. BUG: Remove VNL file from subtree merge. COMP: Fix wrapping with a space in the Python include path BUG: Fix PermuteAxesImageFilter pipeline method visibility BUG: Initialize PermuteOrder and FlipAxes in OrientImageFilter BUG: ResampleImageFilter honor isInside output of the transform method COMP: Avoid recursive include of itkMath.h COMP: Fix VXL header installation locations BUG: ClampImageFilterTest for older GCC, InPlaceOn DOC: Add CONTRIBUTING.md file to the top level. COMP: Update VariationalRegistration to address Doxygen warnings BUG: Compiler detections file installed into ITK build tree location COMP: Do not use string(TIMESTAMP. COMP: Remove HDF5 -std=c99 for C++ files BUG: Do not build HDF5 static library with a shared build ENH: Add PerformanceBenchmarking Remote Module COMP: Remove duplicate wrappings for ResampleImageFilter BUG: Put Python test output files in the build tree BUG: Improve HDF5ImageIO::CloseDataSet name COMP: Use add_python_test PythonLazyLoadingImage COMP: Address missing override it itkFactoryTestLib.cxx BUG: Index,Size,Offset constructors present in Python with C++11 COMP: Address missing override it itkFactoryTestLib.cxx BUG: PerformanceBenchmarking as EXCLUDE_FROM_DEFAULT ENH: Bump SetupForDevelopment version BUG: Add missing ZLib deflate support to HDF5 BUG: Address memory leak, remove NumPy build dep in BridgeNumPy COMP: Do not set ITK_LIBRARY_BUILD_TYPE in ITKTransformFactory COMP: Do not set ITK_LIBRARY_BUILD_TYPE in ITKTransformFactory BUG: Check when ITK_WRAP_VECTOR_COMPONENTS doesn't include ITK_WRAP_IMAGE_DIMS BUG: RichardsonLucyDeconvolutionImageFilter with non-null input Image Origin BUG: Fix inconsistent Twister start with Initialize(seed) and SetSeed(seed) BUG: Do not hard code CMake scripts in HDF5 COMP: Workaround Emscripten ITKCommon test build failure COMP: Do embed fancy HDF5 libsettings with Emscripten COMP: Add missing H5T_patch_vlen_file declaration ENH: Bump CastXML to 2016-10-11 master. COMP: Workaround Emscripten ITKCommon test build failure BUG: Swap CastXML hashes for Mac OSX and Windows ENH: Sync ExternalData.cmake with upstream CMake 3.6.2 COMP: Fix VNL tests when cross-compiling ENH: ExternalData multi-algorithm support ENH: ExternalData support for data.kitware.com BUG: Install missing H5pubconf.h BUG: Use SpacePrecisionType in TileImageFilter BUG: Use internal ExternalData_Add_Target ENH: Run .sha512, .md5 simultaneous modification pre-commit check BUG: Correct CastXML Windows binary BUG: Support non-zero Index in LevelSetNeighborhoodExtractor ENH: Add ArchiveTestingDataOnGirder.py BUG: Correct AtanRegularizationHeavisideStepFunction derivative ENH: Add Utilities/Maintenance/ContentLinkSynchronization.sh BUG: Remove extra HessianToObjectness content links ENH: Wrap SpatialFunction float types with ITK_WRAP_float BUG: Bump PerformanceBenchmarking to 2016-11-04 BUG: itk_python_expression_add_test too many quotes. ENH: Wrap VectorImage with complex real pixel types ENH: Bump PerformanceBenchmarking to 2016-11-07 BUG: Do not assume zero Index in ReinitializeLevelSetImageFilter ENH: Create itk_module_add_library macro BUG: Update computeCodeCoverageLocally.sh for KWStyle addition COMP: Install a newer version of CMake on CircleCI ENH: Use GitHub Pages as the first ExternalData resource ENH: Add tests to demonstrate OSX dynamic_cast failure BUG: Use random seed with for MersenneTwisterRandomVariateGenerator. BUG: Enable program global timestamp BUG: Set random number seed in Mattes metric test BUG: Notify builder that ITK_DYNAMIC_LOADING is required with wrapping BUG: Define ITK_DYNAMIC_LOADING before ITK_WRAP_PYTHON BUG: Set random number seed mutual information metric tests BUG: Wrap std::vector< itk.Point > BUG: Fix wrapping of LandmarkBasedTransformInitializer BUG: Rename UnsharpMaskingImageFilter to UnsharpMaskImageFilter DOC: Add D?enan Zuki? to .mailmap Max Smolens (4): COMP: CID-1266557 StatisticsLabelMapFilter uninitialized scalar field BUG: CID-1355438 QuadEdgeTest1 resource leaks COMP: CID-1355472 MIRegistrationFunction unused value COMP: Fix link errors for VNL template instantiations on Windows Mayeul Chassagnard (7): BUG: Test added and error fixed in HDF5ImageIO ENH: Update add_library TO itk_module_add_library COMP: Set Policy CMP0023 target_link_libraries for Modules/ThirdParty/VNLI... BUG: Add ITK_TEMPLATE_EXPORT to template classes BUG: Fix errors linked to dyn_cast merge BUG: Restore old ITKModule_TEMPLATE_EXPORT specification for classes BUG: dash3win7 dashboard build error unresolved external symbol Michka Popoff (3): ENH: Update UpdatepygccxmlFromUpstream.sh for v1.8.0 ENH: Update igenerator.py for pygccxml v1.8.0 COMP: Use pygccxml's public API for apply definitions Pierre Barbier de Reuille (2): COMP: Fix function naming error when using FFTWD COMP: Fix function naming error when using FFTWD Sean McBride (1): COMP: Bypass HDF5 bugs under TSan Simon Rit (2): COMP: remove C++11 compiler warning for CUDA compilations COMP: remove C++11 compiler warning for CUDA compilations Somesh Kashyap (2): BUG: Override TransformCategoryType for AzimuthElevationToCartesianTransform BUG: -Added test case for itkAzimuthElevationToCartesianTransform Sumedha Singla (1): ENH: Updated the git tag for ITK-Minimal-Path-Extraction remote module Taylor Braun-Jones (4): COMP: Skip path length checks if ITK_SKIP_PATH_LENGTH_CHECKS is enabled COMP: Fix truncation from double to float warning DOC: Fix incorrect itkFactorylessNewMacro documentation COMP: Only include the headers for required OpenCV modules Thien Nguyen (1): PERF: SmapsFileParser unnecessary dynamic_cast VXL Maintainers (4): VNL 2016-05-15 (14f97ab4) VNL 2016-06-22 (23a93adb) VNL 2016-06-29 (d62a2d70) VNL 2016-07-06 (acfa62cc) Vladimir S. FONOV (1): COMP: Build against GCC 5.3.1 Zach Williamson (2): ENH: Update Remote Module Tags BUG: Fix Python Wrappings in C++11 Ziv Yaniv (1): BUG: Metric sampling percentage accepted values outside (0.0, 1.0]. ----------------------------------------------------- Errors or omissions? Please fix them here: https://docs.google.com/document/d/1UQAh7_mDjps0GZYX62biTwFrA54KRvf__4oeT0ymzZg/edit From matt.mccormick at kitware.com Mon Jan 9 20:15:01 2017 From: matt.mccormick at kitware.com (Matt McCormick) Date: Mon, 9 Jan 2017 20:15:01 -0500 Subject: [ITK-users] FW: ExtractImageFilter.Update() inside loop works until 24th iteration In-Reply-To: <50B858FB5F53124F9E32314E5C1B4094446CE653@MBX212.d.ethz.ch> References: <50B858FB5F53124F9E32314E5C1B4094446CE653@MBX212.d.ethz.ch> Message-ID: Hi, There was a bug in the Python wrapping related to the pipeline timestamp when BUILD_SHARED_LIBS was OFF that has been addressed in ITK 4.11.0. Was BUILD_SHARED_LIBS OFF in this case? Does the 4.11 release candidate address the issue? Thanks, Matt On Sun, Jan 1, 2017 at 5:40 PM, D'Isidoro Fabio wrote: > Update: generalizing the problem, I figured out that any time the final > filter is updated inside a loop, after a certain number of iterations the > Update() does not work anymore and filter.GetOutput() returns always the > same image as the last working iteration. I guess it?s a memory issue. This > issue happens no matter what the final filter of the pipeline is (I tried > with ResampleImageFilter, Writer, ExtractImageFilter), and even when using > the filter.InPlaceOn() when possible. This issue happens even if I split the > pipeline and avoid connecting its components with SetInput( GetOutput() ). > > > > Are filters of a pipeline not supposed to be used in a loop (where, in my > case, the given transform changes at any loop)? > > > > I guess the issue formulated this way is a common issue. > > > > Thank you for your help. > > > > Fabio. > > > > From: D'Isidoro Fabio > Sent: Sonntag, 1. Januar 2017 19:48 > To: insight-users at itk.org > Subject: ExtractImageFilter.Update() inside loop works until 24th iteration > > > > Hallo, > > > > I work with ITK Python. I need to explore the domain of an image metric > (like in MeanSquaresImageMetric1.cxx) for 2D/3D registration (using > RayCastInterpolator). Since the metric works only between 2D/2D or 3D/3D > images, I need to convert the generated DRR (SizeX, SizeY, 1) into a 2D > image (SizeX, SizeY) with ExtractImageFilter, before metric evaluation. I > then pass to the metric the converted 2D DRR as moving image and the 2D > fixed image for similarity metric evaluation (with IdentityTransform, and > NearestNeighbourInterpolator set for the metric). Metric evaluation is done > in a loop within a range of the domain for the transform parameters. For > each iteration of the loop (that is, different transforms used for > generation of the DRR) the ExtractImageFilter is updated with Update(). > > > > The code runs but mysteriously stops working properly at the 24th iteration > of the loop for the domain range. After the 24th iteration I figured no new > DRR is generated and the metric value keeps constant at the value of the > 24th iteration. I tried with input 3D volumes of different sizes and with > different ranges for the transform parameters, but the code stops generating > new DRRs always after the 24th iteration. > > > > The important parts of the code are: > > > > interpolatorRayCast = itk.RayCastInterpolateImageFunction[MovingImageType, > ScalarType].New() > > filterRayCast = itk.ResampleImageFilter[MovingImageType, > MovingImageType].New() > > filterRedim = itk.ExtractImageFilter[MovingImageType, FixedImageType].New() > > ? > > filterRayCast.SetInput( movingImageReader.GetOutput() ) > > filterRayCast.SetInterpolator( interpolatorRayCast ) > > ? > > filterRedim.SetInput(filterRayCast.GetOutput()) > > ? > > for dx in translation_range_x: > > for dy in translation_range_y: > > for dz in translation_range_z: > > ? > > transformDRR.SetParameters( transform_parameters ) > > > > filterRedim.Update() > > > > value = metric.GetValue() > > > > > > I believe the pipeline might not be set properly, but I don?t know where. > > > > In attachment you find the code and the required inputs. > > > > Any help would be highly appreciated, thank you! > > > > Fabio. > > > _____________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Kitware offers ITK Training Courses, for more information visit: > http://www.kitware.com/products/protraining.php > > Please keep messages on-topic and check the ITK FAQ at: > http://www.itk.org/Wiki/ITK_FAQ > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/insight-users > From simon.rit at creatis.insa-lyon.fr Tue Jan 10 07:06:20 2017 From: simon.rit at creatis.insa-lyon.fr (Simon Rit) Date: Tue, 10 Jan 2017 13:06:20 +0100 Subject: [ITK-users] pthread_create fail Message-ID: Dear all, I have been fighting for a couple of weeks to have ITK-based software (in this case RTK ) run properly after an upgrade of our cluster to Fedora 24 (where our nightly tests are run). These are tests that are running well on other platforms. We have finally found a lead: for a reason that we don't understand, pthread_create fails. First, ITK does not handle correctly this situation. I have submitted a patch for this. My question is : does anyone know why a pthread_create would fail and is there any solution? This is the first time that I see such a behavior. Thanks in advance for your help, Simon -------------- next part -------------- An HTML attachment was scrubbed... URL: From simon.rit at gmail.com Tue Jan 10 07:08:21 2017 From: simon.rit at gmail.com (Simon Rit) Date: Tue, 10 Jan 2017 13:08:21 +0100 Subject: [ITK-users] pthread_create fail Message-ID: Dear all, I have been fighting for a couple of weeks to have ITK-based software (in this case RTK ) run properly after an upgrade of our cluster to Fedora 24 (where our nightly tests are run). These are tests that are running well on other platforms. We have finally found a lead: for a reason that we don't understand, pthread_create fails. First, ITK does not handle correctly this situation. I have submitted a patch for this. My question is : does anyone know why a pthread_create would fail and is there any solution? This is the first time that I see such a behavior. Thanks in advance for your help, Simon -------------- next part -------------- An HTML attachment was scrubbed... URL: From blowekamp at mail.nih.gov Tue Jan 10 09:23:21 2017 From: blowekamp at mail.nih.gov (Lowekamp, Bradley (NIH/NLM/LHC) [C]) Date: Tue, 10 Jan 2017 14:23:21 +0000 Subject: [ITK-users] pthread_create fail In-Reply-To: References: Message-ID: <5990A8A2-9479-4072-AAE0-87457782CD3C@mail.nih.gov> Hello, Where is the program execution when the thread being created? It could fail if the environment has a limit on the number of threads/processes that can run ( i.e. some ulimit like seeing ). Brad On Jan 10, 2017, at 7:06 AM, Simon Rit > wrote: Dear all, I have been fighting for a couple of weeks to have ITK-based software (in this case RTK) run properly after an upgrade of our cluster to Fedora 24 (where our nightly tests are run). These are tests that are running well on other platforms. We have finally found a lead: for a reason that we don't understand, pthread_create fails. First, ITK does not handle correctly this situation. I have submitted a patch for this. My question is : does anyone know why a pthread_create would fail and is there any solution? This is the first time that I see such a behavior. Thanks in advance for your help, Simon _____________________________________ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Kitware offers ITK Training Courses, for more information visit: http://www.kitware.com/products/protraining.php Please keep messages on-topic and check the ITK FAQ at: http://www.itk.org/Wiki/ITK_FAQ Follow this link to subscribe/unsubscribe: http://public.kitware.com/mailman/listinfo/insight-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From matt.mccormick at kitware.com Tue Jan 10 16:00:51 2017 From: matt.mccormick at kitware.com (Matt McCormick) Date: Tue, 10 Jan 2017 16:00:51 -0500 Subject: [ITK-users] pthread_create fail In-Reply-To: References: Message-ID: Hi Simon, Thanks for investigating the issue and submitting a patch! It looks like the patch is ready to go with one minor tweak. This behavior is unfamiliar to my experiences. Thanks, Matt On Tue, Jan 10, 2017 at 7:08 AM, Simon Rit wrote: > Dear all, > I have been fighting for a couple of weeks to have ITK-based software (in > this case RTK) run properly after an upgrade of our cluster to Fedora 24 > (where our nightly tests are run). These are tests that are running well on > other platforms. We have finally found a lead: for a reason that we don't > understand, pthread_create fails. > First, ITK does not handle correctly this situation. I have submitted a > patch for this. > My question is : does anyone know why a pthread_create would fail and is > there any solution? This is the first time that I see such a behavior. > Thanks in advance for your help, > Simon > > > _____________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Kitware offers ITK Training Courses, for more information visit: > http://www.kitware.com/products/protraining.php > > Please keep messages on-topic and check the ITK FAQ at: > http://www.itk.org/Wiki/ITK_FAQ > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/insight-users > From simon.rit at creatis.insa-lyon.fr Tue Jan 10 16:06:32 2017 From: simon.rit at creatis.insa-lyon.fr (Simon Rit) Date: Tue, 10 Jan 2017 22:06:32 +0100 Subject: [ITK-users] pthread_create fail In-Reply-To: <5990A8A2-9479-4072-AAE0-87457782CD3C@mail.nih.gov> References: <5990A8A2-9479-4072-AAE0-87457782CD3C@mail.nih.gov> Message-ID: Thanks for your answer. The program execution is on my lab cluster, running Fedora 24 and PBS for job scheduling. I did not see any such limit but I'm probably missing something. Note that the programs seem to run with ITK_USE_THREADPOOL=ON. Simon On Tue, Jan 10, 2017 at 3:23 PM, Lowekamp, Bradley (NIH/NLM/LHC) [C] < blowekamp at mail.nih.gov> wrote: > Hello, > > Where is the program execution when the thread being created? > > It could fail if the environment has a limit on the number of > threads/processes that can run ( i.e. some ulimit like seeing ). > > Brad > > On Jan 10, 2017, at 7:06 AM, Simon Rit > wrote: > > Dear all, > I have been fighting for a couple of weeks to have ITK-based software (in > this case RTK ) run properly after an upgrade of our > cluster to Fedora 24 (where our nightly tests are run). These are tests > that are running well on other platforms. We have finally found a lead: for > a reason that we don't understand, pthread_create fails. > First, ITK does not handle correctly this situation. I have submitted a > patch for this. > My question is : does anyone know why a pthread_create would fail and is > there any solution? This is the first time that I see such a behavior. > Thanks in advance for your help, > Simon > _____________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Kitware offers ITK Training Courses, for more information visit: > http://www.kitware.com/products/protraining.php > > Please keep messages on-topic and check the ITK FAQ at: > http://www.itk.org/Wiki/ITK_FAQ > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/insight-users > > > > _____________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Kitware offers ITK Training Courses, for more information visit: > http://www.kitware.com/products/protraining.php > > Please keep messages on-topic and check the ITK FAQ at: > http://www.itk.org/Wiki/ITK_FAQ > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/insight-users > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From blowekamp at mail.nih.gov Wed Jan 11 15:06:14 2017 From: blowekamp at mail.nih.gov (Lowekamp, Bradley (NIH/NLM/LHC) [C]) Date: Wed, 11 Jan 2017 20:06:14 +0000 Subject: [ITK-users] pthread_create fail In-Reply-To: References: <5990A8A2-9479-4072-AAE0-87457782CD3C@mail.nih.gov> Message-ID: <6597A0D2-F8B0-4E9B-9280-353C6B6F77ED@mail.nih.gov> I don?t have much experience with ITK_USE_THREADPOOL enabled. I believe it is still labeled experimental. Does this problem occur if this feature is disabled? Brad On Jan 10, 2017, at 4:06 PM, Simon Rit > wrote: Thanks for your answer. The program execution is on my lab cluster, running Fedora 24 and PBS for job scheduling. I did not see any such limit but I'm probably missing something. Note that the programs seem to run with ITK_USE_THREADPOOL=ON. Simon On Tue, Jan 10, 2017 at 3:23 PM, Lowekamp, Bradley (NIH/NLM/LHC) [C] > wrote: Hello, Where is the program execution when the thread being created? It could fail if the environment has a limit on the number of threads/processes that can run ( i.e. some ulimit like seeing ). Brad On Jan 10, 2017, at 7:06 AM, Simon Rit > wrote: Dear all, I have been fighting for a couple of weeks to have ITK-based software (in this case RTK) run properly after an upgrade of our cluster to Fedora 24 (where our nightly tests are run). These are tests that are running well on other platforms. We have finally found a lead: for a reason that we don't understand, pthread_create fails. First, ITK does not handle correctly this situation. I have submitted a patch for this. My question is : does anyone know why a pthread_create would fail and is there any solution? This is the first time that I see such a behavior. Thanks in advance for your help, Simon _____________________________________ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Kitware offers ITK Training Courses, for more information visit: http://www.kitware.com/products/protraining.php Please keep messages on-topic and check the ITK FAQ at: http://www.itk.org/Wiki/ITK_FAQ Follow this link to subscribe/unsubscribe: http://public.kitware.com/mailman/listinfo/insight-users _____________________________________ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Kitware offers ITK Training Courses, for more information visit: http://www.kitware.com/products/protraining.php Please keep messages on-topic and check the ITK FAQ at: http://www.itk.org/Wiki/ITK_FAQ Follow this link to subscribe/unsubscribe: http://public.kitware.com/mailman/listinfo/insight-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From simon.rit at creatis.insa-lyon.fr Thu Jan 12 01:24:38 2017 From: simon.rit at creatis.insa-lyon.fr (Simon Rit) Date: Thu, 12 Jan 2017 07:24:38 +0100 Subject: [ITK-users] pthread_create fail In-Reply-To: <6597A0D2-F8B0-4E9B-9280-353C6B6F77ED@mail.nih.gov> References: <5990A8A2-9479-4072-AAE0-87457782CD3C@mail.nih.gov> <6597A0D2-F8B0-4E9B-9280-353C6B6F77ED@mail.nih.gov> Message-ID: Yes, it only occurs if it is disabled. I don't think it's labeled experimental, at least I have activated it without any specific option in my ITK compilation. Simon On Wed, Jan 11, 2017 at 9:06 PM, Lowekamp, Bradley (NIH/NLM/LHC) [C] < blowekamp at mail.nih.gov> wrote: > I don?t have much experience with ITK_USE_THREADPOOL enabled. I believe it > is still labeled experimental. Does this problem occur if this feature is > disabled? > > Brad > > > > On Jan 10, 2017, at 4:06 PM, Simon Rit > wrote: > > Thanks for your answer. The program execution is on my lab cluster, > running Fedora 24 and PBS for job scheduling. I did not see any such limit > but I'm probably missing something. Note that the programs seem to run with > ITK_USE_THREADPOOL=ON. > Simon > > On Tue, Jan 10, 2017 at 3:23 PM, Lowekamp, Bradley (NIH/NLM/LHC) [C] < > blowekamp at mail.nih.gov> wrote: > >> Hello, >> >> Where is the program execution when the thread being created? >> >> It could fail if the environment has a limit on the number of >> threads/processes that can run ( i.e. some ulimit like seeing ). >> >> Brad >> >> On Jan 10, 2017, at 7:06 AM, Simon Rit >> wrote: >> >> Dear all, >> I have been fighting for a couple of weeks to have ITK-based software (in >> this case RTK ) run properly after an upgrade of >> our cluster to Fedora 24 (where our nightly tests are run). These are tests >> that are running well on other platforms. We have finally found a lead: for >> a reason that we don't understand, pthread_create fails. >> First, ITK does not handle correctly this situation. I have submitted a >> patch for this. >> My question is : does anyone know why a pthread_create would fail and is >> there any solution? This is the first time that I see such a behavior. >> Thanks in advance for your help, >> Simon >> _____________________________________ >> Powered by www.kitware.com >> >> Visit other Kitware open-source projects at >> http://www.kitware.com/opensource/opensource.html >> >> Kitware offers ITK Training Courses, for more information visit: >> http://www.kitware.com/products/protraining.php >> >> Please keep messages on-topic and check the ITK FAQ at: >> http://www.itk.org/Wiki/ITK_FAQ >> >> Follow this link to subscribe/unsubscribe: >> http://public.kitware.com/mailman/listinfo/insight-users >> >> >> >> _____________________________________ >> Powered by www.kitware.com >> >> Visit other Kitware open-source projects at >> http://www.kitware.com/opensource/opensource.html >> >> Kitware offers ITK Training Courses, for more information visit: >> http://www.kitware.com/products/protraining.php >> >> Please keep messages on-topic and check the ITK FAQ at: >> http://www.itk.org/Wiki/ITK_FAQ >> >> Follow this link to subscribe/unsubscribe: >> http://public.kitware.com/mailman/listinfo/insight-users >> >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From blowekamp at mail.nih.gov Thu Jan 12 11:19:48 2017 From: blowekamp at mail.nih.gov (Lowekamp, Bradley (NIH/NLM/LHC) [C]) Date: Thu, 12 Jan 2017 16:19:48 +0000 Subject: [ITK-users] [ANN] ITK 4.11 Release Candidate 1 is ready for testing! In-Reply-To: References: Message-ID: Hello, An additional bug fix that may have impact on registration is this one: https://github.com/InsightSoftwareConsortium/ITK/commit/99a7ac8f3ab88cdc508084e4921f0f4c9678468b The ITKv4 parameter estimators where using an incorrect algorithm for ?affine? or ?linear? transforms. The previous incorrect algorithm used random samples, which produced unstable parameter scales. Because of the change to the wall clock initialized random generator, I have found that many registrations were overly sensitive to these random estimated scale. The correction to fixed corner based sampling should produce stable and reproducible results moving forward. Brad > On Jan 9, 2017, at 8:08 PM, Matt McCormick wrote: > > On behalf of the Insight Toolkit community, we are proud to announce > that ITK 4.11 release candidate 1 has been tagged and is available for > testing! Please take this opportunity to test the new features in the > release candidate. > > > To obtain the source code, > > git clone https://itk.org/ITK.git > cd ITK > git checkout -q --detach v4.11rc01 > > For more details, please see the Git documentation [1]. > > > A few selected highlights for this release: > > > - Remote Modules were added to: perturb mesh vertices with additive > gaussian noise, accurately benchmark computational performance, > perform principal components analysis of scalar, vector, and mesh > vertex data, create a run-length encoded memory compression scheme for > itk::Image, run N-D morphological contour interpolation, interpolate > multi-label images, iterate over multiple images simultaneously, and > compute inverse displacement fields. > - NumPy bridge support is now enabled by default with NumPy array > views of multi-component images and VNL vectors and matrices. > - Internal HDF5 was updated to the latest upstream version along > with a number of other third-party libraries. > > > This release introduces a new template class export specification > macro, ITK_TEMPLATE_EXPORT. The macro should be used with templated > classes to address failing dynamic_cast's and exception catching > across binaries on Mac OSX. > > Bugs were addressed and improvements were made to how the > pseudo-random number generator is used. Tests that rely on the random > number generator should explicitly set the global seed at start: > > itk::Statistics::MersenneTwisterRandomVariateGenerator::GetInstance()->SetSeed( > 121212 ); > > To improve randomness, new instances of the generator start from a > different seed; some minor differences in the output of algorithms > that uses the generator, like mutual information metrics, should be > expected. > > > Please test the release candidate and share your experiences on the > mailing list, issue tracker, and Gerrit Code Review. > > An Experimental build, which demonstrates how the test suite performs > on your local build system, can be submitted to the dashboard [2] > with: > > mkdir ../ITK-build > cd ../ITK-build > cmake ../ITK > ctest -j 4 -M Experimental -T Configure -T Build -T Test -T Submit > > Visual Studio builds must also add ?-C Release? to the ctest command. > > Notify the mailing list if there are any unexpected failures. Testing > your own applications against the RC is also appreciated. > > > Congratulations to the 31 contributors to this release. We would > especially like to recognize the new contributors: Hastings Greer, > Gilles Filippini, Thien Nguyen, Caspar Goch, Mayeul Chassagnard, > Somesh Kashyap, Simon Rit, Pierre Barbier de Reuille, and Maeliss > Jallais. > > > The 4.11.0 final release is scheduled for January 23rd. > > > [1] http://www.itk.org/Wiki/ITK/Git > > [2] http://open.cdash.org/index.php?project=Insight > > > New Features > ------------ > > * Wrapping Improvements > - Python GetArrayFromImage() and GetImageFromArray() from > ITKBridgeNumPy are directly accessible from the Python itk namespace. > - The itk package loads much faster: individual modules are loaded > only when required. > - Conversion of ITK images from and to NumPy array using Bridge > NumPy supports RGB, RGBA, and Vector images. > - VNL vectors and VNL matrices can be converted from and to NumPy > objects with respectively the new couple of functions > GetArrayFromVnlVector()/GetVnlVectorFromArray() and > GetArrayFromVnlMatrix()/GetVnlMatrixFromArray() > - The global timestamp is used across all ITK Python modules when > built statically > - Wrap additional classes such as KernelFunctionBase > - itk_python_add_test CMake function added for Python script testing > in ITK modules > > * New Remote Modules > - DVMeshNoise > - Perturbing mesh vertices with additive gaussian noise > - http://hdl.handle.net/10380/3567 > - PerformanceBenchmarking > - Accurate benchmarking of computational performance > - http://hdl.handle.net/10380/3557 > - PrincipalComponentsAnalysis > - Principal components analysis of scalar, vector, and mesh vertex data > - http://hdl.handle.net/10380/3386 > - RLEImage > - Run-length encoded memory compression scheme for itk::Image > - http://hdl.handle.net/10380/3562 > - MorphologicalContourInterpolation > - N-D morphological contour interpolation > - http://hdl.handle.net/10380/3563 > - GenericLabelInterpolator > - A generic interpolator for multi-label images > - http://hdl.handle.net/10380/3506 > - MultipleImageIterator > - Iterate over multiple images simultaneously > - http://hdl.handle.net/10380/3455 > - FixedPointInverseDisplacementField > - Computes inverse displacement field > - http://hdl.handle.net/10380/3222 > > * Core Improvements > - New ITK_TEMPLATE_EXPORT for templated classes resolves > cross-binary dynamic_cast on Mac OSX > - New MersenneTwisterRandomVariateGenerator instances are > initialized with different seeds > - Use compiler feature detection in CMake for C++11 features, etc. > - New CMake macro itk_module_add_library for creating libraries in ITK modules > - Improved support for ccache and distcc with > CMAKE__COMPILER_LAUNCHER (CMake >=3.4 required) > - Support for .sha512 ExternalData content links > - GitHub Pages and data.kitware.com ExternalData repositories added > - GPGPU system support for C++11 > - Support of new compilers: Visual Studio 15 and XCode 8.2.1 > (clang-800.0.42.1) > > * Filtering Improvements > - HessianToObjectnessMeasure moved out of the ITKReview module > - New UnsharpMaskImageFilter for image edge enhancement > > * IO Improvements > - TransformFactory class has been moved to a separate module > - Spline order added to BSplineTransform identifier > - Improved NIFTI orientation support > > * Documentation Improvements > - Updates to the Software Guide, Doxygen, Wiki and Sphinx Examples > > * Third Party Library Updates > - pygccxml updated to v1.8.0 > - VNL updated to latest upstream (2016.07.06) > - SWIG updated to v3.0.11 > - KWSys updated to latest upstream (2016.11.21) > - HDF5 updated to v1.8.17 > - SCIFIO updated to latest upstream (2016.12.01) > - DCMTK updated to 3.6.1_20121012 > - CastXML to latest upstream (2016.01.28) > > * Improved Code Coverage -- we are at 85.44%! > - Jon Haitz-Legarreta's extensive code coverage improvements > - https://blog.kitware.com/why-should-we-spend-time-writing-tests/ > > * *Lots* of important bug fixes > > * And much more! See details in the log below. > > > Changes from v4.10.0 to v4.11rc01 > ------------------------------------------------ > > Bill Lorensen (4): > COMP: Restore support for clang 3.0 compiler > COMP: Consistent use of ModifiedTimeType > ENH: Bump WikiExamples remote module version > ENH: Bump WikiExamples version > > Bradley Lowekamp (57): > ENH: Add registered TrasformIO's to exception > ENH: Use template or constant for loop stop condition > ENH: Updating SWIG version to 3.0.9 > COMP: Address VS9 ambiguous std::abs call in Haung calculator > COMP: Fix undefined NumericTraits::Zero and One errors with mingw64 > BUG: Fix segfault if ~CleanUpObjectFactory called multiple times > BUG: Address itkHDF5ImageIO test failures for mingw64 > BUG: demonstrate dynamic_cast failure when reading transforms > BUG: Address itkHDF5ImageIO test failures for mingw64 > ENH: Updating SWIG version to 3.0.10 > ENH: Enable CMP0063 New behavior > COMP: Enable hidden visibility property with vxl static libraries > COMP: Enable hidden visibility property with HDF5 static libraries > COMP: Enable hidden visibility property with HDF5 static libraries > BUG: Match Add2 function to AddImageFilter documentation > ENH: Improve support for std::complex with PowImageFilter > ENH: Explicitly mark required files for dependent tests > COMP: Bypass XCode 7.3,8 internal compilation error > COMP: Address CMake configuration error with itkJPEG2000Test03 property > BUG: Correct test's REQUIRED_FILES to only the input. > ENH: move HessianToObjectnessMeasure filter out of Review > ENH: Separate TransformFactory class into separate module > DOC: Add links between similar label to rgb filters > ENH: Separate data from function calls > COMP: Fix changed Graft method > ENH: Reduce template dependencies on CalculateRotationMatrix > ENH: Add Functor Accessors to LabelMapToRGB filter > BUG: Enable VirtualDomain and FixedTransform in RegMethv4 > BUG: Use BSpline Order 3 for 2D in transform factory. > ENH: Add spline order to BSplineTransform's string id > ENH: Adding initial CircleCi configuration file > COMP: Fix float to unsigned integer conversion warnings > BUG: Include installed modules in ITK_MODULES_ENABLED > COMP: Address CMake error that ITKGPUCommon is not in export > COMP: Address wrong library types with VS and shared libraries > BUG: Ensure CreateImageIO is concurrent thread safe > ENH: Mark HDF5 CMake options as internal > COMP: Add template export declaration for ParametricPath > COMP: Correct TEMPLATE_EXPLICIT definition in Path module > ENH: Factor out common code in the TrasformFactoryBase registration > ENH: Add CMake variable for max transform dimension, defaults 4 > ENH: Create CMake module to check for private RTTI compatibility > ENH: Improving setting of default ITK_TEMPATE_VISIBILITY_DEFAULT > COMP: Correct ifndef value to allow user defined ITK_TEMPLATE_EXPORT > BUG: Add explicit instantiate for ObjectToObjectOptimizerBase > COMP: Use add_definitions for CMake 2.8.9 compatibility > COMP: Add warning suppression for distcc warning > ENH: Explicitly instantiate the optimizer base over float > BUG: Use IsLinear to check if transform is "affine" > ENH: Remove unneeded includes of random iterator header > ENH: Improve thread-safety for Generator, and unique New sequence > ENH: Do not use global random generator > BUG: Update v3 registration metrics to use local seed > ENH: Prefer setting local seed over global in tests. > ENH: Update SWIG to latest 3.0.11 release > BUG: relax testing parameters for v3 translation registration > BUG: Restore baseline for debug registration > > Caspar Goch (2): > BUG: Use printable type for RGBA pixel ostream for ITK-3501 > STYLE: Remove extra space for ITK-3501 > > Christina Rossmanith (1): > DOC: Added more details to the class Doxygen documentation. > > Davis Vigneault (2): > COMP: VCL_DEFINE_SPECIALIZATION not defined > ENH: Add remote module DVMeshNoise > > D?enan Zuki? (27): > BUG: Fixing CID-1355433 (IDENTICAL_BRANCHES) > ENH: Adding MultipleImageIterator as a remote module > COMP: enables TBB 4.4 back-end for VTK7's SMP > COMP: enabling position independent code flag for FFTW > ENH: adding configuration file for code reformatting tool clang-format > ENH: Updating hooks to work with Windows/TortoiseGit/KDiff3 > COMP: Fixing -fPIC flag passing with Ninja build system > ENH: Adding RLEImage as a remote module > ENH: Updating uncrustify configuration to current git version > STYLE: better compliance with ITK style > STYLE: A new option in uncrustify, updating the config file accordingly > ENH: Adding MorphologicalContourInterpolation as a remote module > ENH: improving documentation > BUG: fixing buffer growing endlessly, as reported by Timothee Evain > BUG: fixing buffer growing endlessly, as reported by Timothee Evain > STYLE: default uncrustify configuration file is less aggressive > COMP: Fixing warning > COMP: VS15 compiler fix > BUG: casting -9 to unsigned produced unwanted result > BUG: Ensuring consistency between debug and release > COMP: Updating LesionSizingToolkit after some recent compile fixes > COMP: respect option METAIO_USE_NAMESPACE > ENH: updating version of AnisotropicDiffusionLBR > ENH: adding UnsharpMaskingImageFilter > COMP: explicitly cast to output type > BUG: double call to update would cause empty output image > ENH: Updating RLEImage remote module. Change-log: > > Eugene Prilepin (4): > ENH: Add the "ITK_USE_GPU" to ITK Config > BUG: Fix API for set/get "LaplacianImageFilter" object > ENH: Add support of images types with the 'CovariantVector' pixel type > ENH: Add python test for the 'GradientVectorFlowImageFilter' wrap > > Francois Budin (52): > ENH: Adding GetArrayFromImage in python itk namespace > ENH: Adding GetImageFromArray in python itk namespace > ENH: *_WRAP_* variable per external module > BUG: ImportImageFilter not responsible of memory management > ENH: New remote module GenericLabelInterpolator > DOC: SetNumberOfOutputs had wrong comment > BUG: lazyAttributes dictionary keys could be over-ridden > BUG: lazyAttributes dictionary keys could be over-ridden > BUG: Fix recent update of HDF5 (1.8.17) > ENH: Update SCIFIO to latest version on 08/23/2016 > ENH: Addition of the remote module FixedPointInverseDisplacementField > ENH: Update SCIFIO to latest version on 08/29/2016 > BUG: Path to commit was relative instead of absolute > ENH: Path to SetupForDevelopment is relative, not absolute > BUG: LSMImageIO write function was not checking image dimension > BUG: LSMImageIO was not checking correctly image dimension > BUG: Missing associated test data > BUG: Missing associated test data > ENH: Bump CMakeLists.txt version to 4.10.1. > BUG: Quotes are not escaped in configured cmake file > ENH: Improving API of Graft() in itk::Image > ENH: Updating ITKGenericLabelInterpolator remote module > ENH: Update ITKIOTransformDCMTK remote module > BUG: Factory registration should depend on ITK_BUILD_SHARED > COMP: Updating DCMTK compilation for Ninja > ENH: Update version of DCMTK to 3.6.1_20121012 > ENH: Update SCIFIO to latest version on 10/25/2016 > BUG: Swig and PCRE do not support space in installation paths > BUG: exit() call from within piped commands was not exiting the script > BUG: Typo in folder creation command > ENH: Only display message for transform registered multiple times in debug > ENH: Image spacing must be positive > BUG: Supported extensions by PNG IO were not added in constructor. > DOC: Documentation in itkRBGAPixel and itkRGBPixel was incorrect. > ENH: Update SCIFIO to lastest (2016.12.01) > ENH: FixedPointInverseDisplacementField moved to InsightSoftwareConsortium > COMP: Remove compilation warnings > ENH: Improved support of ccache and distcc > BUG: GPUImage regression due to API change. > ENH: Update Bridge Numpy (2016.12.05) > ENH: Update VariationalRegistration to remove warnings during compilation > ENH: FindPythonLibs does not support both debug and release > python libraries > ENH: Update VariationalRegistration > BUG: Missing ITK_TEMPLATE_EXPORT in forward declaration of itk::ImageBase > BUG: Missing ITK_TEMPLATE_EXPORT in itkOptimizerParametersHelper > BUG: Missing ITK_TEMPLATE_EXPORT in templated class > BUG: Remove linkage warnings on MacOS > BUG: HDF5 CMake installation directory variable had not been updated > BUG: Missing include header in AnisotropicDiffusionBLR remote > module hxx files > COMP: Silencing unused variable warning in itkTimeStamp > STYLE: Improve style checking by using module ITKKWStyleOverwrite.txt > COMP: OS*Barrier functions are deprecated on MacOS 10.12 > > GCC-XML Upstream (1): > ENH: pygccxml v1.8.0 (reduced) > > Gert Wollny (1): > BUG: Relax vnl_complex floating point comparisons for i386 > > Gilles Filippini (1): > BUG: Use NATIVE_HBOOL for encoding HDF5 types. > > HDF Group (1): > ENH: hdf5 1.8.17-r30218 (reduced) > > Hans Johnson (23): > COMP: Use cmake WriteCompilerDetectionHeader > ENH: Use itk_compiler_detection versions > COMP: Need ITK_NOEXCEPT_OR_THROW macro. > COMP: Provide consistent granular C++11 support > STYLE: Use granular ITK_COMPILER_CXX_STATIC_ASSERT > STYLE: Prefer to use consistent definitions > COMP: Improve robustness of identifying the compiler standard used > BUG: try_compile for AlignAs were always failing > STYLE: Provide a well documented macro for repeated code > STYLE: Delete functions in consistent way > COMP: GPU baseclass ivars need to be protected > COMP: Remove unnecessary circular dependancy > COMP: Add long long usage for HDF5 > COMP: Add long long usage for HDF5 > STYLE: Prefer static small array to dynamic array > BUG: Confusing interface for FFTW wisdom files > STYLE: Output dimension from OutputImageType > STYLE: Code review style cleanups > STYLE: Prefer to use ITK AssertOrThrow macros > ENH: Add OverrideBoundaryCondition logic > ENH: Provide mechanism for enhanced NIFTI support > BUG: Use NIFTI sform/qform conventions correctly > ENH: Remove ambiguity about sform/qform > > Hastings Greer (8): > BUG: ITK-3448 Wrap itkQuadEdgeCellTraitsInfo more specifically > BUG: make itkTriangleHelper instantiable to ease wrapping > BUG: remove lsqr because of license issues ITK 1160 > BUG: make itkTriangleHelper instantiable to ease wrapping > BUG: initialize X to zero in lsmr Solve > BUG: Labled Point Set Registration: test multiple labels > BUG: Fix python wrapping of Cuberille remote module > BUG: Add test demonstrating Python global timestamp issue > > Jean-Christophe Fillion-Robin (5): > STYLE: UseITK: Set ImageIO exceptions using new convention. See #3393 > STYLE: MeshIO: Moves virtual destructor into cpp files. See #3393 > STYLE: Update MeshIO factories to use RegisterFactoryInternal. See #3393 > STYLE: MeshIO: Move MeshFileWriterException into its own file. See #3393 > STYLE: MeshIO: Remove unused include from headers. See #3393 > > Johan Andruejol (3): > ENH: Add missing itkKernelFunctionBase wrapping > ENH: Add PrincipalComponentsAnalysis remote module > COMP: Override cannot be used with inline > > Jon Haitz Legarreta (216): > ENH: Improve itkFlatStructutingElement coverage. > ENH: Improve itkPathToImageFilter class coverage. > ENH: Improve itkIsolatedWatershedImageFilter coverage. > ENH: Improve itkLogSigmoidTransferFunction coverage. > STYLE: Improve itkBSplineTransform doc style. > ENH: Improve GaborKernelFunctionCoverage. > PERF: Remove duplicate itkMath include > STYLE: Move the PrintSelf method to the end > STYLE: Improve the itkScalarToRGBColormapImageFilter style. > STYLE: Delete duplicate method documentation > STYLE: Remove method documentation from implementation file > STYLE: Improve GACLevelSet classes' style > STYLE: Improve test style > ENH: Improve itkGaussianDerivativeImageFilter coverage. > ENH: Improve the itkScalarToRGBColormapImageFilter coverage > STYLE: Improve itkScalarToRGBColormap test style > ENH: Improve GACLSImageFilter classes' coverage > STYLE: Improve comment style in GACLS tests > ENH: Improve itkImportImageFilter coverage > ENH: Improve itkVideoFileReader coverage > ENH: Improve itkVideoFileWriter coverage > STYLE: Improve the itkVideoFileWriter style. > STYLE: Imrpove itkVideoFileReader style. > ENH: Improve the itkBSplineControlPointImageFunction coverage > STYLE: Improve the itkIntensityWindowingImageFilter style > STYLE: Improve the itkIntensityWindowingImageFilter test style > ENH: Improve ImageToSpatialObjectRegistrationMethod coverage > STYLE: Improve test style > ENH: Improve MaskNeighborhoodOperatorImageFilter coverage > ENH: Improve itkMeshFileWriter coverage > ENH: Improve RescaleIntensityImageFilter coverage. > ENH: Improve itkClampImageFilter coverage. > BUG: Fix ivar type casting in PrintSelf. > STYLE: Improve MRIBiasFieldCorrectionFilter style. > ENH: Improve MRIBiasFieldCorrectionFilter coverage. > ENH: Improve itkIntensityWindowingImageFilter coverage > BUG: Fix Run-time type information in CSV module classes. > ENH: Improve the itkHistogram class code coverage. > DOC: Fix documentation typo. > STYLE: Improve the ImproveRescaleIntensityImageFilter style. > PERF: Make the itkVideoFileReader ivars private > PERF: Make itkVideoFileWriter ivars private > ENH: Improve coverage for itk::OrientImageFilter. > STYLE: Improve itk::OrientImageFilter class style. > ENH: Improve itkCSVNumericObjectFileWriter coverage. > ENH: Add missing standard class typdefs. > ENH: Improve itkVoronoiSegmentationImageFilter coverage. > ENH: Improve itkVoronoiSegmentationImageFilter style. > STYLE: Improve the MalahanobisDistanceThresholdImageFunction style. > ENH: Improve coverage for itkMalahanobisDistanceThreshold. > ENH: Improve itk::MinimumMaximumImageCalculator coverage. > ENH: Improve itkMinimumMaximumImageCalculator style. > BUG: Fix type mismatch in test. > STYLE: Improve itkPolylineMaskImagefilter style. > ENH: Improve itkPolylineMaskImageFilter coverage. > ENH: Improve itkFileListVideoStyle. > ENH: Improve itkLandmarkBasedTransformInitializer coverage. > ENH: Add baseline image to itkPolylineMaskImageFilter test. > ENH: Improve coverage for itkBSplineTransformInitializer. > STYLE: Improve itkBSplineTransformInitializer doc style. > ENH: Enhance itkBSplineTransformInitializer implementation. > DOC: Fix typo in method documentation. > ENH: Improve the itkRegularStepGradientDescentOptimizerv4 style. > STYLE: Improve the itkSimpleContourExtractorImageFilter style. > ENH: Exercise the class' Get methods. > ENH: Improve coverage for itkStatisticsOpeningLabelMapFilter. > ENH: Improve style for itkThresholdLabelerImageFilter. > ENH: Improve itkThresholdLabelerImageFilter coverage. > ENH: Get internal ImageIO via a const macro. > ENH: Improve the itkSimpleContourExtractorImageFilter coverage. > STYLE: Improve the itkMetaArray class style. > ENH: Improve MetaArrayReader/Writer coverages. > ENH: Improve the itkCovarianceImageFunction style. > STYLE: Improve itkVoronoiDiagram2DGenerator style. > ENH: Improve VoronoiDiagram2DGenerator coverage. > STYLE: Improve the itkBayesianClassifierImageFilter style. > STYLE: Improve the itkMetaArrayWriter style. > ENH: Improve itkCovarianteImageFunction coverage. > COMP: Fix signed/unsigned int comparison warning. > DOC: Improve itkGrayscaleDilateImageFilter documentation. > DOC: Improve documentation for itkGrayscaleErodeImageFilter. > DOC: Improve ConfigureHistogram method documentation. > STYLE: Improve the itkMovingHistogramMorphologyImagefilter style. > BUG: Fix Superclass name in RTTI. > STYLE: Improve itkGaussianInterpolateImageFunction style. > ENH: Improve coverage for itkGaussianInterpolateImageFunction. > ENH: Improve itkBayesianClassifierImageFilter coverage. > ENH: Add itkBSplineControlPointImageFilter RTTI. > STYLE: Improve itkBSplinecontrolPointImageFilter style. > ENH: Improve itkBSplineControlPointImageFilter coverage. > ENH: Improve coverage for itkRegularStepGradientDescentOptimizerv4. > STYLE: Improve the class implementation file style. > STYLE: Improve the itkResampleImageFilter style. > DOC: Fix typo in GetMTime method doc. > STYLE: Remove out-of-body implementation doc > ENH: Improve itkResampleImageFilter coverage. > ENH: Improve itkAbsImageAdaptor and Filter coverage. > BUG: Fix itkLSMImageIO class' Superclass name. > ENH: Improve the itkInterpolateImagePointsFilter coverage. > ENH: Improve itkPowImageFilter coverage. > BUG: Fix ConvolutionImageFilter RTTI. > STYLE: Use initialization lists. > STYLE: Improve BinaryFunctorImageFilter style. > ENH: Improve itkMinimumImageFilter code coverage. > BUG: Fix Linux-x86_64-gcc4.1 warning on implicit conversion. > ENH: Improve MaximumImageFilter coverage. > BUG: Fix conversion to PixelType conversion. > COMP: Fix double to unsigned char conversion warning. > ENH: Improve coverage for itkNormalizeToConstantImageFilter. > BUG: Fix itkSquaredDifferenceErrorFunction RTTI. > ENH: Improve itkMeanImageFunctionCoverage. > ENH: Improve itkSquareImageFilter coverage. > STYLE: Improve the itkSquaredDifferenceErrorFunction style. > STYLE: Enhance style for itkNormalizeToConstantImageFilter. > STYLE: Improve itkMeanImageFunction style. > ENH: Remove unnecesary call to filter print. > ENH: Improve itkRegionOfInterestImageFilter coverage. > STYLE: Improve itkRegionOfInterestImageFilter style. > STYLE: Improve itkPasteImageFilter style. > STYLE: Improve itkJoinSeriesImageFilter style. > BUG: Fix itkPadLabelMapFilter RTTI Superclass. > COMP: Address std::cout.precision conversion warning. > ENH: Improve itkBayesianClassifiertImageFilter coverage. > ENH: Improve itkPadLabelMapFilter coverage. > ENH: Improve itkJoinSeriesImageFilter coverage. > ENH: Improve the itkPasteImageFilter coverage. > ENH: Improve MeanImageFilter coverage. > COMP: Address std::cout.precision conversion warning. > ENH: Improve TernaryMagnitudeImageFilter coverage. > ENH: Improve FFTConvolutionImageFilter coverage. > DOC: Fix class documentation in ternary magnitude filters. > ENH: Improve ConstrainedValueDifferenceImageFilter coverage. > ENH: Improve AndImageFilter coverage. > ENH: Add baseline test to itkTernaryMagnitudeImageFilter. > ENH: Use MD5 comparison framework in baseline test. > ENH: Improve itk::VectorRescaleIntensityImageFilter coverage. > STYLE: Improve the itkVectorRescaleIntensityImageFilter style. > ENH: Print missing ivar in filter PrintSelf method. > ENH: Improve itkComplexToImaginaryFilter coverage. > ENH: Improve itkComplexToPhaseImageFilter coverage. > ENH: Improve itkComplexToModulusImageFilter coverage. > ENH: Improve itkComplexToRealImageFilter coverage. > ENH: Improve itkVectorResampleImageFilter coverage. > ENH: Add GetTransform method. > ENH: Improve itkConstrainedValueAdditionImageFilter coverage. > ENH: Improve itkModulusImageFilter coverage. > ENH: Improve itkLog10ImageFilter coverage. > ENH: Imporve itkMagnitudeAndPhaseToComplexImageFilter coverage. > ENH: Improve itkLogImageFilter coverage. > ENH: Improve itkInvertIntensityImageFilter coverage. > STYLE: Improve itkInvertIntensityImageFilter style. > DOC: Add missing doc to itkInvertIntensityImageFilter. > STYLE: Improve itkIntensityWindowingImageFilter style. > STYLE: Use initialization lists. > ENH: Improve itkIntensityWindowingImageFilter coverage. > ENH: Improve itkNaryMaximumImageFilter coverage. > COMP: Fix std::precision type casting warning. > ENH: Improve itkPointSetToPointSetRegistrationMethod coverage. > STYLE: Improve the itkPointSetToPointSetImageRegistrationMethod style. > ENH: Remove SmartPointers being explicitly initialized to null. > STYLE: Improve the itkPointSetToImageRegistrationMethod style. > ENH: Improve itkPointSetToImageRegistration coverage. > STYLE: Change the name of the itkPointSetToImageRegistrationMethod test. > STYLE: Improve itkVectorResampleImageFilter style. > STYLE: Improve the itkAntiAliasBinaryImageFilter style. > ENH: Improve trigonometric function filters' coverage. > STYLE: Remove test names from std::out messages. > ENH: Improve Boolean Algebra ImageFilters coverage. > STYLE: Improve the EuclideanDistancePointMetric style. > ENH: Improve itkSigmoidImageFilter coverage. > STYLE: Improve itkCropImageFilter style. > ENH: Improve itkCropImageFilter coverage. > ENH: Improve RGBToLuminanceImageFilter and Adaptor coverage. > ENH: Improve itkRescaleIntensityImageFilter coverage. > ENH: Improve the itkMatrixSelectionImageFilter coverage. > ENH: Improve itkTanImageFilter and Adaptor coverage. > ENH: Increase itkSqrtImageFilter and Adaptor coverage. > ENH: Increase itkTernaryOperatorImageFilter coverage. > ENH: Increase itkSymmetricEigenAnalysisImageFilter coverage. > STYLE: Improve itkScalarImagekmeansImageFilter style. > STYLE: Conform to TEST_SET_GET_VALUE definition. > BUG: Fix uninitialized variable due to dynamic analysis defect. > BUG: Fix uninitialized variable defect reported by valgrind. > ENH: Improve the itkPointSetToPointSetRegistrationTest. > ENH: Improve the itkPointSetToImageRegistrationTest. > ENH: Increas BinaryMagnitudeImageFilter coverage. > STYLE: Remove test name from std output. > ENH: Increase MagnitudeImageFilter coverage. > BUG: Fix uninitialized variable defect reported by valgrind. > BUG: Fix Superclass name in RTTI. > STYLE: Improve itkFrustumSpatialFunction style. > STYLE: Improve the itkConicShellInteriorExteriorSpatialFunction style. > BUG: Fix Superclass template argument list. > STYLE: Improve the itkTorusInteriorExteriorSpatialFunction style. > STYLE: Improve the itkCheckerBoardImageFilter class style. > ENH: Improve the itk::LabelVotingImageFilter coverage. > ENH: Improve itkCheckerBoardImageFilter coverage. > STYLE: Improve itk::LabelVotingImageFilter style. > STYLE: Improve the itkHoughTransform2DCirclesImageFilter style. > ENH: Add test for itk::FrustumSpatialFunction class. > ENH: Improve itkConnectedThresholdImageFilter coverage. > STYLE: Improve itkConnectedThresholdImageFilter style. > BUG: Fix FrustumSpatialFunction internal precision conversion. > COMP: Fix implicit conversion warning. > STYLE: Improve itkThresholdImageFilter style. > ENH: Add test for itk::TorusInteriorExteriorSpatialFunction. > BUG: Fix Superclass template argument list. > ENH: Improve itkUnsharpMaskingImageFilter implementation. > ENH: Improve the itkUnsharpMaskingImageFilter coverage. > ENH: Fix UnsharpMaskingImageFilter test inconsistencies. > BUG: Add missing itkTypeMacro. > DOC: Document the member variables. > BUG: Fix the itkImageSource RTTI class name, > STYLE: Improve itkLabelImageGaussianInterpolateImageFunction style. > ENH: Finish itkGaussianInterpolateImageFunction PrintSelf. > STYLE: Improve itkLabelOverlapMeasurementImageFilter style. > > KWSys Robot (6): > KWSys 2016-06-30 (96f06c8e) > KWSys 2016-10-23 (b630d2f5) > KWSys 2016-11-03 (37306a1c) > KWSys 2016-11-08 (2b3e2b1c) > KWSys 2016-11-09 (18c65411) > KWSys 2016-11-21 (cb55cf5a) > > Maeliss Jallais (1): > BUG: Add unsigned and signed short to the wrapping of vnl_matrix > > Matthew McCormick (85): > PERF: Simplify HilbertPath numberOfPathVertices computation. > BUG: CID 1355469 NNetClassifierTest4 unintended integer division. > BUG: Update Cuberille Remote for version check fix. > ENH: Bump ITK version to 4.11.0. > BUG: Fix HDF5ImageIO type information. > BUG: Fix H5File memory leak in HDF5ImageIO. > DOC: Collect Francois Budin's contributions in .mailmap > BUG: Limit WRAP_ITK_MODULES when building externally > STYLE: Improvements to ResourceProbe report output. > ENH: Add a useTabs argument to ResourceProbe::Report. > ENH: Add standard error measure to the ResourceProbe > ENH: Add itk_python_add_test function. > BUG: Remove VNL file from subtree merge. > COMP: Fix wrapping with a space in the Python include path > BUG: Fix PermuteAxesImageFilter pipeline method visibility > BUG: Initialize PermuteOrder and FlipAxes in OrientImageFilter > BUG: ResampleImageFilter honor isInside output of the transform method > COMP: Avoid recursive include of itkMath.h > COMP: Fix VXL header installation locations > BUG: ClampImageFilterTest for older GCC, InPlaceOn > DOC: Add CONTRIBUTING.md file to the top level. > COMP: Update VariationalRegistration to address Doxygen warnings > BUG: Compiler detections file installed into ITK build tree location > COMP: Do not use string(TIMESTAMP. > COMP: Remove HDF5 -std=c99 for C++ files > BUG: Do not build HDF5 static library with a shared build > ENH: Add PerformanceBenchmarking Remote Module > COMP: Remove duplicate wrappings for ResampleImageFilter > BUG: Put Python test output files in the build tree > BUG: Improve HDF5ImageIO::CloseDataSet name > COMP: Use add_python_test PythonLazyLoadingImage > COMP: Address missing override it itkFactoryTestLib.cxx > BUG: Index,Size,Offset constructors present in Python with C++11 > COMP: Address missing override it itkFactoryTestLib.cxx > BUG: PerformanceBenchmarking as EXCLUDE_FROM_DEFAULT > ENH: Bump SetupForDevelopment version > BUG: Add missing ZLib deflate support to HDF5 > BUG: Address memory leak, remove NumPy build dep in BridgeNumPy > COMP: Do not set ITK_LIBRARY_BUILD_TYPE in ITKTransformFactory > COMP: Do not set ITK_LIBRARY_BUILD_TYPE in ITKTransformFactory > BUG: Check when ITK_WRAP_VECTOR_COMPONENTS doesn't include > ITK_WRAP_IMAGE_DIMS > BUG: RichardsonLucyDeconvolutionImageFilter with non-null input > Image Origin > BUG: Fix inconsistent Twister start with Initialize(seed) and SetSeed(seed) > BUG: Do not hard code CMake scripts in HDF5 > COMP: Workaround Emscripten ITKCommon test build failure > COMP: Do embed fancy HDF5 libsettings with Emscripten > COMP: Add missing H5T_patch_vlen_file declaration > ENH: Bump CastXML to 2016-10-11 master. > COMP: Workaround Emscripten ITKCommon test build failure > BUG: Swap CastXML hashes for Mac OSX and Windows > ENH: Sync ExternalData.cmake with upstream CMake 3.6.2 > COMP: Fix VNL tests when cross-compiling > ENH: ExternalData multi-algorithm support > ENH: ExternalData support for data.kitware.com > BUG: Install missing H5pubconf.h > BUG: Use SpacePrecisionType in TileImageFilter > BUG: Use internal ExternalData_Add_Target > ENH: Run .sha512, .md5 simultaneous modification pre-commit check > BUG: Correct CastXML Windows binary > BUG: Support non-zero Index in LevelSetNeighborhoodExtractor > ENH: Add ArchiveTestingDataOnGirder.py > BUG: Correct AtanRegularizationHeavisideStepFunction derivative > ENH: Add Utilities/Maintenance/ContentLinkSynchronization.sh > BUG: Remove extra HessianToObjectness content links > ENH: Wrap SpatialFunction float types with ITK_WRAP_float > BUG: Bump PerformanceBenchmarking to 2016-11-04 > BUG: itk_python_expression_add_test too many quotes. > ENH: Wrap VectorImage with complex real pixel types > ENH: Bump PerformanceBenchmarking to 2016-11-07 > BUG: Do not assume zero Index in ReinitializeLevelSetImageFilter > ENH: Create itk_module_add_library macro > BUG: Update computeCodeCoverageLocally.sh for KWStyle addition > COMP: Install a newer version of CMake on CircleCI > ENH: Use GitHub Pages as the first ExternalData resource > ENH: Add tests to demonstrate OSX dynamic_cast failure > BUG: Use random seed with for MersenneTwisterRandomVariateGenerator. > BUG: Enable program global timestamp > BUG: Set random number seed in Mattes metric test > BUG: Notify builder that ITK_DYNAMIC_LOADING is required with wrapping > BUG: Define ITK_DYNAMIC_LOADING before ITK_WRAP_PYTHON > BUG: Set random number seed mutual information metric tests > BUG: Wrap std::vector< itk.Point > > BUG: Fix wrapping of LandmarkBasedTransformInitializer > BUG: Rename UnsharpMaskingImageFilter to UnsharpMaskImageFilter > DOC: Add D?enan Zuki? to .mailmap > > Max Smolens (4): > COMP: CID-1266557 StatisticsLabelMapFilter uninitialized scalar field > BUG: CID-1355438 QuadEdgeTest1 resource leaks > COMP: CID-1355472 MIRegistrationFunction unused value > COMP: Fix link errors for VNL template instantiations on Windows > > Mayeul Chassagnard (7): > BUG: Test added and error fixed in HDF5ImageIO > ENH: Update add_library TO itk_module_add_library > COMP: Set Policy CMP0023 target_link_libraries for > Modules/ThirdParty/VNLI... > BUG: Add ITK_TEMPLATE_EXPORT to template classes > BUG: Fix errors linked to dyn_cast merge > BUG: Restore old ITKModule_TEMPLATE_EXPORT specification for classes > BUG: dash3win7 dashboard build error unresolved external symbol > > Michka Popoff (3): > ENH: Update UpdatepygccxmlFromUpstream.sh for v1.8.0 > ENH: Update igenerator.py for pygccxml v1.8.0 > COMP: Use pygccxml's public API for apply definitions > > Pierre Barbier de Reuille (2): > COMP: Fix function naming error when using FFTWD > COMP: Fix function naming error when using FFTWD > > Sean McBride (1): > COMP: Bypass HDF5 bugs under TSan > > Simon Rit (2): > COMP: remove C++11 compiler warning for CUDA compilations > COMP: remove C++11 compiler warning for CUDA compilations > > Somesh Kashyap (2): > BUG: Override TransformCategoryType for > AzimuthElevationToCartesianTransform > BUG: -Added test case for itkAzimuthElevationToCartesianTransform > > Sumedha Singla (1): > ENH: Updated the git tag for ITK-Minimal-Path-Extraction remote module > > Taylor Braun-Jones (4): > COMP: Skip path length checks if ITK_SKIP_PATH_LENGTH_CHECKS is enabled > COMP: Fix truncation from double to float warning > DOC: Fix incorrect itkFactorylessNewMacro documentation > COMP: Only include the headers for required OpenCV modules > > Thien Nguyen (1): > PERF: SmapsFileParser unnecessary dynamic_cast > > VXL Maintainers (4): > VNL 2016-05-15 (14f97ab4) > VNL 2016-06-22 (23a93adb) > VNL 2016-06-29 (d62a2d70) > VNL 2016-07-06 (acfa62cc) > > Vladimir S. FONOV (1): > COMP: Build against GCC 5.3.1 > > Zach Williamson (2): > ENH: Update Remote Module Tags > BUG: Fix Python Wrappings in C++11 > > Ziv Yaniv (1): > BUG: Metric sampling percentage accepted values outside (0.0, 1.0]. > > > ----------------------------------------------------- > Errors or omissions? Please fix them here: > > https://docs.google.com/document/d/1UQAh7_mDjps0GZYX62biTwFrA54KRvf__4oeT0ymzZg/edit > _____________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Kitware offers ITK Training Courses, for more information visit: > http://www.kitware.com/products/protraining.php > > Please keep messages on-topic and check the ITK FAQ at: > http://www.itk.org/Wiki/ITK_FAQ > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/insight-users From matt.mccormick at kitware.com Thu Jan 12 11:54:52 2017 From: matt.mccormick at kitware.com (Matt McCormick) Date: Thu, 12 Jan 2017 11:54:52 -0500 Subject: [ITK-users] [ANN] ITK 4.11 Release Candidate 1 is ready for testing! In-Reply-To: References: Message-ID: Hello Brad, Good point. I added a comment in the release notes. Thanks, Matt On Thu, Jan 12, 2017 at 11:19 AM, Lowekamp, Bradley (NIH/NLM/LHC) [C] wrote: > Hello, > > An additional bug fix that may have impact on registration is this one: > https://github.com/InsightSoftwareConsortium/ITK/commit/99a7ac8f3ab88cdc508084e4921f0f4c9678468b > > The ITKv4 parameter estimators where using an incorrect algorithm for ?affine? or ?linear? transforms. The previous incorrect algorithm used random samples, which produced unstable parameter scales. Because of the change to the wall clock initialized random generator, I have found that many registrations were overly sensitive to these random estimated scale. The correction to fixed corner based sampling should produce stable and reproducible results moving forward. > > Brad > >> On Jan 9, 2017, at 8:08 PM, Matt McCormick wrote: >> >> On behalf of the Insight Toolkit community, we are proud to announce >> that ITK 4.11 release candidate 1 has been tagged and is available for >> testing! Please take this opportunity to test the new features in the >> release candidate. >> >> >> To obtain the source code, >> >> git clone https://itk.org/ITK.git >> cd ITK >> git checkout -q --detach v4.11rc01 >> >> For more details, please see the Git documentation [1]. >> >> >> A few selected highlights for this release: >> >> >> - Remote Modules were added to: perturb mesh vertices with additive >> gaussian noise, accurately benchmark computational performance, >> perform principal components analysis of scalar, vector, and mesh >> vertex data, create a run-length encoded memory compression scheme for >> itk::Image, run N-D morphological contour interpolation, interpolate >> multi-label images, iterate over multiple images simultaneously, and >> compute inverse displacement fields. >> - NumPy bridge support is now enabled by default with NumPy array >> views of multi-component images and VNL vectors and matrices. >> - Internal HDF5 was updated to the latest upstream version along >> with a number of other third-party libraries. >> >> >> This release introduces a new template class export specification >> macro, ITK_TEMPLATE_EXPORT. The macro should be used with templated >> classes to address failing dynamic_cast's and exception catching >> across binaries on Mac OSX. >> >> Bugs were addressed and improvements were made to how the >> pseudo-random number generator is used. Tests that rely on the random >> number generator should explicitly set the global seed at start: >> >> itk::Statistics::MersenneTwisterRandomVariateGenerator::GetInstance()->SetSeed( >> 121212 ); >> >> To improve randomness, new instances of the generator start from a >> different seed; some minor differences in the output of algorithms >> that uses the generator, like mutual information metrics, should be >> expected. >> >> >> Please test the release candidate and share your experiences on the >> mailing list, issue tracker, and Gerrit Code Review. >> >> An Experimental build, which demonstrates how the test suite performs >> on your local build system, can be submitted to the dashboard [2] >> with: >> >> mkdir ../ITK-build >> cd ../ITK-build >> cmake ../ITK >> ctest -j 4 -M Experimental -T Configure -T Build -T Test -T Submit >> >> Visual Studio builds must also add ?-C Release? to the ctest command. >> >> Notify the mailing list if there are any unexpected failures. Testing >> your own applications against the RC is also appreciated. >> >> >> Congratulations to the 31 contributors to this release. We would >> especially like to recognize the new contributors: Hastings Greer, >> Gilles Filippini, Thien Nguyen, Caspar Goch, Mayeul Chassagnard, >> Somesh Kashyap, Simon Rit, Pierre Barbier de Reuille, and Maeliss >> Jallais. >> >> >> The 4.11.0 final release is scheduled for January 23rd. >> >> >> [1] http://www.itk.org/Wiki/ITK/Git >> >> [2] http://open.cdash.org/index.php?project=Insight >> >> >> New Features >> ------------ >> >> * Wrapping Improvements >> - Python GetArrayFromImage() and GetImageFromArray() from >> ITKBridgeNumPy are directly accessible from the Python itk namespace. >> - The itk package loads much faster: individual modules are loaded >> only when required. >> - Conversion of ITK images from and to NumPy array using Bridge >> NumPy supports RGB, RGBA, and Vector images. >> - VNL vectors and VNL matrices can be converted from and to NumPy >> objects with respectively the new couple of functions >> GetArrayFromVnlVector()/GetVnlVectorFromArray() and >> GetArrayFromVnlMatrix()/GetVnlMatrixFromArray() >> - The global timestamp is used across all ITK Python modules when >> built statically >> - Wrap additional classes such as KernelFunctionBase >> - itk_python_add_test CMake function added for Python script testing >> in ITK modules >> >> * New Remote Modules >> - DVMeshNoise >> - Perturbing mesh vertices with additive gaussian noise >> - http://hdl.handle.net/10380/3567 >> - PerformanceBenchmarking >> - Accurate benchmarking of computational performance >> - http://hdl.handle.net/10380/3557 >> - PrincipalComponentsAnalysis >> - Principal components analysis of scalar, vector, and mesh vertex data >> - http://hdl.handle.net/10380/3386 >> - RLEImage >> - Run-length encoded memory compression scheme for itk::Image >> - http://hdl.handle.net/10380/3562 >> - MorphologicalContourInterpolation >> - N-D morphological contour interpolation >> - http://hdl.handle.net/10380/3563 >> - GenericLabelInterpolator >> - A generic interpolator for multi-label images >> - http://hdl.handle.net/10380/3506 >> - MultipleImageIterator >> - Iterate over multiple images simultaneously >> - http://hdl.handle.net/10380/3455 >> - FixedPointInverseDisplacementField >> - Computes inverse displacement field >> - http://hdl.handle.net/10380/3222 >> >> * Core Improvements >> - New ITK_TEMPLATE_EXPORT for templated classes resolves >> cross-binary dynamic_cast on Mac OSX >> - New MersenneTwisterRandomVariateGenerator instances are >> initialized with different seeds >> - Use compiler feature detection in CMake for C++11 features, etc. >> - New CMake macro itk_module_add_library for creating libraries in ITK modules >> - Improved support for ccache and distcc with >> CMAKE__COMPILER_LAUNCHER (CMake >=3.4 required) >> - Support for .sha512 ExternalData content links >> - GitHub Pages and data.kitware.com ExternalData repositories added >> - GPGPU system support for C++11 >> - Support of new compilers: Visual Studio 15 and XCode 8.2.1 >> (clang-800.0.42.1) >> >> * Filtering Improvements >> - HessianToObjectnessMeasure moved out of the ITKReview module >> - New UnsharpMaskImageFilter for image edge enhancement >> >> * IO Improvements >> - TransformFactory class has been moved to a separate module >> - Spline order added to BSplineTransform identifier >> - Improved NIFTI orientation support >> >> * Documentation Improvements >> - Updates to the Software Guide, Doxygen, Wiki and Sphinx Examples >> >> * Third Party Library Updates >> - pygccxml updated to v1.8.0 >> - VNL updated to latest upstream (2016.07.06) >> - SWIG updated to v3.0.11 >> - KWSys updated to latest upstream (2016.11.21) >> - HDF5 updated to v1.8.17 >> - SCIFIO updated to latest upstream (2016.12.01) >> - DCMTK updated to 3.6.1_20121012 >> - CastXML to latest upstream (2016.01.28) >> >> * Improved Code Coverage -- we are at 85.44%! >> - Jon Haitz-Legarreta's extensive code coverage improvements >> - https://blog.kitware.com/why-should-we-spend-time-writing-tests/ >> >> * *Lots* of important bug fixes >> >> * And much more! See details in the log below. >> >> >> Changes from v4.10.0 to v4.11rc01 >> ------------------------------------------------ >> >> Bill Lorensen (4): >> COMP: Restore support for clang 3.0 compiler >> COMP: Consistent use of ModifiedTimeType >> ENH: Bump WikiExamples remote module version >> ENH: Bump WikiExamples version >> >> Bradley Lowekamp (57): >> ENH: Add registered TrasformIO's to exception >> ENH: Use template or constant for loop stop condition >> ENH: Updating SWIG version to 3.0.9 >> COMP: Address VS9 ambiguous std::abs call in Haung calculator >> COMP: Fix undefined NumericTraits::Zero and One errors with mingw64 >> BUG: Fix segfault if ~CleanUpObjectFactory called multiple times >> BUG: Address itkHDF5ImageIO test failures for mingw64 >> BUG: demonstrate dynamic_cast failure when reading transforms >> BUG: Address itkHDF5ImageIO test failures for mingw64 >> ENH: Updating SWIG version to 3.0.10 >> ENH: Enable CMP0063 New behavior >> COMP: Enable hidden visibility property with vxl static libraries >> COMP: Enable hidden visibility property with HDF5 static libraries >> COMP: Enable hidden visibility property with HDF5 static libraries >> BUG: Match Add2 function to AddImageFilter documentation >> ENH: Improve support for std::complex with PowImageFilter >> ENH: Explicitly mark required files for dependent tests >> COMP: Bypass XCode 7.3,8 internal compilation error >> COMP: Address CMake configuration error with itkJPEG2000Test03 property >> BUG: Correct test's REQUIRED_FILES to only the input. >> ENH: move HessianToObjectnessMeasure filter out of Review >> ENH: Separate TransformFactory class into separate module >> DOC: Add links between similar label to rgb filters >> ENH: Separate data from function calls >> COMP: Fix changed Graft method >> ENH: Reduce template dependencies on CalculateRotationMatrix >> ENH: Add Functor Accessors to LabelMapToRGB filter >> BUG: Enable VirtualDomain and FixedTransform in RegMethv4 >> BUG: Use BSpline Order 3 for 2D in transform factory. >> ENH: Add spline order to BSplineTransform's string id >> ENH: Adding initial CircleCi configuration file >> COMP: Fix float to unsigned integer conversion warnings >> BUG: Include installed modules in ITK_MODULES_ENABLED >> COMP: Address CMake error that ITKGPUCommon is not in export >> COMP: Address wrong library types with VS and shared libraries >> BUG: Ensure CreateImageIO is concurrent thread safe >> ENH: Mark HDF5 CMake options as internal >> COMP: Add template export declaration for ParametricPath >> COMP: Correct TEMPLATE_EXPLICIT definition in Path module >> ENH: Factor out common code in the TrasformFactoryBase registration >> ENH: Add CMake variable for max transform dimension, defaults 4 >> ENH: Create CMake module to check for private RTTI compatibility >> ENH: Improving setting of default ITK_TEMPATE_VISIBILITY_DEFAULT >> COMP: Correct ifndef value to allow user defined ITK_TEMPLATE_EXPORT >> BUG: Add explicit instantiate for ObjectToObjectOptimizerBase >> COMP: Use add_definitions for CMake 2.8.9 compatibility >> COMP: Add warning suppression for distcc warning >> ENH: Explicitly instantiate the optimizer base over float >> BUG: Use IsLinear to check if transform is "affine" >> ENH: Remove unneeded includes of random iterator header >> ENH: Improve thread-safety for Generator, and unique New sequence >> ENH: Do not use global random generator >> BUG: Update v3 registration metrics to use local seed >> ENH: Prefer setting local seed over global in tests. >> ENH: Update SWIG to latest 3.0.11 release >> BUG: relax testing parameters for v3 translation registration >> BUG: Restore baseline for debug registration >> >> Caspar Goch (2): >> BUG: Use printable type for RGBA pixel ostream for ITK-3501 >> STYLE: Remove extra space for ITK-3501 >> >> Christina Rossmanith (1): >> DOC: Added more details to the class Doxygen documentation. >> >> Davis Vigneault (2): >> COMP: VCL_DEFINE_SPECIALIZATION not defined >> ENH: Add remote module DVMeshNoise >> >> D?enan Zuki? (27): >> BUG: Fixing CID-1355433 (IDENTICAL_BRANCHES) >> ENH: Adding MultipleImageIterator as a remote module >> COMP: enables TBB 4.4 back-end for VTK7's SMP >> COMP: enabling position independent code flag for FFTW >> ENH: adding configuration file for code reformatting tool clang-format >> ENH: Updating hooks to work with Windows/TortoiseGit/KDiff3 >> COMP: Fixing -fPIC flag passing with Ninja build system >> ENH: Adding RLEImage as a remote module >> ENH: Updating uncrustify configuration to current git version >> STYLE: better compliance with ITK style >> STYLE: A new option in uncrustify, updating the config file accordingly >> ENH: Adding MorphologicalContourInterpolation as a remote module >> ENH: improving documentation >> BUG: fixing buffer growing endlessly, as reported by Timothee Evain >> BUG: fixing buffer growing endlessly, as reported by Timothee Evain >> STYLE: default uncrustify configuration file is less aggressive >> COMP: Fixing warning >> COMP: VS15 compiler fix >> BUG: casting -9 to unsigned produced unwanted result >> BUG: Ensuring consistency between debug and release >> COMP: Updating LesionSizingToolkit after some recent compile fixes >> COMP: respect option METAIO_USE_NAMESPACE >> ENH: updating version of AnisotropicDiffusionLBR >> ENH: adding UnsharpMaskingImageFilter >> COMP: explicitly cast to output type >> BUG: double call to update would cause empty output image >> ENH: Updating RLEImage remote module. Change-log: >> >> Eugene Prilepin (4): >> ENH: Add the "ITK_USE_GPU" to ITK Config >> BUG: Fix API for set/get "LaplacianImageFilter" object >> ENH: Add support of images types with the 'CovariantVector' pixel type >> ENH: Add python test for the 'GradientVectorFlowImageFilter' wrap >> >> Francois Budin (52): >> ENH: Adding GetArrayFromImage in python itk namespace >> ENH: Adding GetImageFromArray in python itk namespace >> ENH: *_WRAP_* variable per external module >> BUG: ImportImageFilter not responsible of memory management >> ENH: New remote module GenericLabelInterpolator >> DOC: SetNumberOfOutputs had wrong comment >> BUG: lazyAttributes dictionary keys could be over-ridden >> BUG: lazyAttributes dictionary keys could be over-ridden >> BUG: Fix recent update of HDF5 (1.8.17) >> ENH: Update SCIFIO to latest version on 08/23/2016 >> ENH: Addition of the remote module FixedPointInverseDisplacementField >> ENH: Update SCIFIO to latest version on 08/29/2016 >> BUG: Path to commit was relative instead of absolute >> ENH: Path to SetupForDevelopment is relative, not absolute >> BUG: LSMImageIO write function was not checking image dimension >> BUG: LSMImageIO was not checking correctly image dimension >> BUG: Missing associated test data >> BUG: Missing associated test data >> ENH: Bump CMakeLists.txt version to 4.10.1. >> BUG: Quotes are not escaped in configured cmake file >> ENH: Improving API of Graft() in itk::Image >> ENH: Updating ITKGenericLabelInterpolator remote module >> ENH: Update ITKIOTransformDCMTK remote module >> BUG: Factory registration should depend on ITK_BUILD_SHARED >> COMP: Updating DCMTK compilation for Ninja >> ENH: Update version of DCMTK to 3.6.1_20121012 >> ENH: Update SCIFIO to latest version on 10/25/2016 >> BUG: Swig and PCRE do not support space in installation paths >> BUG: exit() call from within piped commands was not exiting the script >> BUG: Typo in folder creation command >> ENH: Only display message for transform registered multiple times in debug >> ENH: Image spacing must be positive >> BUG: Supported extensions by PNG IO were not added in constructor. >> DOC: Documentation in itkRBGAPixel and itkRGBPixel was incorrect. >> ENH: Update SCIFIO to lastest (2016.12.01) >> ENH: FixedPointInverseDisplacementField moved to InsightSoftwareConsortium >> COMP: Remove compilation warnings >> ENH: Improved support of ccache and distcc >> BUG: GPUImage regression due to API change. >> ENH: Update Bridge Numpy (2016.12.05) >> ENH: Update VariationalRegistration to remove warnings during compilation >> ENH: FindPythonLibs does not support both debug and release >> python libraries >> ENH: Update VariationalRegistration >> BUG: Missing ITK_TEMPLATE_EXPORT in forward declaration of itk::ImageBase >> BUG: Missing ITK_TEMPLATE_EXPORT in itkOptimizerParametersHelper >> BUG: Missing ITK_TEMPLATE_EXPORT in templated class >> BUG: Remove linkage warnings on MacOS >> BUG: HDF5 CMake installation directory variable had not been updated >> BUG: Missing include header in AnisotropicDiffusionBLR remote >> module hxx files >> COMP: Silencing unused variable warning in itkTimeStamp >> STYLE: Improve style checking by using module ITKKWStyleOverwrite.txt >> COMP: OS*Barrier functions are deprecated on MacOS 10.12 >> >> GCC-XML Upstream (1): >> ENH: pygccxml v1.8.0 (reduced) >> >> Gert Wollny (1): >> BUG: Relax vnl_complex floating point comparisons for i386 >> >> Gilles Filippini (1): >> BUG: Use NATIVE_HBOOL for encoding HDF5 types. >> >> HDF Group (1): >> ENH: hdf5 1.8.17-r30218 (reduced) >> >> Hans Johnson (23): >> COMP: Use cmake WriteCompilerDetectionHeader >> ENH: Use itk_compiler_detection versions >> COMP: Need ITK_NOEXCEPT_OR_THROW macro. >> COMP: Provide consistent granular C++11 support >> STYLE: Use granular ITK_COMPILER_CXX_STATIC_ASSERT >> STYLE: Prefer to use consistent definitions >> COMP: Improve robustness of identifying the compiler standard used >> BUG: try_compile for AlignAs were always failing >> STYLE: Provide a well documented macro for repeated code >> STYLE: Delete functions in consistent way >> COMP: GPU baseclass ivars need to be protected >> COMP: Remove unnecessary circular dependancy >> COMP: Add long long usage for HDF5 >> COMP: Add long long usage for HDF5 >> STYLE: Prefer static small array to dynamic array >> BUG: Confusing interface for FFTW wisdom files >> STYLE: Output dimension from OutputImageType >> STYLE: Code review style cleanups >> STYLE: Prefer to use ITK AssertOrThrow macros >> ENH: Add OverrideBoundaryCondition logic >> ENH: Provide mechanism for enhanced NIFTI support >> BUG: Use NIFTI sform/qform conventions correctly >> ENH: Remove ambiguity about sform/qform >> >> Hastings Greer (8): >> BUG: ITK-3448 Wrap itkQuadEdgeCellTraitsInfo more specifically >> BUG: make itkTriangleHelper instantiable to ease wrapping >> BUG: remove lsqr because of license issues ITK 1160 >> BUG: make itkTriangleHelper instantiable to ease wrapping >> BUG: initialize X to zero in lsmr Solve >> BUG: Labled Point Set Registration: test multiple labels >> BUG: Fix python wrapping of Cuberille remote module >> BUG: Add test demonstrating Python global timestamp issue >> >> Jean-Christophe Fillion-Robin (5): >> STYLE: UseITK: Set ImageIO exceptions using new convention. See #3393 >> STYLE: MeshIO: Moves virtual destructor into cpp files. See #3393 >> STYLE: Update MeshIO factories to use RegisterFactoryInternal. See #3393 >> STYLE: MeshIO: Move MeshFileWriterException into its own file. See #3393 >> STYLE: MeshIO: Remove unused include from headers. See #3393 >> >> Johan Andruejol (3): >> ENH: Add missing itkKernelFunctionBase wrapping >> ENH: Add PrincipalComponentsAnalysis remote module >> COMP: Override cannot be used with inline >> >> Jon Haitz Legarreta (216): >> ENH: Improve itkFlatStructutingElement coverage. >> ENH: Improve itkPathToImageFilter class coverage. >> ENH: Improve itkIsolatedWatershedImageFilter coverage. >> ENH: Improve itkLogSigmoidTransferFunction coverage. >> STYLE: Improve itkBSplineTransform doc style. >> ENH: Improve GaborKernelFunctionCoverage. >> PERF: Remove duplicate itkMath include >> STYLE: Move the PrintSelf method to the end >> STYLE: Improve the itkScalarToRGBColormapImageFilter style. >> STYLE: Delete duplicate method documentation >> STYLE: Remove method documentation from implementation file >> STYLE: Improve GACLevelSet classes' style >> STYLE: Improve test style >> ENH: Improve itkGaussianDerivativeImageFilter coverage. >> ENH: Improve the itkScalarToRGBColormapImageFilter coverage >> STYLE: Improve itkScalarToRGBColormap test style >> ENH: Improve GACLSImageFilter classes' coverage >> STYLE: Improve comment style in GACLS tests >> ENH: Improve itkImportImageFilter coverage >> ENH: Improve itkVideoFileReader coverage >> ENH: Improve itkVideoFileWriter coverage >> STYLE: Improve the itkVideoFileWriter style. >> STYLE: Imrpove itkVideoFileReader style. >> ENH: Improve the itkBSplineControlPointImageFunction coverage >> STYLE: Improve the itkIntensityWindowingImageFilter style >> STYLE: Improve the itkIntensityWindowingImageFilter test style >> ENH: Improve ImageToSpatialObjectRegistrationMethod coverage >> STYLE: Improve test style >> ENH: Improve MaskNeighborhoodOperatorImageFilter coverage >> ENH: Improve itkMeshFileWriter coverage >> ENH: Improve RescaleIntensityImageFilter coverage. >> ENH: Improve itkClampImageFilter coverage. >> BUG: Fix ivar type casting in PrintSelf. >> STYLE: Improve MRIBiasFieldCorrectionFilter style. >> ENH: Improve MRIBiasFieldCorrectionFilter coverage. >> ENH: Improve itkIntensityWindowingImageFilter coverage >> BUG: Fix Run-time type information in CSV module classes. >> ENH: Improve the itkHistogram class code coverage. >> DOC: Fix documentation typo. >> STYLE: Improve the ImproveRescaleIntensityImageFilter style. >> PERF: Make the itkVideoFileReader ivars private >> PERF: Make itkVideoFileWriter ivars private >> ENH: Improve coverage for itk::OrientImageFilter. >> STYLE: Improve itk::OrientImageFilter class style. >> ENH: Improve itkCSVNumericObjectFileWriter coverage. >> ENH: Add missing standard class typdefs. >> ENH: Improve itkVoronoiSegmentationImageFilter coverage. >> ENH: Improve itkVoronoiSegmentationImageFilter style. >> STYLE: Improve the MalahanobisDistanceThresholdImageFunction style. >> ENH: Improve coverage for itkMalahanobisDistanceThreshold. >> ENH: Improve itk::MinimumMaximumImageCalculator coverage. >> ENH: Improve itkMinimumMaximumImageCalculator style. >> BUG: Fix type mismatch in test. >> STYLE: Improve itkPolylineMaskImagefilter style. >> ENH: Improve itkPolylineMaskImageFilter coverage. >> ENH: Improve itkFileListVideoStyle. >> ENH: Improve itkLandmarkBasedTransformInitializer coverage. >> ENH: Add baseline image to itkPolylineMaskImageFilter test. >> ENH: Improve coverage for itkBSplineTransformInitializer. >> STYLE: Improve itkBSplineTransformInitializer doc style. >> ENH: Enhance itkBSplineTransformInitializer implementation. >> DOC: Fix typo in method documentation. >> ENH: Improve the itkRegularStepGradientDescentOptimizerv4 style. >> STYLE: Improve the itkSimpleContourExtractorImageFilter style. >> ENH: Exercise the class' Get methods. >> ENH: Improve coverage for itkStatisticsOpeningLabelMapFilter. >> ENH: Improve style for itkThresholdLabelerImageFilter. >> ENH: Improve itkThresholdLabelerImageFilter coverage. >> ENH: Get internal ImageIO via a const macro. >> ENH: Improve the itkSimpleContourExtractorImageFilter coverage. >> STYLE: Improve the itkMetaArray class style. >> ENH: Improve MetaArrayReader/Writer coverages. >> ENH: Improve the itkCovarianceImageFunction style. >> STYLE: Improve itkVoronoiDiagram2DGenerator style. >> ENH: Improve VoronoiDiagram2DGenerator coverage. >> STYLE: Improve the itkBayesianClassifierImageFilter style. >> STYLE: Improve the itkMetaArrayWriter style. >> ENH: Improve itkCovarianteImageFunction coverage. >> COMP: Fix signed/unsigned int comparison warning. >> DOC: Improve itkGrayscaleDilateImageFilter documentation. >> DOC: Improve documentation for itkGrayscaleErodeImageFilter. >> DOC: Improve ConfigureHistogram method documentation. >> STYLE: Improve the itkMovingHistogramMorphologyImagefilter style. >> BUG: Fix Superclass name in RTTI. >> STYLE: Improve itkGaussianInterpolateImageFunction style. >> ENH: Improve coverage for itkGaussianInterpolateImageFunction. >> ENH: Improve itkBayesianClassifierImageFilter coverage. >> ENH: Add itkBSplineControlPointImageFilter RTTI. >> STYLE: Improve itkBSplinecontrolPointImageFilter style. >> ENH: Improve itkBSplineControlPointImageFilter coverage. >> ENH: Improve coverage for itkRegularStepGradientDescentOptimizerv4. >> STYLE: Improve the class implementation file style. >> STYLE: Improve the itkResampleImageFilter style. >> DOC: Fix typo in GetMTime method doc. >> STYLE: Remove out-of-body implementation doc >> ENH: Improve itkResampleImageFilter coverage. >> ENH: Improve itkAbsImageAdaptor and Filter coverage. >> BUG: Fix itkLSMImageIO class' Superclass name. >> ENH: Improve the itkInterpolateImagePointsFilter coverage. >> ENH: Improve itkPowImageFilter coverage. >> BUG: Fix ConvolutionImageFilter RTTI. >> STYLE: Use initialization lists. >> STYLE: Improve BinaryFunctorImageFilter style. >> ENH: Improve itkMinimumImageFilter code coverage. >> BUG: Fix Linux-x86_64-gcc4.1 warning on implicit conversion. >> ENH: Improve MaximumImageFilter coverage. >> BUG: Fix conversion to PixelType conversion. >> COMP: Fix double to unsigned char conversion warning. >> ENH: Improve coverage for itkNormalizeToConstantImageFilter. >> BUG: Fix itkSquaredDifferenceErrorFunction RTTI. >> ENH: Improve itkMeanImageFunctionCoverage. >> ENH: Improve itkSquareImageFilter coverage. >> STYLE: Improve the itkSquaredDifferenceErrorFunction style. >> STYLE: Enhance style for itkNormalizeToConstantImageFilter. >> STYLE: Improve itkMeanImageFunction style. >> ENH: Remove unnecesary call to filter print. >> ENH: Improve itkRegionOfInterestImageFilter coverage. >> STYLE: Improve itkRegionOfInterestImageFilter style. >> STYLE: Improve itkPasteImageFilter style. >> STYLE: Improve itkJoinSeriesImageFilter style. >> BUG: Fix itkPadLabelMapFilter RTTI Superclass. >> COMP: Address std::cout.precision conversion warning. >> ENH: Improve itkBayesianClassifiertImageFilter coverage. >> ENH: Improve itkPadLabelMapFilter coverage. >> ENH: Improve itkJoinSeriesImageFilter coverage. >> ENH: Improve the itkPasteImageFilter coverage. >> ENH: Improve MeanImageFilter coverage. >> COMP: Address std::cout.precision conversion warning. >> ENH: Improve TernaryMagnitudeImageFilter coverage. >> ENH: Improve FFTConvolutionImageFilter coverage. >> DOC: Fix class documentation in ternary magnitude filters. >> ENH: Improve ConstrainedValueDifferenceImageFilter coverage. >> ENH: Improve AndImageFilter coverage. >> ENH: Add baseline test to itkTernaryMagnitudeImageFilter. >> ENH: Use MD5 comparison framework in baseline test. >> ENH: Improve itk::VectorRescaleIntensityImageFilter coverage. >> STYLE: Improve the itkVectorRescaleIntensityImageFilter style. >> ENH: Print missing ivar in filter PrintSelf method. >> ENH: Improve itkComplexToImaginaryFilter coverage. >> ENH: Improve itkComplexToPhaseImageFilter coverage. >> ENH: Improve itkComplexToModulusImageFilter coverage. >> ENH: Improve itkComplexToRealImageFilter coverage. >> ENH: Improve itkVectorResampleImageFilter coverage. >> ENH: Add GetTransform method. >> ENH: Improve itkConstrainedValueAdditionImageFilter coverage. >> ENH: Improve itkModulusImageFilter coverage. >> ENH: Improve itkLog10ImageFilter coverage. >> ENH: Imporve itkMagnitudeAndPhaseToComplexImageFilter coverage. >> ENH: Improve itkLogImageFilter coverage. >> ENH: Improve itkInvertIntensityImageFilter coverage. >> STYLE: Improve itkInvertIntensityImageFilter style. >> DOC: Add missing doc to itkInvertIntensityImageFilter. >> STYLE: Improve itkIntensityWindowingImageFilter style. >> STYLE: Use initialization lists. >> ENH: Improve itkIntensityWindowingImageFilter coverage. >> ENH: Improve itkNaryMaximumImageFilter coverage. >> COMP: Fix std::precision type casting warning. >> ENH: Improve itkPointSetToPointSetRegistrationMethod coverage. >> STYLE: Improve the itkPointSetToPointSetImageRegistrationMethod style. >> ENH: Remove SmartPointers being explicitly initialized to null. >> STYLE: Improve the itkPointSetToImageRegistrationMethod style. >> ENH: Improve itkPointSetToImageRegistration coverage. >> STYLE: Change the name of the itkPointSetToImageRegistrationMethod test. >> STYLE: Improve itkVectorResampleImageFilter style. >> STYLE: Improve the itkAntiAliasBinaryImageFilter style. >> ENH: Improve trigonometric function filters' coverage. >> STYLE: Remove test names from std::out messages. >> ENH: Improve Boolean Algebra ImageFilters coverage. >> STYLE: Improve the EuclideanDistancePointMetric style. >> ENH: Improve itkSigmoidImageFilter coverage. >> STYLE: Improve itkCropImageFilter style. >> ENH: Improve itkCropImageFilter coverage. >> ENH: Improve RGBToLuminanceImageFilter and Adaptor coverage. >> ENH: Improve itkRescaleIntensityImageFilter coverage. >> ENH: Improve the itkMatrixSelectionImageFilter coverage. >> ENH: Improve itkTanImageFilter and Adaptor coverage. >> ENH: Increase itkSqrtImageFilter and Adaptor coverage. >> ENH: Increase itkTernaryOperatorImageFilter coverage. >> ENH: Increase itkSymmetricEigenAnalysisImageFilter coverage. >> STYLE: Improve itkScalarImagekmeansImageFilter style. >> STYLE: Conform to TEST_SET_GET_VALUE definition. >> BUG: Fix uninitialized variable due to dynamic analysis defect. >> BUG: Fix uninitialized variable defect reported by valgrind. >> ENH: Improve the itkPointSetToPointSetRegistrationTest. >> ENH: Improve the itkPointSetToImageRegistrationTest. >> ENH: Increas BinaryMagnitudeImageFilter coverage. >> STYLE: Remove test name from std output. >> ENH: Increase MagnitudeImageFilter coverage. >> BUG: Fix uninitialized variable defect reported by valgrind. >> BUG: Fix Superclass name in RTTI. >> STYLE: Improve itkFrustumSpatialFunction style. >> STYLE: Improve the itkConicShellInteriorExteriorSpatialFunction style. >> BUG: Fix Superclass template argument list. >> STYLE: Improve the itkTorusInteriorExteriorSpatialFunction style. >> STYLE: Improve the itkCheckerBoardImageFilter class style. >> ENH: Improve the itk::LabelVotingImageFilter coverage. >> ENH: Improve itkCheckerBoardImageFilter coverage. >> STYLE: Improve itk::LabelVotingImageFilter style. >> STYLE: Improve the itkHoughTransform2DCirclesImageFilter style. >> ENH: Add test for itk::FrustumSpatialFunction class. >> ENH: Improve itkConnectedThresholdImageFilter coverage. >> STYLE: Improve itkConnectedThresholdImageFilter style. >> BUG: Fix FrustumSpatialFunction internal precision conversion. >> COMP: Fix implicit conversion warning. >> STYLE: Improve itkThresholdImageFilter style. >> ENH: Add test for itk::TorusInteriorExteriorSpatialFunction. >> BUG: Fix Superclass template argument list. >> ENH: Improve itkUnsharpMaskingImageFilter implementation. >> ENH: Improve the itkUnsharpMaskingImageFilter coverage. >> ENH: Fix UnsharpMaskingImageFilter test inconsistencies. >> BUG: Add missing itkTypeMacro. >> DOC: Document the member variables. >> BUG: Fix the itkImageSource RTTI class name, >> STYLE: Improve itkLabelImageGaussianInterpolateImageFunction style. >> ENH: Finish itkGaussianInterpolateImageFunction PrintSelf. >> STYLE: Improve itkLabelOverlapMeasurementImageFilter style. >> >> KWSys Robot (6): >> KWSys 2016-06-30 (96f06c8e) >> KWSys 2016-10-23 (b630d2f5) >> KWSys 2016-11-03 (37306a1c) >> KWSys 2016-11-08 (2b3e2b1c) >> KWSys 2016-11-09 (18c65411) >> KWSys 2016-11-21 (cb55cf5a) >> >> Maeliss Jallais (1): >> BUG: Add unsigned and signed short to the wrapping of vnl_matrix >> >> Matthew McCormick (85): >> PERF: Simplify HilbertPath numberOfPathVertices computation. >> BUG: CID 1355469 NNetClassifierTest4 unintended integer division. >> BUG: Update Cuberille Remote for version check fix. >> ENH: Bump ITK version to 4.11.0. >> BUG: Fix HDF5ImageIO type information. >> BUG: Fix H5File memory leak in HDF5ImageIO. >> DOC: Collect Francois Budin's contributions in .mailmap >> BUG: Limit WRAP_ITK_MODULES when building externally >> STYLE: Improvements to ResourceProbe report output. >> ENH: Add a useTabs argument to ResourceProbe::Report. >> ENH: Add standard error measure to the ResourceProbe >> ENH: Add itk_python_add_test function. >> BUG: Remove VNL file from subtree merge. >> COMP: Fix wrapping with a space in the Python include path >> BUG: Fix PermuteAxesImageFilter pipeline method visibility >> BUG: Initialize PermuteOrder and FlipAxes in OrientImageFilter >> BUG: ResampleImageFilter honor isInside output of the transform method >> COMP: Avoid recursive include of itkMath.h >> COMP: Fix VXL header installation locations >> BUG: ClampImageFilterTest for older GCC, InPlaceOn >> DOC: Add CONTRIBUTING.md file to the top level. >> COMP: Update VariationalRegistration to address Doxygen warnings >> BUG: Compiler detections file installed into ITK build tree location >> COMP: Do not use string(TIMESTAMP. >> COMP: Remove HDF5 -std=c99 for C++ files >> BUG: Do not build HDF5 static library with a shared build >> ENH: Add PerformanceBenchmarking Remote Module >> COMP: Remove duplicate wrappings for ResampleImageFilter >> BUG: Put Python test output files in the build tree >> BUG: Improve HDF5ImageIO::CloseDataSet name >> COMP: Use add_python_test PythonLazyLoadingImage >> COMP: Address missing override it itkFactoryTestLib.cxx >> BUG: Index,Size,Offset constructors present in Python with C++11 >> COMP: Address missing override it itkFactoryTestLib.cxx >> BUG: PerformanceBenchmarking as EXCLUDE_FROM_DEFAULT >> ENH: Bump SetupForDevelopment version >> BUG: Add missing ZLib deflate support to HDF5 >> BUG: Address memory leak, remove NumPy build dep in BridgeNumPy >> COMP: Do not set ITK_LIBRARY_BUILD_TYPE in ITKTransformFactory >> COMP: Do not set ITK_LIBRARY_BUILD_TYPE in ITKTransformFactory >> BUG: Check when ITK_WRAP_VECTOR_COMPONENTS doesn't include >> ITK_WRAP_IMAGE_DIMS >> BUG: RichardsonLucyDeconvolutionImageFilter with non-null input >> Image Origin >> BUG: Fix inconsistent Twister start with Initialize(seed) and SetSeed(seed) >> BUG: Do not hard code CMake scripts in HDF5 >> COMP: Workaround Emscripten ITKCommon test build failure >> COMP: Do embed fancy HDF5 libsettings with Emscripten >> COMP: Add missing H5T_patch_vlen_file declaration >> ENH: Bump CastXML to 2016-10-11 master. >> COMP: Workaround Emscripten ITKCommon test build failure >> BUG: Swap CastXML hashes for Mac OSX and Windows >> ENH: Sync ExternalData.cmake with upstream CMake 3.6.2 >> COMP: Fix VNL tests when cross-compiling >> ENH: ExternalData multi-algorithm support >> ENH: ExternalData support for data.kitware.com >> BUG: Install missing H5pubconf.h >> BUG: Use SpacePrecisionType in TileImageFilter >> BUG: Use internal ExternalData_Add_Target >> ENH: Run .sha512, .md5 simultaneous modification pre-commit check >> BUG: Correct CastXML Windows binary >> BUG: Support non-zero Index in LevelSetNeighborhoodExtractor >> ENH: Add ArchiveTestingDataOnGirder.py >> BUG: Correct AtanRegularizationHeavisideStepFunction derivative >> ENH: Add Utilities/Maintenance/ContentLinkSynchronization.sh >> BUG: Remove extra HessianToObjectness content links >> ENH: Wrap SpatialFunction float types with ITK_WRAP_float >> BUG: Bump PerformanceBenchmarking to 2016-11-04 >> BUG: itk_python_expression_add_test too many quotes. >> ENH: Wrap VectorImage with complex real pixel types >> ENH: Bump PerformanceBenchmarking to 2016-11-07 >> BUG: Do not assume zero Index in ReinitializeLevelSetImageFilter >> ENH: Create itk_module_add_library macro >> BUG: Update computeCodeCoverageLocally.sh for KWStyle addition >> COMP: Install a newer version of CMake on CircleCI >> ENH: Use GitHub Pages as the first ExternalData resource >> ENH: Add tests to demonstrate OSX dynamic_cast failure >> BUG: Use random seed with for MersenneTwisterRandomVariateGenerator. >> BUG: Enable program global timestamp >> BUG: Set random number seed in Mattes metric test >> BUG: Notify builder that ITK_DYNAMIC_LOADING is required with wrapping >> BUG: Define ITK_DYNAMIC_LOADING before ITK_WRAP_PYTHON >> BUG: Set random number seed mutual information metric tests >> BUG: Wrap std::vector< itk.Point > >> BUG: Fix wrapping of LandmarkBasedTransformInitializer >> BUG: Rename UnsharpMaskingImageFilter to UnsharpMaskImageFilter >> DOC: Add D?enan Zuki? to .mailmap >> >> Max Smolens (4): >> COMP: CID-1266557 StatisticsLabelMapFilter uninitialized scalar field >> BUG: CID-1355438 QuadEdgeTest1 resource leaks >> COMP: CID-1355472 MIRegistrationFunction unused value >> COMP: Fix link errors for VNL template instantiations on Windows >> >> Mayeul Chassagnard (7): >> BUG: Test added and error fixed in HDF5ImageIO >> ENH: Update add_library TO itk_module_add_library >> COMP: Set Policy CMP0023 target_link_libraries for >> Modules/ThirdParty/VNLI... >> BUG: Add ITK_TEMPLATE_EXPORT to template classes >> BUG: Fix errors linked to dyn_cast merge >> BUG: Restore old ITKModule_TEMPLATE_EXPORT specification for classes >> BUG: dash3win7 dashboard build error unresolved external symbol >> >> Michka Popoff (3): >> ENH: Update UpdatepygccxmlFromUpstream.sh for v1.8.0 >> ENH: Update igenerator.py for pygccxml v1.8.0 >> COMP: Use pygccxml's public API for apply definitions >> >> Pierre Barbier de Reuille (2): >> COMP: Fix function naming error when using FFTWD >> COMP: Fix function naming error when using FFTWD >> >> Sean McBride (1): >> COMP: Bypass HDF5 bugs under TSan >> >> Simon Rit (2): >> COMP: remove C++11 compiler warning for CUDA compilations >> COMP: remove C++11 compiler warning for CUDA compilations >> >> Somesh Kashyap (2): >> BUG: Override TransformCategoryType for >> AzimuthElevationToCartesianTransform >> BUG: -Added test case for itkAzimuthElevationToCartesianTransform >> >> Sumedha Singla (1): >> ENH: Updated the git tag for ITK-Minimal-Path-Extraction remote module >> >> Taylor Braun-Jones (4): >> COMP: Skip path length checks if ITK_SKIP_PATH_LENGTH_CHECKS is enabled >> COMP: Fix truncation from double to float warning >> DOC: Fix incorrect itkFactorylessNewMacro documentation >> COMP: Only include the headers for required OpenCV modules >> >> Thien Nguyen (1): >> PERF: SmapsFileParser unnecessary dynamic_cast >> >> VXL Maintainers (4): >> VNL 2016-05-15 (14f97ab4) >> VNL 2016-06-22 (23a93adb) >> VNL 2016-06-29 (d62a2d70) >> VNL 2016-07-06 (acfa62cc) >> >> Vladimir S. FONOV (1): >> COMP: Build against GCC 5.3.1 >> >> Zach Williamson (2): >> ENH: Update Remote Module Tags >> BUG: Fix Python Wrappings in C++11 >> >> Ziv Yaniv (1): >> BUG: Metric sampling percentage accepted values outside (0.0, 1.0]. >> >> >> ----------------------------------------------------- >> Errors or omissions? Please fix them here: >> >> https://docs.google.com/document/d/1UQAh7_mDjps0GZYX62biTwFrA54KRvf__4oeT0ymzZg/edit >> _____________________________________ >> Powered by www.kitware.com >> >> Visit other Kitware open-source projects at >> http://www.kitware.com/opensource/opensource.html >> >> Kitware offers ITK Training Courses, for more information visit: >> http://www.kitware.com/products/protraining.php >> >> Please keep messages on-topic and check the ITK FAQ at: >> http://www.itk.org/Wiki/ITK_FAQ >> >> Follow this link to subscribe/unsubscribe: >> http://public.kitware.com/mailman/listinfo/insight-users > From asertyuio at yahoo.fr Sun Jan 15 11:07:01 2017 From: asertyuio at yahoo.fr (asertyuio) Date: Sun, 15 Jan 2017 17:07:01 +0100 Subject: [ITK-users] read palette image as scalar image + palette, instead of RGB image Message-ID: <6efe579a-06a0-7393-cfb0-ecb71f65bad2@yahoo.fr> Hi all, I want to read a palette image as a scalar image with its indexes + a vector of RGB, corresponding to the image palette. The format of the image is TIFF, but can be png or gif as well. When I'm reading such palette image, the |itk::ImageIOBase|, as implemented here , tels me that the image has a RGB pixel type. |itk::ImageIOBase::PointerimageIO =itk::ImageIOFactory::CreateImageIO(fileName,itk::ImageIOFactory::ReadMode);| Is it possible to know, *through ITK*, whether the image is actually a palette image, /i.e./ scalar image along with a color palette, and read this image as a scalar image + palette ? I need have access to the index, as stored in the file as well as the color palette used in the file. For now, my only solution is to use freeImagePlus to identify and read this type of image. I haven't found any function in the class |ImageIOBase| that could relate to that. Any help would be appreciated, thanks a lot ! Yann -------------- next part -------------- An HTML attachment was scrubbed... URL: From julien.jomier at kitware.com Mon Jan 16 03:33:02 2017 From: julien.jomier at kitware.com (Julien Jomier) Date: Mon, 16 Jan 2017 09:33:02 +0100 Subject: [ITK-users] ANN: CMake Course - March 13 in Lyon, France Message-ID: Kitware will be holding a CMake training course on March 13, 2017 at Kitware's office in Lyon, France. This one-day course will cover CMake, CTest, CPack and CDash. Visit our website for more information and registration details (early registration and student discounts available): http://training.kitware.fr/browse/129 Note that the course will be taught in English. If you have any questions, please contact me directly or training at kitware.fr. We are looking forward to seeing you in Lyon, Julien From dzenanz at gmail.com Mon Jan 16 09:50:59 2017 From: dzenanz at gmail.com (=?UTF-8?B?RMW+ZW5hbiBadWtpxIc=?=) Date: Mon, 16 Jan 2017 09:50:59 -0500 Subject: [ITK-users] read palette image as scalar image + palette, instead of RGB image In-Reply-To: <6efe579a-06a0-7393-cfb0-ecb71f65bad2@yahoo.fr> References: <6efe579a-06a0-7393-cfb0-ecb71f65bad2@yahoo.fr> Message-ID: Hi Yann, the relevant part of code for PNG format is in itkPNGImageIO.cxx, approximately lines 365-395 (link ). You will need to modify that. If you modify it in a way so it can be useful for others, please submit your patch to code review . To get access to the specialized functions of the PNG reader, you would instantiate it directly: itk::PNGImageIO::Pointer imageIO = ... std::vector colorTable = imageIO->GetColorTable(); //call a function you added to PNG reader Hope this helps, D?enan On Sun, Jan 15, 2017 at 11:07 AM, asertyuio via Insight-users < insight-users at itk.org> wrote: > Hi all, > > I want to read a palette image as a scalar image with its indexes + a > vector of RGB, corresponding to the image palette. The format of the image > is TIFF, but can be png or gif as well. > > When I'm reading such palette image, the itk::ImageIOBase, as implemented > here > , > tels me that the image has a RGB pixel type. > > itk::ImageIOBase::Pointer imageIO = > itk::ImageIOFactory::CreateImageIO( > fileName, itk::ImageIOFactory::ReadMode); > > Is it possible to know, *through ITK*, whether the image is actually a > palette image, *i.e.* scalar image along with a color palette, and read > this image as a scalar image + palette ? I need have access to the index, > as stored in the file as well as the color palette used in the file. > > For now, my only solution is to use freeImagePlus to identify and read > this type of image. I haven't found any function in the class ImageIOBase > that could relate to that. > > Any help would be appreciated, thanks a lot ! > > Yann > > _____________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Kitware offers ITK Training Courses, for more information visit: > http://www.kitware.com/products/protraining.php > > Please keep messages on-topic and check the ITK FAQ at: > http://www.itk.org/Wiki/ITK_FAQ > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/insight-users > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From matt.mccormick at kitware.com Mon Jan 16 16:18:18 2017 From: matt.mccormick at kitware.com (Matt McCormick) Date: Mon, 16 Jan 2017 16:18:18 -0500 Subject: [ITK-users] [ANN] ITK 4.11 Release Candidate 2 is ready for testing! Message-ID: On behalf of the Insight Toolkit community, we are proud to announce that ITK 4.11 release candidate 2 has been tagged and is available for testing! Please take this opportunity to test the new features in the release candidate. To obtain the source code, use the links: https://github.com/Kitware/ITK/archive/v4.11rc02.zip https://github.com/Kitware/ITK/archive/v4.11rc02.tar.gz or git clone https://itk.org/ITK.git cd ITK git checkout -q --detach v4.11rc02 For more details, please see the Git documentation [1]. A few selected highlights for this release: - Remote Modules were added to: perturb mesh vertices with additive gaussian noise, accurately benchmark computational performance, perform principal components analysis of scalar, vector, and mesh vertex data, create a run-length encoded memory compression scheme for itk::Image, run N-D morphological contour interpolation, interpolate multi-label images, iterate over multiple images simultaneously, and compute inverse displacement fields. - NumPy bridge support is now enabled by default with NumPy array views of multi-component images and VNL vectors and matrices. - Internal HDF5 was updated to the latest upstream version along with a number of other third-party libraries. This release introduces a new template class export specification macro, ITK_TEMPLATE_EXPORT. The macro should be used with templated classes to address failing dynamic_cast's and exception catching across binaries on Mac OSX. Bugs were addressed and improvements were made to how the pseudo-random number generator is used. Tests that rely on the random number generator should explicitly set the global seed at start: itk::Statistics::MersenneTwisterRandomVariateGenerator::GetInstance()->SetSeed( 121212 ); To improve randomness, new instances of the generator start from a different seed; some minor differences in the output of algorithms that uses the generator, like mutual information metrics, should be expected. Additionally, output may change for registration with composite affine transforms; the v4 registration framework now uses corner sampling as opposed to random sampling to estimate their parameter scales. Please test the release candidate and share your experiences on the mailing list, issue tracker, and Gerrit Code Review. An Experimental build, which demonstrates how the test suite performs on your local build system, can be submitted to the dashboard [2] with: mkdir ../ITK-build cd ../ITK-build cmake ../ITK ctest -j 4 -M Experimental -T Configure -T Build -T Test -T Submit Visual Studio builds must also add ?-C Release? to the ctest command. Notify the mailing list if there are any unexpected failures. Testing your own applications against the RC is also appreciated. Congratulations to the 31 contributors to this release. We would especially like to recognize the new contributors: Hastings Greer, Gilles Filippini, Thien Nguyen, Caspar Goch, Mayeul Chassagnard, Somesh Kashyap, Simon Rit, Pierre Barbier de Reuille, and Maeliss Jallais. The 4.11.0 final release is scheduled for January 23rd. [1] http://www.itk.org/Wiki/ITK/Git [2] http://open.cdash.org/index.php?project=Insight New Features ------------ * Wrapping Improvements - Python GetArrayFromImage() and GetImageFromArray() from ITKBridgeNumPy are directly accessible from the Python itk namespace. - The itk package loads much faster: individual modules are loaded only when required. - Conversion of ITK images from and to NumPy array using Bridge NumPy supports RGB, RGBA, and Vector images. - VNL vectors and VNL matrices can be converted from and to NumPy objects with respectively the new couple of functions GetArrayFromVnlVector()/GetVnlVectorFromArray() and GetArrayFromVnlMatrix()/GetVnlMatrixFromArray() - The global timestamp is used across all ITK Python modules when built statically - Wrap additional classes such as KernelFunctionBase - itk_python_add_test CMake function added for Python script testing in ITK modules * New Remote Modules - DVMeshNoise - Perturbing mesh vertices with additive gaussian noise - http://hdl.handle.net/10380/3567 - PerformanceBenchmarking - Accurate benchmarking of computational performance - http://hdl.handle.net/10380/3557 - PrincipalComponentsAnalysis - Principal components analysis of scalar, vector, and mesh vertex data - http://hdl.handle.net/10380/3386 - RLEImage - Run-length encoded memory compression scheme for itk::Image - http://hdl.handle.net/10380/3562 - MorphologicalContourInterpolation - N-D morphological contour interpolation - http://hdl.handle.net/10380/3563 - GenericLabelInterpolator - A generic interpolator for multi-label images - http://hdl.handle.net/10380/3506 - MultipleImageIterator - Iterate over multiple images simultaneously - http://hdl.handle.net/10380/3455 - FixedPointInverseDisplacementField - Computes inverse displacement field - http://hdl.handle.net/10380/3222 * Core Improvements - New ITK_TEMPLATE_EXPORT for templated classes resolves cross-binary dynamic_cast on Mac OSX - New MersenneTwisterRandomVariateGenerator instances are initialized with different seeds - Use compiler feature detection in CMake for C++11 features, etc. - New CMake macro itk_module_add_library for creating libraries in ITK modules - Improved support for ccache and distcc with CMAKE__COMPILER_LAUNCHER (CMake >=3.4 required) - Support for .sha512 ExternalData content links - GitHub Pages and data.kitware.com ExternalData repositories added - GPGPU system support for C++11 - Support of new compilers: Visual Studio 15 and XCode 8.2.1 (clang-800.0.42.1) * Filtering Improvements - HessianToObjectnessMeasure moved out of the ITKReview module - New UnsharpMaskImageFilter for image edge enhancement * IO Improvements - TransformFactory class has been moved to a separate module - Spline order added to BSplineTransform identifier - Improved NIFTI orientation support * Documentation Improvements - Updates to the Software Guide, Doxygen, Wiki and Sphinx Examples * Third Party Library Updates - pygccxml updated to v1.8.0 - VNL updated to latest upstream (2016.07.06) - SWIG updated to v3.0.11 - KWSys updated to latest upstream (2016.11.21) - HDF5 updated to v1.8.17 - SCIFIO updated to latest upstream (2016.12.01) - DCMTK updated to 3.6.1_20121012 - CastXML to latest upstream (2016.01.28) * Improved Code Coverage -- we are at 85.44%! - Jon Haitz-Legarreta's extensive code coverage improvements - https://blog.kitware.com/why-should-we-spend-time-writing-tests/ * *Lots* of important bug fixes * And much more! See details in the log below. Changes from v4.11rc01 to v4.11rc02 ----------------------------------- Bradley Lowekamp (5): BUG: Remove unused SimpleImageRegistrationTest baselines ENH: Expose GetNextSeed method in MersenneTwiseter Generator BUG: Add option for fixed seed or wall clock seed for sampling BUG: Use metric random seed in v3 examples BUG: Prefer setting seed at algorithm in "v4" tests. Francois Budin (3): ENH: Update BridgeNumPy to latest version on 2017.01.08 to address ITK-3511 BUG: Extra \$ in doxygen comment BUG: Binary include directory added only if enabled shared Jon Haitz Legarreta (2): DOC: Document itkLabelOverlapMeasuresImageFilter methods. DOC: Fix ITKImageNoise filters' doc TeX errors. Matthew McCormick (1): BUG: Remove invalid ImageRegistration4Test.png.sha512 Max Smolens (1): DOC: Fix itkUnsharpMaskImageFilter documentation typos Simon Rit (1): BUG: ITK-based software was crasing when thread creation failed Changes from v4.10.0 to v4.11rc01 --------------------------------- Bill Lorensen (4): COMP: Restore support for clang 3.0 compiler COMP: Consistent use of ModifiedTimeType ENH: Bump WikiExamples remote module version ENH: Bump WikiExamples version Bradley Lowekamp (57): ENH: Add registered TrasformIO's to exception ENH: Use template or constant for loop stop condition ENH: Updating SWIG version to 3.0.9 COMP: Address VS9 ambiguous std::abs call in Haung calculator COMP: Fix undefined NumericTraits::Zero and One errors with mingw64 BUG: Fix segfault if ~CleanUpObjectFactory called multiple times BUG: Address itkHDF5ImageIO test failures for mingw64 BUG: demonstrate dynamic_cast failure when reading transforms BUG: Address itkHDF5ImageIO test failures for mingw64 ENH: Updating SWIG version to 3.0.10 ENH: Enable CMP0063 New behavior COMP: Enable hidden visibility property with vxl static libraries COMP: Enable hidden visibility property with HDF5 static libraries COMP: Enable hidden visibility property with HDF5 static libraries BUG: Match Add2 function to AddImageFilter documentation ENH: Improve support for std::complex with PowImageFilter ENH: Explicitly mark required files for dependent tests COMP: Bypass XCode 7.3,8 internal compilation error COMP: Address CMake configuration error with itkJPEG2000Test03 property BUG: Correct test's REQUIRED_FILES to only the input. ENH: move HessianToObjectnessMeasure filter out of Review ENH: Separate TransformFactory class into separate module DOC: Add links between similar label to rgb filters ENH: Separate data from function calls COMP: Fix changed Graft method ENH: Reduce template dependencies on CalculateRotationMatrix ENH: Add Functor Accessors to LabelMapToRGB filter BUG: Enable VirtualDomain and FixedTransform in RegMethv4 BUG: Use BSpline Order 3 for 2D in transform factory. ENH: Add spline order to BSplineTransform's string id ENH: Adding initial CircleCi configuration file COMP: Fix float to unsigned integer conversion warnings BUG: Include installed modules in ITK_MODULES_ENABLED COMP: Address CMake error that ITKGPUCommon is not in export COMP: Address wrong library types with VS and shared libraries BUG: Ensure CreateImageIO is concurrent thread safe ENH: Mark HDF5 CMake options as internal COMP: Add template export declaration for ParametricPath COMP: Correct TEMPLATE_EXPLICIT definition in Path module ENH: Factor out common code in the TrasformFactoryBase registration ENH: Add CMake variable for max transform dimension, defaults 4 ENH: Create CMake module to check for private RTTI compatibility ENH: Improving setting of default ITK_TEMPATE_VISIBILITY_DEFAULT COMP: Correct ifndef value to allow user defined ITK_TEMPLATE_EXPORT BUG: Add explicit instantiate for ObjectToObjectOptimizerBase COMP: Use add_definitions for CMake 2.8.9 compatibility COMP: Add warning suppression for distcc warning ENH: Explicitly instantiate the optimizer base over float BUG: Use IsLinear to check if transform is "affine" ENH: Remove unneeded includes of random iterator header ENH: Improve thread-safety for Generator, and unique New sequence ENH: Do not use global random generator BUG: Update v3 registration metrics to use local seed ENH: Prefer setting local seed over global in tests. ENH: Update SWIG to latest 3.0.11 release BUG: relax testing parameters for v3 translation registration BUG: Restore baseline for debug registration Caspar Goch (2): BUG: Use printable type for RGBA pixel ostream for ITK-3501 STYLE: Remove extra space for ITK-3501 Christina Rossmanith (1): DOC: Added more details to the class Doxygen documentation. Davis Vigneault (2): COMP: VCL_DEFINE_SPECIALIZATION not defined ENH: Add remote module DVMeshNoise D?enan Zuki? (27): BUG: Fixing CID-1355433 (IDENTICAL_BRANCHES) ENH: Adding MultipleImageIterator as a remote module COMP: enables TBB 4.4 back-end for VTK7's SMP COMP: enabling position independent code flag for FFTW ENH: adding configuration file for code reformatting tool clang-format ENH: Updating hooks to work with Windows/TortoiseGit/KDiff3 COMP: Fixing -fPIC flag passing with Ninja build system ENH: Adding RLEImage as a remote module ENH: Updating uncrustify configuration to current git version STYLE: better compliance with ITK style STYLE: A new option in uncrustify, updating the config file accordingly ENH: Adding MorphologicalContourInterpolation as a remote module ENH: improving documentation BUG: fixing buffer growing endlessly, as reported by Timothee Evain BUG: fixing buffer growing endlessly, as reported by Timothee Evain STYLE: default uncrustify configuration file is less aggressive COMP: Fixing warning COMP: VS15 compiler fix BUG: casting -9 to unsigned produced unwanted result BUG: Ensuring consistency between debug and release COMP: Updating LesionSizingToolkit after some recent compile fixes COMP: respect option METAIO_USE_NAMESPACE ENH: updating version of AnisotropicDiffusionLBR ENH: adding UnsharpMaskingImageFilter COMP: explicitly cast to output type BUG: double call to update would cause empty output image ENH: Updating RLEImage remote module. Change-log: Eugene Prilepin (4): ENH: Add the "ITK_USE_GPU" to ITK Config BUG: Fix API for set/get "LaplacianImageFilter" object ENH: Add support of images types with the 'CovariantVector' pixel type ENH: Add python test for the 'GradientVectorFlowImageFilter' wrap Francois Budin (52): ENH: Adding GetArrayFromImage in python itk namespace ENH: Adding GetImageFromArray in python itk namespace ENH: *_WRAP_* variable per external module BUG: ImportImageFilter not responsible of memory management ENH: New remote module GenericLabelInterpolator DOC: SetNumberOfOutputs had wrong comment BUG: lazyAttributes dictionary keys could be over-ridden BUG: lazyAttributes dictionary keys could be over-ridden BUG: Fix recent update of HDF5 (1.8.17) ENH: Update SCIFIO to latest version on 08/23/2016 ENH: Addition of the remote module FixedPointInverseDisplacementField ENH: Update SCIFIO to latest version on 08/29/2016 BUG: Path to commit was relative instead of absolute ENH: Path to SetupForDevelopment is relative, not absolute BUG: LSMImageIO write function was not checking image dimension BUG: LSMImageIO was not checking correctly image dimension BUG: Missing associated test data BUG: Missing associated test data ENH: Bump CMakeLists.txt version to 4.10.1. BUG: Quotes are not escaped in configured cmake file ENH: Improving API of Graft() in itk::Image ENH: Updating ITKGenericLabelInterpolator remote module ENH: Update ITKIOTransformDCMTK remote module BUG: Factory registration should depend on ITK_BUILD_SHARED COMP: Updating DCMTK compilation for Ninja ENH: Update version of DCMTK to 3.6.1_20121012 ENH: Update SCIFIO to latest version on 10/25/2016 BUG: Swig and PCRE do not support space in installation paths BUG: exit() call from within piped commands was not exiting the script BUG: Typo in folder creation command ENH: Only display message for transform registered multiple times in debug ENH: Image spacing must be positive BUG: Supported extensions by PNG IO were not added in constructor. DOC: Documentation in itkRBGAPixel and itkRGBPixel was incorrect. ENH: Update SCIFIO to lastest (2016.12.01) ENH: FixedPointInverseDisplacementField moved to InsightSoftwareConsortium COMP: Remove compilation warnings ENH: Improved support of ccache and distcc BUG: GPUImage regression due to API change. ENH: Update Bridge Numpy (2016.12.05) ENH: Update VariationalRegistration to remove warnings during compilation ENH: FindPythonLibs does not support both debug and release python libraries ENH: Update VariationalRegistration BUG: Missing ITK_TEMPLATE_EXPORT in forward declaration of itk::ImageBase BUG: Missing ITK_TEMPLATE_EXPORT in itkOptimizerParametersHelper BUG: Missing ITK_TEMPLATE_EXPORT in templated class BUG: Remove linkage warnings on MacOS BUG: HDF5 CMake installation directory variable had not been updated BUG: Missing include header in AnisotropicDiffusionBLR remote module hxx files COMP: Silencing unused variable warning in itkTimeStamp STYLE: Improve style checking by using module ITKKWStyleOverwrite.txt COMP: OS*Barrier functions are deprecated on MacOS 10.12 GCC-XML Upstream (1): ENH: pygccxml v1.8.0 (reduced) Gert Wollny (1): BUG: Relax vnl_complex floating point comparisons for i386 Gilles Filippini (1): BUG: Use NATIVE_HBOOL for encoding HDF5 types. HDF Group (1): ENH: hdf5 1.8.17-r30218 (reduced) Hans Johnson (23): COMP: Use cmake WriteCompilerDetectionHeader ENH: Use itk_compiler_detection versions COMP: Need ITK_NOEXCEPT_OR_THROW macro. COMP: Provide consistent granular C++11 support STYLE: Use granular ITK_COMPILER_CXX_STATIC_ASSERT STYLE: Prefer to use consistent definitions COMP: Improve robustness of identifying the compiler standard used BUG: try_compile for AlignAs were always failing STYLE: Provide a well documented macro for repeated code STYLE: Delete functions in consistent way COMP: GPU baseclass ivars need to be protected COMP: Remove unnecessary circular dependancy COMP: Add long long usage for HDF5 COMP: Add long long usage for HDF5 STYLE: Prefer static small array to dynamic array BUG: Confusing interface for FFTW wisdom files STYLE: Output dimension from OutputImageType STYLE: Code review style cleanups STYLE: Prefer to use ITK AssertOrThrow macros ENH: Add OverrideBoundaryCondition logic ENH: Provide mechanism for enhanced NIFTI support BUG: Use NIFTI sform/qform conventions correctly ENH: Remove ambiguity about sform/qform Hastings Greer (8): BUG: ITK-3448 Wrap itkQuadEdgeCellTraitsInfo more specifically BUG: make itkTriangleHelper instantiable to ease wrapping BUG: remove lsqr because of license issues ITK 1160 BUG: make itkTriangleHelper instantiable to ease wrapping BUG: initialize X to zero in lsmr Solve BUG: Labled Point Set Registration: test multiple labels BUG: Fix python wrapping of Cuberille remote module BUG: Add test demonstrating Python global timestamp issue Jean-Christophe Fillion-Robin (5): STYLE: UseITK: Set ImageIO exceptions using new convention. See #3393 STYLE: MeshIO: Moves virtual destructor into cpp files. See #3393 STYLE: Update MeshIO factories to use RegisterFactoryInternal. See #3393 STYLE: MeshIO: Move MeshFileWriterException into its own file. See #3393 STYLE: MeshIO: Remove unused include from headers. See #3393 Johan Andruejol (3): ENH: Add missing itkKernelFunctionBase wrapping ENH: Add PrincipalComponentsAnalysis remote module COMP: Override cannot be used with inline Jon Haitz Legarreta (216): ENH: Improve itkFlatStructutingElement coverage. ENH: Improve itkPathToImageFilter class coverage. ENH: Improve itkIsolatedWatershedImageFilter coverage. ENH: Improve itkLogSigmoidTransferFunction coverage. STYLE: Improve itkBSplineTransform doc style. ENH: Improve GaborKernelFunctionCoverage. PERF: Remove duplicate itkMath include STYLE: Move the PrintSelf method to the end STYLE: Improve the itkScalarToRGBColormapImageFilter style. STYLE: Delete duplicate method documentation STYLE: Remove method documentation from implementation file STYLE: Improve GACLevelSet classes' style STYLE: Improve test style ENH: Improve itkGaussianDerivativeImageFilter coverage. ENH: Improve the itkScalarToRGBColormapImageFilter coverage STYLE: Improve itkScalarToRGBColormap test style ENH: Improve GACLSImageFilter classes' coverage STYLE: Improve comment style in GACLS tests ENH: Improve itkImportImageFilter coverage ENH: Improve itkVideoFileReader coverage ENH: Improve itkVideoFileWriter coverage STYLE: Improve the itkVideoFileWriter style. STYLE: Imrpove itkVideoFileReader style. ENH: Improve the itkBSplineControlPointImageFunction coverage STYLE: Improve the itkIntensityWindowingImageFilter style STYLE: Improve the itkIntensityWindowingImageFilter test style ENH: Improve ImageToSpatialObjectRegistrationMethod coverage STYLE: Improve test style ENH: Improve MaskNeighborhoodOperatorImageFilter coverage ENH: Improve itkMeshFileWriter coverage ENH: Improve RescaleIntensityImageFilter coverage. ENH: Improve itkClampImageFilter coverage. BUG: Fix ivar type casting in PrintSelf. STYLE: Improve MRIBiasFieldCorrectionFilter style. ENH: Improve MRIBiasFieldCorrectionFilter coverage. ENH: Improve itkIntensityWindowingImageFilter coverage BUG: Fix Run-time type information in CSV module classes. ENH: Improve the itkHistogram class code coverage. DOC: Fix documentation typo. STYLE: Improve the ImproveRescaleIntensityImageFilter style. PERF: Make the itkVideoFileReader ivars private PERF: Make itkVideoFileWriter ivars private ENH: Improve coverage for itk::OrientImageFilter. STYLE: Improve itk::OrientImageFilter class style. ENH: Improve itkCSVNumericObjectFileWriter coverage. ENH: Add missing standard class typdefs. ENH: Improve itkVoronoiSegmentationImageFilter coverage. ENH: Improve itkVoronoiSegmentationImageFilter style. STYLE: Improve the MalahanobisDistanceThresholdImageFunction style. ENH: Improve coverage for itkMalahanobisDistanceThreshold. ENH: Improve itk::MinimumMaximumImageCalculator coverage. ENH: Improve itkMinimumMaximumImageCalculator style. BUG: Fix type mismatch in test. STYLE: Improve itkPolylineMaskImagefilter style. ENH: Improve itkPolylineMaskImageFilter coverage. ENH: Improve itkFileListVideoStyle. ENH: Improve itkLandmarkBasedTransformInitializer coverage. ENH: Add baseline image to itkPolylineMaskImageFilter test. ENH: Improve coverage for itkBSplineTransformInitializer. STYLE: Improve itkBSplineTransformInitializer doc style. ENH: Enhance itkBSplineTransformInitializer implementation. DOC: Fix typo in method documentation. ENH: Improve the itkRegularStepGradientDescentOptimizerv4 style. STYLE: Improve the itkSimpleContourExtractorImageFilter style. ENH: Exercise the class' Get methods. ENH: Improve coverage for itkStatisticsOpeningLabelMapFilter. ENH: Improve style for itkThresholdLabelerImageFilter. ENH: Improve itkThresholdLabelerImageFilter coverage. ENH: Get internal ImageIO via a const macro. ENH: Improve the itkSimpleContourExtractorImageFilter coverage. STYLE: Improve the itkMetaArray class style. ENH: Improve MetaArrayReader/Writer coverages. ENH: Improve the itkCovarianceImageFunction style. STYLE: Improve itkVoronoiDiagram2DGenerator style. ENH: Improve VoronoiDiagram2DGenerator coverage. STYLE: Improve the itkBayesianClassifierImageFilter style. STYLE: Improve the itkMetaArrayWriter style. ENH: Improve itkCovarianteImageFunction coverage. COMP: Fix signed/unsigned int comparison warning. DOC: Improve itkGrayscaleDilateImageFilter documentation. DOC: Improve documentation for itkGrayscaleErodeImageFilter. DOC: Improve ConfigureHistogram method documentation. STYLE: Improve the itkMovingHistogramMorphologyImagefilter style. BUG: Fix Superclass name in RTTI. STYLE: Improve itkGaussianInterpolateImageFunction style. ENH: Improve coverage for itkGaussianInterpolateImageFunction. ENH: Improve itkBayesianClassifierImageFilter coverage. ENH: Add itkBSplineControlPointImageFilter RTTI. STYLE: Improve itkBSplinecontrolPointImageFilter style. ENH: Improve itkBSplineControlPointImageFilter coverage. ENH: Improve coverage for itkRegularStepGradientDescentOptimizerv4. STYLE: Improve the class implementation file style. STYLE: Improve the itkResampleImageFilter style. DOC: Fix typo in GetMTime method doc. STYLE: Remove out-of-body implementation doc ENH: Improve itkResampleImageFilter coverage. ENH: Improve itkAbsImageAdaptor and Filter coverage. BUG: Fix itkLSMImageIO class' Superclass name. ENH: Improve the itkInterpolateImagePointsFilter coverage. ENH: Improve itkPowImageFilter coverage. BUG: Fix ConvolutionImageFilter RTTI. STYLE: Use initialization lists. STYLE: Improve BinaryFunctorImageFilter style. ENH: Improve itkMinimumImageFilter code coverage. BUG: Fix Linux-x86_64-gcc4.1 warning on implicit conversion. ENH: Improve MaximumImageFilter coverage. BUG: Fix conversion to PixelType conversion. COMP: Fix double to unsigned char conversion warning. ENH: Improve coverage for itkNormalizeToConstantImageFilter. BUG: Fix itkSquaredDifferenceErrorFunction RTTI. ENH: Improve itkMeanImageFunctionCoverage. ENH: Improve itkSquareImageFilter coverage. STYLE: Improve the itkSquaredDifferenceErrorFunction style. STYLE: Enhance style for itkNormalizeToConstantImageFilter. STYLE: Improve itkMeanImageFunction style. ENH: Remove unnecesary call to filter print. ENH: Improve itkRegionOfInterestImageFilter coverage. STYLE: Improve itkRegionOfInterestImageFilter style. STYLE: Improve itkPasteImageFilter style. STYLE: Improve itkJoinSeriesImageFilter style. BUG: Fix itkPadLabelMapFilter RTTI Superclass. COMP: Address std::cout.precision conversion warning. ENH: Improve itkBayesianClassifiertImageFilter coverage. ENH: Improve itkPadLabelMapFilter coverage. ENH: Improve itkJoinSeriesImageFilter coverage. ENH: Improve the itkPasteImageFilter coverage. ENH: Improve MeanImageFilter coverage. COMP: Address std::cout.precision conversion warning. ENH: Improve TernaryMagnitudeImageFilter coverage. ENH: Improve FFTConvolutionImageFilter coverage. DOC: Fix class documentation in ternary magnitude filters. ENH: Improve ConstrainedValueDifferenceImageFilter coverage. ENH: Improve AndImageFilter coverage. ENH: Add baseline test to itkTernaryMagnitudeImageFilter. ENH: Use MD5 comparison framework in baseline test. ENH: Improve itk::VectorRescaleIntensityImageFilter coverage. STYLE: Improve the itkVectorRescaleIntensityImageFilter style. ENH: Print missing ivar in filter PrintSelf method. ENH: Improve itkComplexToImaginaryFilter coverage. ENH: Improve itkComplexToPhaseImageFilter coverage. ENH: Improve itkComplexToModulusImageFilter coverage. ENH: Improve itkComplexToRealImageFilter coverage. ENH: Improve itkVectorResampleImageFilter coverage. ENH: Add GetTransform method. ENH: Improve itkConstrainedValueAdditionImageFilter coverage. ENH: Improve itkModulusImageFilter coverage. ENH: Improve itkLog10ImageFilter coverage. ENH: Imporve itkMagnitudeAndPhaseToComplexImageFilter coverage. ENH: Improve itkLogImageFilter coverage. ENH: Improve itkInvertIntensityImageFilter coverage. STYLE: Improve itkInvertIntensityImageFilter style. DOC: Add missing doc to itkInvertIntensityImageFilter. STYLE: Improve itkIntensityWindowingImageFilter style. STYLE: Use initialization lists. ENH: Improve itkIntensityWindowingImageFilter coverage. ENH: Improve itkNaryMaximumImageFilter coverage. COMP: Fix std::precision type casting warning. ENH: Improve itkPointSetToPointSetRegistrationMethod coverage. STYLE: Improve the itkPointSetToPointSetImageRegistrationMethod style. ENH: Remove SmartPointers being explicitly initialized to null. STYLE: Improve the itkPointSetToImageRegistrationMethod style. ENH: Improve itkPointSetToImageRegistration coverage. STYLE: Change the name of the itkPointSetToImageRegistrationMethod test. STYLE: Improve itkVectorResampleImageFilter style. STYLE: Improve the itkAntiAliasBinaryImageFilter style. ENH: Improve trigonometric function filters' coverage. STYLE: Remove test names from std::out messages. ENH: Improve Boolean Algebra ImageFilters coverage. STYLE: Improve the EuclideanDistancePointMetric style. ENH: Improve itkSigmoidImageFilter coverage. STYLE: Improve itkCropImageFilter style. ENH: Improve itkCropImageFilter coverage. ENH: Improve RGBToLuminanceImageFilter and Adaptor coverage. ENH: Improve itkRescaleIntensityImageFilter coverage. ENH: Improve the itkMatrixSelectionImageFilter coverage. ENH: Improve itkTanImageFilter and Adaptor coverage. ENH: Increase itkSqrtImageFilter and Adaptor coverage. ENH: Increase itkTernaryOperatorImageFilter coverage. ENH: Increase itkSymmetricEigenAnalysisImageFilter coverage. STYLE: Improve itkScalarImagekmeansImageFilter style. STYLE: Conform to TEST_SET_GET_VALUE definition. BUG: Fix uninitialized variable due to dynamic analysis defect. BUG: Fix uninitialized variable defect reported by valgrind. ENH: Improve the itkPointSetToPointSetRegistrationTest. ENH: Improve the itkPointSetToImageRegistrationTest. ENH: Increas BinaryMagnitudeImageFilter coverage. STYLE: Remove test name from std output. ENH: Increase MagnitudeImageFilter coverage. BUG: Fix uninitialized variable defect reported by valgrind. BUG: Fix Superclass name in RTTI. STYLE: Improve itkFrustumSpatialFunction style. STYLE: Improve the itkConicShellInteriorExteriorSpatialFunction style. BUG: Fix Superclass template argument list. STYLE: Improve the itkTorusInteriorExteriorSpatialFunction style. STYLE: Improve the itkCheckerBoardImageFilter class style. ENH: Improve the itk::LabelVotingImageFilter coverage. ENH: Improve itkCheckerBoardImageFilter coverage. STYLE: Improve itk::LabelVotingImageFilter style. STYLE: Improve the itkHoughTransform2DCirclesImageFilter style. ENH: Add test for itk::FrustumSpatialFunction class. ENH: Improve itkConnectedThresholdImageFilter coverage. STYLE: Improve itkConnectedThresholdImageFilter style. BUG: Fix FrustumSpatialFunction internal precision conversion. COMP: Fix implicit conversion warning. STYLE: Improve itkThresholdImageFilter style. ENH: Add test for itk::TorusInteriorExteriorSpatialFunction. BUG: Fix Superclass template argument list. ENH: Improve itkUnsharpMaskingImageFilter implementation. ENH: Improve the itkUnsharpMaskingImageFilter coverage. ENH: Fix UnsharpMaskingImageFilter test inconsistencies. BUG: Add missing itkTypeMacro. DOC: Document the member variables. BUG: Fix the itkImageSource RTTI class name, STYLE: Improve itkLabelImageGaussianInterpolateImageFunction style. ENH: Finish itkGaussianInterpolateImageFunction PrintSelf. STYLE: Improve itkLabelOverlapMeasurementImageFilter style. KWSys Robot (6): KWSys 2016-06-30 (96f06c8e) KWSys 2016-10-23 (b630d2f5) KWSys 2016-11-03 (37306a1c) KWSys 2016-11-08 (2b3e2b1c) KWSys 2016-11-09 (18c65411) KWSys 2016-11-21 (cb55cf5a) Maeliss Jallais (1): BUG: Add unsigned and signed short to the wrapping of vnl_matrix Matthew McCormick (85): PERF: Simplify HilbertPath numberOfPathVertices computation. BUG: CID 1355469 NNetClassifierTest4 unintended integer division. BUG: Update Cuberille Remote for version check fix. ENH: Bump ITK version to 4.11.0. BUG: Fix HDF5ImageIO type information. BUG: Fix H5File memory leak in HDF5ImageIO. DOC: Collect Francois Budin's contributions in .mailmap BUG: Limit WRAP_ITK_MODULES when building externally STYLE: Improvements to ResourceProbe report output. ENH: Add a useTabs argument to ResourceProbe::Report. ENH: Add standard error measure to the ResourceProbe ENH: Add itk_python_add_test function. BUG: Remove VNL file from subtree merge. COMP: Fix wrapping with a space in the Python include path BUG: Fix PermuteAxesImageFilter pipeline method visibility BUG: Initialize PermuteOrder and FlipAxes in OrientImageFilter BUG: ResampleImageFilter honor isInside output of the transform method COMP: Avoid recursive include of itkMath.h COMP: Fix VXL header installation locations BUG: ClampImageFilterTest for older GCC, InPlaceOn DOC: Add CONTRIBUTING.md file to the top level. COMP: Update VariationalRegistration to address Doxygen warnings BUG: Compiler detections file installed into ITK build tree location COMP: Do not use string(TIMESTAMP. COMP: Remove HDF5 -std=c99 for C++ files BUG: Do not build HDF5 static library with a shared build ENH: Add PerformanceBenchmarking Remote Module COMP: Remove duplicate wrappings for ResampleImageFilter BUG: Put Python test output files in the build tree BUG: Improve HDF5ImageIO::CloseDataSet name COMP: Use add_python_test PythonLazyLoadingImage COMP: Address missing override it itkFactoryTestLib.cxx BUG: Index,Size,Offset constructors present in Python with C++11 COMP: Address missing override it itkFactoryTestLib.cxx BUG: PerformanceBenchmarking as EXCLUDE_FROM_DEFAULT ENH: Bump SetupForDevelopment version BUG: Add missing ZLib deflate support to HDF5 BUG: Address memory leak, remove NumPy build dep in BridgeNumPy COMP: Do not set ITK_LIBRARY_BUILD_TYPE in ITKTransformFactory COMP: Do not set ITK_LIBRARY_BUILD_TYPE in ITKTransformFactory BUG: Check when ITK_WRAP_VECTOR_COMPONENTS doesn't include ITK_WRAP_IMAGE_DIMS BUG: RichardsonLucyDeconvolutionImageFilter with non-null input Image Origin BUG: Fix inconsistent Twister start with Initialize(seed) and SetSeed(seed) BUG: Do not hard code CMake scripts in HDF5 COMP: Workaround Emscripten ITKCommon test build failure COMP: Do embed fancy HDF5 libsettings with Emscripten COMP: Add missing H5T_patch_vlen_file declaration ENH: Bump CastXML to 2016-10-11 master. COMP: Workaround Emscripten ITKCommon test build failure BUG: Swap CastXML hashes for Mac OSX and Windows ENH: Sync ExternalData.cmake with upstream CMake 3.6.2 COMP: Fix VNL tests when cross-compiling ENH: ExternalData multi-algorithm support ENH: ExternalData support for data.kitware.com BUG: Install missing H5pubconf.h BUG: Use SpacePrecisionType in TileImageFilter BUG: Use internal ExternalData_Add_Target ENH: Run .sha512, .md5 simultaneous modification pre-commit check BUG: Correct CastXML Windows binary BUG: Support non-zero Index in LevelSetNeighborhoodExtractor ENH: Add ArchiveTestingDataOnGirder.py BUG: Correct AtanRegularizationHeavisideStepFunction derivative ENH: Add Utilities/Maintenance/ContentLinkSynchronization.sh BUG: Remove extra HessianToObjectness content links ENH: Wrap SpatialFunction float types with ITK_WRAP_float BUG: Bump PerformanceBenchmarking to 2016-11-04 BUG: itk_python_expression_add_test too many quotes. ENH: Wrap VectorImage with complex real pixel types ENH: Bump PerformanceBenchmarking to 2016-11-07 BUG: Do not assume zero Index in ReinitializeLevelSetImageFilter ENH: Create itk_module_add_library macro BUG: Update computeCodeCoverageLocally.sh for KWStyle addition COMP: Install a newer version of CMake on CircleCI ENH: Use GitHub Pages as the first ExternalData resource ENH: Add tests to demonstrate OSX dynamic_cast failure BUG: Use random seed with for MersenneTwisterRandomVariateGenerator. BUG: Enable program global timestamp BUG: Set random number seed in Mattes metric test BUG: Notify builder that ITK_DYNAMIC_LOADING is required with wrapping BUG: Define ITK_DYNAMIC_LOADING before ITK_WRAP_PYTHON BUG: Set random number seed mutual information metric tests BUG: Wrap std::vector< itk.Point > BUG: Fix wrapping of LandmarkBasedTransformInitializer BUG: Rename UnsharpMaskingImageFilter to UnsharpMaskImageFilter DOC: Add D?enan Zuki? to .mailmap Max Smolens (4): COMP: CID-1266557 StatisticsLabelMapFilter uninitialized scalar field BUG: CID-1355438 QuadEdgeTest1 resource leaks COMP: CID-1355472 MIRegistrationFunction unused value COMP: Fix link errors for VNL template instantiations on Windows Mayeul Chassagnard (7): BUG: Test added and error fixed in HDF5ImageIO ENH: Update add_library TO itk_module_add_library COMP: Set Policy CMP0023 target_link_libraries for Modules/ThirdParty/VNLI... BUG: Add ITK_TEMPLATE_EXPORT to template classes BUG: Fix errors linked to dyn_cast merge BUG: Restore old ITKModule_TEMPLATE_EXPORT specification for classes BUG: dash3win7 dashboard build error unresolved external symbol Michka Popoff (3): ENH: Update UpdatepygccxmlFromUpstream.sh for v1.8.0 ENH: Update igenerator.py for pygccxml v1.8.0 COMP: Use pygccxml's public API for apply definitions Pierre Barbier de Reuille (2): COMP: Fix function naming error when using FFTWD COMP: Fix function naming error when using FFTWD Sean McBride (1): COMP: Bypass HDF5 bugs under TSan Simon Rit (2): COMP: remove C++11 compiler warning for CUDA compilations COMP: remove C++11 compiler warning for CUDA compilations Somesh Kashyap (2): BUG: Override TransformCategoryType for AzimuthElevationToCartesianTransform BUG: -Added test case for itkAzimuthElevationToCartesianTransform Sumedha Singla (1): ENH: Updated the git tag for ITK-Minimal-Path-Extraction remote module Taylor Braun-Jones (4): COMP: Skip path length checks if ITK_SKIP_PATH_LENGTH_CHECKS is enabled COMP: Fix truncation from double to float warning DOC: Fix incorrect itkFactorylessNewMacro documentation COMP: Only include the headers for required OpenCV modules Thien Nguyen (1): PERF: SmapsFileParser unnecessary dynamic_cast VXL Maintainers (4): VNL 2016-05-15 (14f97ab4) VNL 2016-06-22 (23a93adb) VNL 2016-06-29 (d62a2d70) VNL 2016-07-06 (acfa62cc) Vladimir S. FONOV (1): COMP: Build against GCC 5.3.1 Zach Williamson (2): ENH: Update Remote Module Tags BUG: Fix Python Wrappings in C++11 Ziv Yaniv (1): BUG: Metric sampling percentage accepted values outside (0.0, 1.0]. ITK Software Guide Changes ---------------------------------------- Matt McCormick (8): DOC: Move the location for obtaining the software DOC: Remove reference to ITKApps ENH: Bump ITK ExternalProject version to 2016-11-02 master DOC: Document the ITK module registry ENH: Bump ITK ExternalProject version to v4.11rc01 master DOC: Update CMake hyperlinks DOC: Update minimum required CMake version to 2.8.9 DOC: Add section on static and shared libraries. ITK Sphinx Examples Changes ------------------------------------------- Matt McCormick (6): BUG: Use GDCM ITK module name ENH: Rename ReadDICOMSeriesAndWrite3DImage BUG: Add tests for ReadDICOMSeriesAndWrite3DImage ENH: Bump ITK Superbuild version to 2016-09-20 master ENH: Add Python version of ReadDICOMSeriesAndWrite3DImage ENH: Add Python version of CreateAnRGBImage Michka Popoff (5): ENH: Use same Python interpreter as ITK for wrapping tests BUG: Fix ResampleAnImage example (Python3) ENH: Add Python example for ApplyAFilterOnlyToASpecifiedRegionOfAnImage ENH: Add 7 Python examples to Core/Common ENH: Add BoundingBoxOfAPointSet Python example ----------------------------------------------------- Errors or omissions? Please fix them here: https://docs.google.com/document/d/1UQAh7_mDjps0GZYX62biTwFrA54KRvf__4oeT0ymzZg/edit From taylor at braun-jones.org Thu Jan 19 12:18:56 2017 From: taylor at braun-jones.org (Taylor Braun-Jones) Date: Thu, 19 Jan 2017 12:18:56 -0500 Subject: [ITK-users] [ITK-dev] [ANN] ITK 4.11 Release Candidate 2 is ready for testing! In-Reply-To: References: Message-ID: Any chance the 4.11 release could have at least some preliminary support for VS2017? Right now it crashes the compiler: C:\src\itk\modules\core\common\include\itkPromoteType.h(97): fatal error C1001: An internal error has occurred in the compiler. (compiler file 'msc1.cpp', line 1469) To work around this problem, try simplifying or changing the program near the locations listed above. Please choose the Technical Support command on the Visual C++ Help menu, or open the Technical Support help file for more information Internal Compiler Error in C:\PROGRA~2\MIB055~1\2017\COMMUN~1\VC\Tools\MSVC\1410~1.247\bin\HostX64\x64\cl.exe. You will be prompted to send an error report to Microsoft later. INTERNAL COMPILER ERROR in 'C:\PROGRA~2\MIB055~1\2017\COMMUN~1\VC\Tools\MSVC\1410~1.247\bin\HostX64\x64\cl.exe' Please choose the Technical Support command on the Visual C++ Help menu, or open the Technical Support help file for more information Taylor On Mon, Jan 16, 2017 at 4:18 PM, Matt McCormick wrote: > On behalf of the Insight Toolkit community, we are proud to announce > that ITK 4.11 release candidate 2 has been tagged and is available for > testing! Please take this opportunity to test the new features in the > release candidate. > > > To obtain the source code, use the links: > > > https://github.com/Kitware/ITK/archive/v4.11rc02.zip > https://github.com/Kitware/ITK/archive/v4.11rc02.tar.gz > > or > > git clone https://itk.org/ITK.git > cd ITK > git checkout -q --detach v4.11rc02 > > For more details, please see the Git documentation [1]. > > > A few selected highlights for this release: > > - Remote Modules were added to: perturb mesh vertices with additive > gaussian noise, accurately benchmark computational performance, > perform principal components analysis of scalar, vector, and mesh > vertex data, create a run-length encoded memory compression scheme for > itk::Image, run N-D morphological contour interpolation, interpolate > multi-label images, iterate over multiple images simultaneously, and > compute inverse displacement fields. > - NumPy bridge support is now enabled by default with NumPy array > views of multi-component images and VNL vectors and matrices. > - Internal HDF5 was updated to the latest upstream version along > with a number of other third-party libraries. > > > This release introduces a new template class export specification > macro, ITK_TEMPLATE_EXPORT. The macro should be used with templated > classes to address failing dynamic_cast's and exception catching > across binaries on Mac OSX. > > Bugs were addressed and improvements were made to how the > pseudo-random number generator is used. Tests that rely on the random > number generator should explicitly set the global seed at start: > > itk::Statistics::MersenneTwisterRandomVariateGenerator::GetInstance()-> > SetSeed( > 121212 ); > > To improve randomness, new instances of the generator start from a > different seed; some minor differences in the output of algorithms > that uses the generator, like mutual information metrics, should be > expected. > > Additionally, output may change for registration with composite affine > transforms; the v4 registration framework now uses corner sampling as > opposed to random sampling to estimate their parameter scales. > > > Please test the release candidate and share your experiences on the > mailing list, issue tracker, and Gerrit Code Review. > > > An Experimental build, which demonstrates how the test suite performs > on your local build system, can be submitted to the dashboard [2] > with: > > mkdir ../ITK-build > cd ../ITK-build > cmake ../ITK > ctest -j 4 -M Experimental -T Configure -T Build -T Test -T Submit > > Visual Studio builds must also add ?-C Release? to the ctest command. > > Notify the mailing list if there are any unexpected failures. Testing > your own applications against the RC is also appreciated. > > > Congratulations to the 31 contributors to this release. We would > especially like to recognize the new contributors: Hastings Greer, > Gilles Filippini, Thien Nguyen, Caspar Goch, Mayeul Chassagnard, > Somesh Kashyap, Simon Rit, Pierre Barbier de Reuille, and Maeliss > Jallais. > > > The 4.11.0 final release is scheduled for January 23rd. > > > [1] http://www.itk.org/Wiki/ITK/Git > > [2] http://open.cdash.org/index.php?project=Insight > > > New Features > ------------ > > * Wrapping Improvements > - Python GetArrayFromImage() and GetImageFromArray() from > ITKBridgeNumPy are directly accessible from the Python itk namespace. > - The itk package loads much faster: individual modules are loaded > only when required. > - Conversion of ITK images from and to NumPy array using Bridge > NumPy supports RGB, RGBA, and Vector images. > - VNL vectors and VNL matrices can be converted from and to NumPy > objects with respectively the new couple of functions > GetArrayFromVnlVector()/GetVnlVectorFromArray() and > GetArrayFromVnlMatrix()/GetVnlMatrixFromArray() > - The global timestamp is used across all ITK Python modules when > built statically > - Wrap additional classes such as KernelFunctionBase > - itk_python_add_test CMake function added for Python script testing > in ITK modules > > * New Remote Modules > - DVMeshNoise > - Perturbing mesh vertices with additive gaussian noise > - http://hdl.handle.net/10380/3567 > - PerformanceBenchmarking > - Accurate benchmarking of computational performance > - http://hdl.handle.net/10380/3557 > - PrincipalComponentsAnalysis > - Principal components analysis of scalar, vector, and mesh vertex data > - http://hdl.handle.net/10380/3386 > - RLEImage > - Run-length encoded memory compression scheme for itk::Image > - http://hdl.handle.net/10380/3562 > - MorphologicalContourInterpolation > - N-D morphological contour interpolation > - http://hdl.handle.net/10380/3563 > - GenericLabelInterpolator > - A generic interpolator for multi-label images > - http://hdl.handle.net/10380/3506 > - MultipleImageIterator > - Iterate over multiple images simultaneously > - http://hdl.handle.net/10380/3455 > - FixedPointInverseDisplacementField > - Computes inverse displacement field > - http://hdl.handle.net/10380/3222 > > * Core Improvements > - New ITK_TEMPLATE_EXPORT for templated classes resolves > cross-binary dynamic_cast on Mac OSX > - New MersenneTwisterRandomVariateGenerator instances are > initialized with different seeds > - Use compiler feature detection in CMake for C++11 features, etc. > - New CMake macro itk_module_add_library for creating libraries in ITK > modules > - Improved support for ccache and distcc with > CMAKE__COMPILER_LAUNCHER (CMake >=3.4 required) > - Support for .sha512 ExternalData content links > - GitHub Pages and data.kitware.com ExternalData repositories added > - GPGPU system support for C++11 > - Support of new compilers: Visual Studio 15 and XCode 8.2.1 > (clang-800.0.42.1) > > * Filtering Improvements > - HessianToObjectnessMeasure moved out of the ITKReview module > - New UnsharpMaskImageFilter for image edge enhancement > > * IO Improvements > - TransformFactory class has been moved to a separate module > - Spline order added to BSplineTransform identifier > - Improved NIFTI orientation support > > * Documentation Improvements > - Updates to the Software Guide, Doxygen, Wiki and Sphinx Examples > > * Third Party Library Updates > - pygccxml updated to v1.8.0 > - VNL updated to latest upstream (2016.07.06) > - SWIG updated to v3.0.11 > - KWSys updated to latest upstream (2016.11.21) > - HDF5 updated to v1.8.17 > - SCIFIO updated to latest upstream (2016.12.01) > - DCMTK updated to 3.6.1_20121012 > - CastXML to latest upstream (2016.01.28) > > * Improved Code Coverage -- we are at 85.44%! > - Jon Haitz-Legarreta's extensive code coverage improvements > - https://blog.kitware.com/why-should-we-spend-time-writing-tests/ > > * *Lots* of important bug fixes > > * And much more! See details in the log below. > > > Changes from v4.11rc01 to v4.11rc02 > ----------------------------------- > > Bradley Lowekamp (5): > BUG: Remove unused SimpleImageRegistrationTest baselines > ENH: Expose GetNextSeed method in MersenneTwiseter Generator > BUG: Add option for fixed seed or wall clock seed for sampling > BUG: Use metric random seed in v3 examples > BUG: Prefer setting seed at algorithm in "v4" tests. > > Francois Budin (3): > ENH: Update BridgeNumPy to latest version on 2017.01.08 to address > ITK-3511 > BUG: Extra \$ in doxygen comment > BUG: Binary include directory added only if enabled shared > > Jon Haitz Legarreta (2): > DOC: Document itkLabelOverlapMeasuresImageFilter methods. > DOC: Fix ITKImageNoise filters' doc TeX errors. > > Matthew McCormick (1): > BUG: Remove invalid ImageRegistration4Test.png.sha512 > > Max Smolens (1): > DOC: Fix itkUnsharpMaskImageFilter documentation typos > > Simon Rit (1): > BUG: ITK-based software was crasing when thread creation failed > > > Changes from v4.10.0 to v4.11rc01 > --------------------------------- > > Bill Lorensen (4): > COMP: Restore support for clang 3.0 compiler > COMP: Consistent use of ModifiedTimeType > ENH: Bump WikiExamples remote module version > ENH: Bump WikiExamples version > > Bradley Lowekamp (57): > ENH: Add registered TrasformIO's to exception > ENH: Use template or constant for loop stop condition > ENH: Updating SWIG version to 3.0.9 > COMP: Address VS9 ambiguous std::abs call in Haung calculator > COMP: Fix undefined NumericTraits::Zero and One errors with mingw64 > BUG: Fix segfault if ~CleanUpObjectFactory called multiple times > BUG: Address itkHDF5ImageIO test failures for mingw64 > BUG: demonstrate dynamic_cast failure when reading transforms > BUG: Address itkHDF5ImageIO test failures for mingw64 > ENH: Updating SWIG version to 3.0.10 > ENH: Enable CMP0063 New behavior > COMP: Enable hidden visibility property with vxl static libraries > COMP: Enable hidden visibility property with HDF5 static libraries > COMP: Enable hidden visibility property with HDF5 static libraries > BUG: Match Add2 function to AddImageFilter documentation > ENH: Improve support for std::complex with PowImageFilter > ENH: Explicitly mark required files for dependent tests > COMP: Bypass XCode 7.3,8 internal compilation error > COMP: Address CMake configuration error with itkJPEG2000Test03 > property > BUG: Correct test's REQUIRED_FILES to only the input. > ENH: move HessianToObjectnessMeasure filter out of Review > ENH: Separate TransformFactory class into separate module > DOC: Add links between similar label to rgb filters > ENH: Separate data from function calls > COMP: Fix changed Graft method > ENH: Reduce template dependencies on CalculateRotationMatrix > ENH: Add Functor Accessors to LabelMapToRGB filter > BUG: Enable VirtualDomain and FixedTransform in RegMethv4 > BUG: Use BSpline Order 3 for 2D in transform factory. > ENH: Add spline order to BSplineTransform's string id > ENH: Adding initial CircleCi configuration file > COMP: Fix float to unsigned integer conversion warnings > BUG: Include installed modules in ITK_MODULES_ENABLED > COMP: Address CMake error that ITKGPUCommon is not in export > COMP: Address wrong library types with VS and shared libraries > BUG: Ensure CreateImageIO is concurrent thread safe > ENH: Mark HDF5 CMake options as internal > COMP: Add template export declaration for ParametricPath > COMP: Correct TEMPLATE_EXPLICIT definition in Path module > ENH: Factor out common code in the TrasformFactoryBase registration > ENH: Add CMake variable for max transform dimension, defaults 4 > ENH: Create CMake module to check for private RTTI compatibility > ENH: Improving setting of default ITK_TEMPATE_VISIBILITY_DEFAULT > COMP: Correct ifndef value to allow user defined ITK_TEMPLATE_EXPORT > BUG: Add explicit instantiate for ObjectToObjectOptimizerBase > COMP: Use add_definitions for CMake 2.8.9 compatibility > COMP: Add warning suppression for distcc warning > ENH: Explicitly instantiate the optimizer base over float > BUG: Use IsLinear to check if transform is "affine" > ENH: Remove unneeded includes of random iterator header > ENH: Improve thread-safety for Generator, and unique New sequence > ENH: Do not use global random generator > BUG: Update v3 registration metrics to use local seed > ENH: Prefer setting local seed over global in tests. > ENH: Update SWIG to latest 3.0.11 release > BUG: relax testing parameters for v3 translation registration > BUG: Restore baseline for debug registration > > Caspar Goch (2): > BUG: Use printable type for RGBA pixel ostream for ITK-3501 > STYLE: Remove extra space for ITK-3501 > > Christina Rossmanith (1): > DOC: Added more details to the class Doxygen documentation. > > Davis Vigneault (2): > COMP: VCL_DEFINE_SPECIALIZATION not defined > ENH: Add remote module DVMeshNoise > > D?enan Zuki? (27): > BUG: Fixing CID-1355433 (IDENTICAL_BRANCHES) > ENH: Adding MultipleImageIterator as a remote module > COMP: enables TBB 4.4 back-end for VTK7's SMP > COMP: enabling position independent code flag for FFTW > ENH: adding configuration file for code reformatting tool clang-format > ENH: Updating hooks to work with Windows/TortoiseGit/KDiff3 > COMP: Fixing -fPIC flag passing with Ninja build system > ENH: Adding RLEImage as a remote module > ENH: Updating uncrustify configuration to current git version > STYLE: better compliance with ITK style > STYLE: A new option in uncrustify, updating the config file > accordingly > ENH: Adding MorphologicalContourInterpolation as a remote module > ENH: improving documentation > BUG: fixing buffer growing endlessly, as reported by Timothee Evain > BUG: fixing buffer growing endlessly, as reported by Timothee Evain > STYLE: default uncrustify configuration file is less aggressive > COMP: Fixing warning > COMP: VS15 compiler fix > BUG: casting -9 to unsigned produced unwanted result > BUG: Ensuring consistency between debug and release > COMP: Updating LesionSizingToolkit after some recent compile fixes > COMP: respect option METAIO_USE_NAMESPACE > ENH: updating version of AnisotropicDiffusionLBR > ENH: adding UnsharpMaskingImageFilter > COMP: explicitly cast to output type > BUG: double call to update would cause empty output image > ENH: Updating RLEImage remote module. Change-log: > > Eugene Prilepin (4): > ENH: Add the "ITK_USE_GPU" to ITK Config > BUG: Fix API for set/get "LaplacianImageFilter" object > ENH: Add support of images types with the 'CovariantVector' pixel type > ENH: Add python test for the 'GradientVectorFlowImageFilter' wrap > > Francois Budin (52): > ENH: Adding GetArrayFromImage in python itk namespace > ENH: Adding GetImageFromArray in python itk namespace > ENH: *_WRAP_* variable per external module > BUG: ImportImageFilter not responsible of memory management > ENH: New remote module GenericLabelInterpolator > DOC: SetNumberOfOutputs had wrong comment > BUG: lazyAttributes dictionary keys could be over-ridden > BUG: lazyAttributes dictionary keys could be over-ridden > BUG: Fix recent update of HDF5 (1.8.17) > ENH: Update SCIFIO to latest version on 08/23/2016 > ENH: Addition of the remote module FixedPointInverseDisplacementField > ENH: Update SCIFIO to latest version on 08/29/2016 > BUG: Path to commit was relative instead of absolute > ENH: Path to SetupForDevelopment is relative, not absolute > BUG: LSMImageIO write function was not checking image dimension > BUG: LSMImageIO was not checking correctly image dimension > BUG: Missing associated test data > BUG: Missing associated test data > ENH: Bump CMakeLists.txt version to 4.10.1. > BUG: Quotes are not escaped in configured cmake file > ENH: Improving API of Graft() in itk::Image > ENH: Updating ITKGenericLabelInterpolator remote module > ENH: Update ITKIOTransformDCMTK remote module > BUG: Factory registration should depend on ITK_BUILD_SHARED > COMP: Updating DCMTK compilation for Ninja > ENH: Update version of DCMTK to 3.6.1_20121012 > ENH: Update SCIFIO to latest version on 10/25/2016 > BUG: Swig and PCRE do not support space in installation paths > BUG: exit() call from within piped commands was not exiting the script > BUG: Typo in folder creation command > ENH: Only display message for transform registered multiple times in > debug > ENH: Image spacing must be positive > BUG: Supported extensions by PNG IO were not added in constructor. > DOC: Documentation in itkRBGAPixel and itkRGBPixel was incorrect. > ENH: Update SCIFIO to lastest (2016.12.01) > ENH: FixedPointInverseDisplacementField moved to > InsightSoftwareConsortium > COMP: Remove compilation warnings > ENH: Improved support of ccache and distcc > BUG: GPUImage regression due to API change. > ENH: Update Bridge Numpy (2016.12.05) > ENH: Update VariationalRegistration to remove warnings during > compilation > ENH: FindPythonLibs does not support both debug and release > python libraries > ENH: Update VariationalRegistration > BUG: Missing ITK_TEMPLATE_EXPORT in forward declaration of > itk::ImageBase > BUG: Missing ITK_TEMPLATE_EXPORT in itkOptimizerParametersHelper > BUG: Missing ITK_TEMPLATE_EXPORT in templated class > BUG: Remove linkage warnings on MacOS > BUG: HDF5 CMake installation directory variable had not been updated > BUG: Missing include header in AnisotropicDiffusionBLR remote > module hxx files > COMP: Silencing unused variable warning in itkTimeStamp > STYLE: Improve style checking by using module ITKKWStyleOverwrite.txt > COMP: OS*Barrier functions are deprecated on MacOS 10.12 > > GCC-XML Upstream (1): > ENH: pygccxml v1.8.0 (reduced) > > Gert Wollny (1): > BUG: Relax vnl_complex floating point comparisons for i386 > > Gilles Filippini (1): > BUG: Use NATIVE_HBOOL for encoding HDF5 types. > > HDF Group (1): > ENH: hdf5 1.8.17-r30218 (reduced) > > Hans Johnson (23): > COMP: Use cmake WriteCompilerDetectionHeader > ENH: Use itk_compiler_detection versions > COMP: Need ITK_NOEXCEPT_OR_THROW macro. > COMP: Provide consistent granular C++11 support > STYLE: Use granular ITK_COMPILER_CXX_STATIC_ASSERT > STYLE: Prefer to use consistent definitions > COMP: Improve robustness of identifying the compiler standard used > BUG: try_compile for AlignAs were always failing > STYLE: Provide a well documented macro for repeated code > STYLE: Delete functions in consistent way > COMP: GPU baseclass ivars need to be protected > COMP: Remove unnecessary circular dependancy > COMP: Add long long usage for HDF5 > COMP: Add long long usage for HDF5 > STYLE: Prefer static small array to dynamic array > BUG: Confusing interface for FFTW wisdom files > STYLE: Output dimension from OutputImageType > STYLE: Code review style cleanups > STYLE: Prefer to use ITK AssertOrThrow macros > ENH: Add OverrideBoundaryCondition logic > ENH: Provide mechanism for enhanced NIFTI support > BUG: Use NIFTI sform/qform conventions correctly > ENH: Remove ambiguity about sform/qform > > Hastings Greer (8): > BUG: ITK-3448 Wrap itkQuadEdgeCellTraitsInfo more specifically > BUG: make itkTriangleHelper instantiable to ease wrapping > BUG: remove lsqr because of license issues ITK 1160 > BUG: make itkTriangleHelper instantiable to ease wrapping > BUG: initialize X to zero in lsmr Solve > BUG: Labled Point Set Registration: test multiple labels > BUG: Fix python wrapping of Cuberille remote module > BUG: Add test demonstrating Python global timestamp issue > > Jean-Christophe Fillion-Robin (5): > STYLE: UseITK: Set ImageIO exceptions using new convention. See #3393 > STYLE: MeshIO: Moves virtual destructor into cpp files. See #3393 > STYLE: Update MeshIO factories to use RegisterFactoryInternal. See > #3393 > STYLE: MeshIO: Move MeshFileWriterException into its own file. See > #3393 > STYLE: MeshIO: Remove unused include from headers. See #3393 > > Johan Andruejol (3): > ENH: Add missing itkKernelFunctionBase wrapping > ENH: Add PrincipalComponentsAnalysis remote module > COMP: Override cannot be used with inline > > Jon Haitz Legarreta (216): > ENH: Improve itkFlatStructutingElement coverage. > ENH: Improve itkPathToImageFilter class coverage. > ENH: Improve itkIsolatedWatershedImageFilter coverage. > ENH: Improve itkLogSigmoidTransferFunction coverage. > STYLE: Improve itkBSplineTransform doc style. > ENH: Improve GaborKernelFunctionCoverage. > PERF: Remove duplicate itkMath include > STYLE: Move the PrintSelf method to the end > STYLE: Improve the itkScalarToRGBColormapImageFilter style. > STYLE: Delete duplicate method documentation > STYLE: Remove method documentation from implementation file > STYLE: Improve GACLevelSet classes' style > STYLE: Improve test style > ENH: Improve itkGaussianDerivativeImageFilter coverage. > ENH: Improve the itkScalarToRGBColormapImageFilter coverage > STYLE: Improve itkScalarToRGBColormap test style > ENH: Improve GACLSImageFilter classes' coverage > STYLE: Improve comment style in GACLS tests > ENH: Improve itkImportImageFilter coverage > ENH: Improve itkVideoFileReader coverage > ENH: Improve itkVideoFileWriter coverage > STYLE: Improve the itkVideoFileWriter style. > STYLE: Imrpove itkVideoFileReader style. > ENH: Improve the itkBSplineControlPointImageFunction coverage > STYLE: Improve the itkIntensityWindowingImageFilter style > STYLE: Improve the itkIntensityWindowingImageFilter test style > ENH: Improve ImageToSpatialObjectRegistrationMethod coverage > STYLE: Improve test style > ENH: Improve MaskNeighborhoodOperatorImageFilter coverage > ENH: Improve itkMeshFileWriter coverage > ENH: Improve RescaleIntensityImageFilter coverage. > ENH: Improve itkClampImageFilter coverage. > BUG: Fix ivar type casting in PrintSelf. > STYLE: Improve MRIBiasFieldCorrectionFilter style. > ENH: Improve MRIBiasFieldCorrectionFilter coverage. > ENH: Improve itkIntensityWindowingImageFilter coverage > BUG: Fix Run-time type information in CSV module classes. > ENH: Improve the itkHistogram class code coverage. > DOC: Fix documentation typo. > STYLE: Improve the ImproveRescaleIntensityImageFilter style. > PERF: Make the itkVideoFileReader ivars private > PERF: Make itkVideoFileWriter ivars private > ENH: Improve coverage for itk::OrientImageFilter. > STYLE: Improve itk::OrientImageFilter class style. > ENH: Improve itkCSVNumericObjectFileWriter coverage. > ENH: Add missing standard class typdefs. > ENH: Improve itkVoronoiSegmentationImageFilter coverage. > ENH: Improve itkVoronoiSegmentationImageFilter style. > STYLE: Improve the MalahanobisDistanceThresholdImageFunction style. > ENH: Improve coverage for itkMalahanobisDistanceThreshold. > ENH: Improve itk::MinimumMaximumImageCalculator coverage. > ENH: Improve itkMinimumMaximumImageCalculator style. > BUG: Fix type mismatch in test. > STYLE: Improve itkPolylineMaskImagefilter style. > ENH: Improve itkPolylineMaskImageFilter coverage. > ENH: Improve itkFileListVideoStyle. > ENH: Improve itkLandmarkBasedTransformInitializer coverage. > ENH: Add baseline image to itkPolylineMaskImageFilter test. > ENH: Improve coverage for itkBSplineTransformInitializer. > STYLE: Improve itkBSplineTransformInitializer doc style. > ENH: Enhance itkBSplineTransformInitializer implementation. > DOC: Fix typo in method documentation. > ENH: Improve the itkRegularStepGradientDescentOptimizerv4 style. > STYLE: Improve the itkSimpleContourExtractorImageFilter style. > ENH: Exercise the class' Get methods. > ENH: Improve coverage for itkStatisticsOpeningLabelMapFilter. > ENH: Improve style for itkThresholdLabelerImageFilter. > ENH: Improve itkThresholdLabelerImageFilter coverage. > ENH: Get internal ImageIO via a const macro. > ENH: Improve the itkSimpleContourExtractorImageFilter coverage. > STYLE: Improve the itkMetaArray class style. > ENH: Improve MetaArrayReader/Writer coverages. > ENH: Improve the itkCovarianceImageFunction style. > STYLE: Improve itkVoronoiDiagram2DGenerator style. > ENH: Improve VoronoiDiagram2DGenerator coverage. > STYLE: Improve the itkBayesianClassifierImageFilter style. > STYLE: Improve the itkMetaArrayWriter style. > ENH: Improve itkCovarianteImageFunction coverage. > COMP: Fix signed/unsigned int comparison warning. > DOC: Improve itkGrayscaleDilateImageFilter documentation. > DOC: Improve documentation for itkGrayscaleErodeImageFilter. > DOC: Improve ConfigureHistogram method documentation. > STYLE: Improve the itkMovingHistogramMorphologyImagefilter style. > BUG: Fix Superclass name in RTTI. > STYLE: Improve itkGaussianInterpolateImageFunction style. > ENH: Improve coverage for itkGaussianInterpolateImageFunction. > ENH: Improve itkBayesianClassifierImageFilter coverage. > ENH: Add itkBSplineControlPointImageFilter RTTI. > STYLE: Improve itkBSplinecontrolPointImageFilter style. > ENH: Improve itkBSplineControlPointImageFilter coverage. > ENH: Improve coverage for itkRegularStepGradientDescentOptimizerv4. > STYLE: Improve the class implementation file style. > STYLE: Improve the itkResampleImageFilter style. > DOC: Fix typo in GetMTime method doc. > STYLE: Remove out-of-body implementation doc > ENH: Improve itkResampleImageFilter coverage. > ENH: Improve itkAbsImageAdaptor and Filter coverage. > BUG: Fix itkLSMImageIO class' Superclass name. > ENH: Improve the itkInterpolateImagePointsFilter coverage. > ENH: Improve itkPowImageFilter coverage. > BUG: Fix ConvolutionImageFilter RTTI. > STYLE: Use initialization lists. > STYLE: Improve BinaryFunctorImageFilter style. > ENH: Improve itkMinimumImageFilter code coverage. > BUG: Fix Linux-x86_64-gcc4.1 warning on implicit conversion. > ENH: Improve MaximumImageFilter coverage. > BUG: Fix conversion to PixelType conversion. > COMP: Fix double to unsigned char conversion warning. > ENH: Improve coverage for itkNormalizeToConstantImageFilter. > BUG: Fix itkSquaredDifferenceErrorFunction RTTI. > ENH: Improve itkMeanImageFunctionCoverage. > ENH: Improve itkSquareImageFilter coverage. > STYLE: Improve the itkSquaredDifferenceErrorFunction style. > STYLE: Enhance style for itkNormalizeToConstantImageFilter. > STYLE: Improve itkMeanImageFunction style. > ENH: Remove unnecesary call to filter print. > ENH: Improve itkRegionOfInterestImageFilter coverage. > STYLE: Improve itkRegionOfInterestImageFilter style. > STYLE: Improve itkPasteImageFilter style. > STYLE: Improve itkJoinSeriesImageFilter style. > BUG: Fix itkPadLabelMapFilter RTTI Superclass. > COMP: Address std::cout.precision conversion warning. > ENH: Improve itkBayesianClassifiertImageFilter coverage. > ENH: Improve itkPadLabelMapFilter coverage. > ENH: Improve itkJoinSeriesImageFilter coverage. > ENH: Improve the itkPasteImageFilter coverage. > ENH: Improve MeanImageFilter coverage. > COMP: Address std::cout.precision conversion warning. > ENH: Improve TernaryMagnitudeImageFilter coverage. > ENH: Improve FFTConvolutionImageFilter coverage. > DOC: Fix class documentation in ternary magnitude filters. > ENH: Improve ConstrainedValueDifferenceImageFilter coverage. > ENH: Improve AndImageFilter coverage. > ENH: Add baseline test to itkTernaryMagnitudeImageFilter. > ENH: Use MD5 comparison framework in baseline test. > ENH: Improve itk::VectorRescaleIntensityImageFilter coverage. > STYLE: Improve the itkVectorRescaleIntensityImageFilter style. > ENH: Print missing ivar in filter PrintSelf method. > ENH: Improve itkComplexToImaginaryFilter coverage. > ENH: Improve itkComplexToPhaseImageFilter coverage. > ENH: Improve itkComplexToModulusImageFilter coverage. > ENH: Improve itkComplexToRealImageFilter coverage. > ENH: Improve itkVectorResampleImageFilter coverage. > ENH: Add GetTransform method. > ENH: Improve itkConstrainedValueAdditionImageFilter coverage. > ENH: Improve itkModulusImageFilter coverage. > ENH: Improve itkLog10ImageFilter coverage. > ENH: Imporve itkMagnitudeAndPhaseToComplexImageFilter coverage. > ENH: Improve itkLogImageFilter coverage. > ENH: Improve itkInvertIntensityImageFilter coverage. > STYLE: Improve itkInvertIntensityImageFilter style. > DOC: Add missing doc to itkInvertIntensityImageFilter. > STYLE: Improve itkIntensityWindowingImageFilter style. > STYLE: Use initialization lists. > ENH: Improve itkIntensityWindowingImageFilter coverage. > ENH: Improve itkNaryMaximumImageFilter coverage. > COMP: Fix std::precision type casting warning. > ENH: Improve itkPointSetToPointSetRegistrationMethod coverage. > STYLE: Improve the itkPointSetToPointSetImageRegistrationMethod > style. > ENH: Remove SmartPointers being explicitly initialized to null. > STYLE: Improve the itkPointSetToImageRegistrationMethod style. > ENH: Improve itkPointSetToImageRegistration coverage. > STYLE: Change the name of the itkPointSetToImageRegistrationMethod > test. > STYLE: Improve itkVectorResampleImageFilter style. > STYLE: Improve the itkAntiAliasBinaryImageFilter style. > ENH: Improve trigonometric function filters' coverage. > STYLE: Remove test names from std::out messages. > ENH: Improve Boolean Algebra ImageFilters coverage. > STYLE: Improve the EuclideanDistancePointMetric style. > ENH: Improve itkSigmoidImageFilter coverage. > STYLE: Improve itkCropImageFilter style. > ENH: Improve itkCropImageFilter coverage. > ENH: Improve RGBToLuminanceImageFilter and Adaptor coverage. > ENH: Improve itkRescaleIntensityImageFilter coverage. > ENH: Improve the itkMatrixSelectionImageFilter coverage. > ENH: Improve itkTanImageFilter and Adaptor coverage. > ENH: Increase itkSqrtImageFilter and Adaptor coverage. > ENH: Increase itkTernaryOperatorImageFilter coverage. > ENH: Increase itkSymmetricEigenAnalysisImageFilter coverage. > STYLE: Improve itkScalarImagekmeansImageFilter style. > STYLE: Conform to TEST_SET_GET_VALUE definition. > BUG: Fix uninitialized variable due to dynamic analysis defect. > BUG: Fix uninitialized variable defect reported by valgrind. > ENH: Improve the itkPointSetToPointSetRegistrationTest. > ENH: Improve the itkPointSetToImageRegistrationTest. > ENH: Increas BinaryMagnitudeImageFilter coverage. > STYLE: Remove test name from std output. > ENH: Increase MagnitudeImageFilter coverage. > BUG: Fix uninitialized variable defect reported by valgrind. > BUG: Fix Superclass name in RTTI. > STYLE: Improve itkFrustumSpatialFunction style. > STYLE: Improve the itkConicShellInteriorExteriorSpatialFunction > style. > BUG: Fix Superclass template argument list. > STYLE: Improve the itkTorusInteriorExteriorSpatialFunction style. > STYLE: Improve the itkCheckerBoardImageFilter class style. > ENH: Improve the itk::LabelVotingImageFilter coverage. > ENH: Improve itkCheckerBoardImageFilter coverage. > STYLE: Improve itk::LabelVotingImageFilter style. > STYLE: Improve the itkHoughTransform2DCirclesImageFilter style. > ENH: Add test for itk::FrustumSpatialFunction class. > ENH: Improve itkConnectedThresholdImageFilter coverage. > STYLE: Improve itkConnectedThresholdImageFilter style. > BUG: Fix FrustumSpatialFunction internal precision conversion. > COMP: Fix implicit conversion warning. > STYLE: Improve itkThresholdImageFilter style. > ENH: Add test for itk::TorusInteriorExteriorSpatialFunction. > BUG: Fix Superclass template argument list. > ENH: Improve itkUnsharpMaskingImageFilter implementation. > ENH: Improve the itkUnsharpMaskingImageFilter coverage. > ENH: Fix UnsharpMaskingImageFilter test inconsistencies. > BUG: Add missing itkTypeMacro. > DOC: Document the member variables. > BUG: Fix the itkImageSource RTTI class name, > STYLE: Improve itkLabelImageGaussianInterpolateImageFunction style. > ENH: Finish itkGaussianInterpolateImageFunction PrintSelf. > STYLE: Improve itkLabelOverlapMeasurementImageFilter style. > > KWSys Robot (6): > KWSys 2016-06-30 (96f06c8e) > KWSys 2016-10-23 (b630d2f5) > KWSys 2016-11-03 (37306a1c) > KWSys 2016-11-08 (2b3e2b1c) > KWSys 2016-11-09 (18c65411) > KWSys 2016-11-21 (cb55cf5a) > > Maeliss Jallais (1): > BUG: Add unsigned and signed short to the wrapping of vnl_matrix > > Matthew McCormick (85): > PERF: Simplify HilbertPath numberOfPathVertices computation. > BUG: CID 1355469 NNetClassifierTest4 unintended integer division. > BUG: Update Cuberille Remote for version check fix. > ENH: Bump ITK version to 4.11.0. > BUG: Fix HDF5ImageIO type information. > BUG: Fix H5File memory leak in HDF5ImageIO. > DOC: Collect Francois Budin's contributions in .mailmap > BUG: Limit WRAP_ITK_MODULES when building externally > STYLE: Improvements to ResourceProbe report output. > ENH: Add a useTabs argument to ResourceProbe::Report. > ENH: Add standard error measure to the ResourceProbe > ENH: Add itk_python_add_test function. > BUG: Remove VNL file from subtree merge. > COMP: Fix wrapping with a space in the Python include path > BUG: Fix PermuteAxesImageFilter pipeline method visibility > BUG: Initialize PermuteOrder and FlipAxes in OrientImageFilter > BUG: ResampleImageFilter honor isInside output of the transform method > COMP: Avoid recursive include of itkMath.h > COMP: Fix VXL header installation locations > BUG: ClampImageFilterTest for older GCC, InPlaceOn > DOC: Add CONTRIBUTING.md file to the top level. > COMP: Update VariationalRegistration to address Doxygen warnings > BUG: Compiler detections file installed into ITK build tree location > COMP: Do not use string(TIMESTAMP. > COMP: Remove HDF5 -std=c99 for C++ files > BUG: Do not build HDF5 static library with a shared build > ENH: Add PerformanceBenchmarking Remote Module > COMP: Remove duplicate wrappings for ResampleImageFilter > BUG: Put Python test output files in the build tree > BUG: Improve HDF5ImageIO::CloseDataSet name > COMP: Use add_python_test PythonLazyLoadingImage > COMP: Address missing override it itkFactoryTestLib.cxx > BUG: Index,Size,Offset constructors present in Python with C++11 > COMP: Address missing override it itkFactoryTestLib.cxx > BUG: PerformanceBenchmarking as EXCLUDE_FROM_DEFAULT > ENH: Bump SetupForDevelopment version > BUG: Add missing ZLib deflate support to HDF5 > BUG: Address memory leak, remove NumPy build dep in BridgeNumPy > COMP: Do not set ITK_LIBRARY_BUILD_TYPE in ITKTransformFactory > COMP: Do not set ITK_LIBRARY_BUILD_TYPE in ITKTransformFactory > BUG: Check when ITK_WRAP_VECTOR_COMPONENTS doesn't include > ITK_WRAP_IMAGE_DIMS > BUG: RichardsonLucyDeconvolutionImageFilter with non-null input > Image Origin > BUG: Fix inconsistent Twister start with Initialize(seed) and > SetSeed(seed) > BUG: Do not hard code CMake scripts in HDF5 > COMP: Workaround Emscripten ITKCommon test build failure > COMP: Do embed fancy HDF5 libsettings with Emscripten > COMP: Add missing H5T_patch_vlen_file declaration > ENH: Bump CastXML to 2016-10-11 master. > COMP: Workaround Emscripten ITKCommon test build failure > BUG: Swap CastXML hashes for Mac OSX and Windows > ENH: Sync ExternalData.cmake with upstream CMake 3.6.2 > COMP: Fix VNL tests when cross-compiling > ENH: ExternalData multi-algorithm support > ENH: ExternalData support for data.kitware.com > BUG: Install missing H5pubconf.h > BUG: Use SpacePrecisionType in TileImageFilter > BUG: Use internal ExternalData_Add_Target > ENH: Run .sha512, .md5 simultaneous modification pre-commit check > BUG: Correct CastXML Windows binary > BUG: Support non-zero Index in LevelSetNeighborhoodExtractor > ENH: Add ArchiveTestingDataOnGirder.py > BUG: Correct AtanRegularizationHeavisideStepFunction derivative > ENH: Add Utilities/Maintenance/ContentLinkSynchronization.sh > BUG: Remove extra HessianToObjectness content links > ENH: Wrap SpatialFunction float types with ITK_WRAP_float > BUG: Bump PerformanceBenchmarking to 2016-11-04 > BUG: itk_python_expression_add_test too many quotes. > ENH: Wrap VectorImage with complex real pixel types > ENH: Bump PerformanceBenchmarking to 2016-11-07 > BUG: Do not assume zero Index in ReinitializeLevelSetImageFilter > ENH: Create itk_module_add_library macro > BUG: Update computeCodeCoverageLocally.sh for KWStyle addition > COMP: Install a newer version of CMake on CircleCI > ENH: Use GitHub Pages as the first ExternalData resource > ENH: Add tests to demonstrate OSX dynamic_cast failure > BUG: Use random seed with for MersenneTwisterRandomVariateGenerator. > BUG: Enable program global timestamp > BUG: Set random number seed in Mattes metric test > BUG: Notify builder that ITK_DYNAMIC_LOADING is required with wrapping > BUG: Define ITK_DYNAMIC_LOADING before ITK_WRAP_PYTHON > BUG: Set random number seed mutual information metric tests > BUG: Wrap std::vector< itk.Point > > BUG: Fix wrapping of LandmarkBasedTransformInitializer > BUG: Rename UnsharpMaskingImageFilter to UnsharpMaskImageFilter > DOC: Add D?enan Zuki? to .mailmap > > Max Smolens (4): > COMP: CID-1266557 StatisticsLabelMapFilter uninitialized scalar field > BUG: CID-1355438 QuadEdgeTest1 resource leaks > COMP: CID-1355472 MIRegistrationFunction unused value > COMP: Fix link errors for VNL template instantiations on Windows > > Mayeul Chassagnard (7): > BUG: Test added and error fixed in HDF5ImageIO > ENH: Update add_library TO itk_module_add_library > COMP: Set Policy CMP0023 target_link_libraries for > Modules/ThirdParty/VNLI... > BUG: Add ITK_TEMPLATE_EXPORT to template classes > BUG: Fix errors linked to dyn_cast merge > BUG: Restore old ITKModule_TEMPLATE_EXPORT specification for classes > BUG: dash3win7 dashboard build error unresolved external symbol > > Michka Popoff (3): > ENH: Update UpdatepygccxmlFromUpstream.sh for v1.8.0 > ENH: Update igenerator.py for pygccxml v1.8.0 > COMP: Use pygccxml's public API for apply definitions > > Pierre Barbier de Reuille (2): > COMP: Fix function naming error when using FFTWD > COMP: Fix function naming error when using FFTWD > > Sean McBride (1): > COMP: Bypass HDF5 bugs under TSan > > Simon Rit (2): > COMP: remove C++11 compiler warning for CUDA compilations > COMP: remove C++11 compiler warning for CUDA compilations > > Somesh Kashyap (2): > BUG: Override TransformCategoryType for > AzimuthElevationToCartesianTransform > BUG: -Added test case for itkAzimuthElevationToCartesianTransform > > Sumedha Singla (1): > ENH: Updated the git tag for ITK-Minimal-Path-Extraction remote module > > Taylor Braun-Jones (4): > COMP: Skip path length checks if ITK_SKIP_PATH_LENGTH_CHECKS is > enabled > COMP: Fix truncation from double to float warning > DOC: Fix incorrect itkFactorylessNewMacro documentation > COMP: Only include the headers for required OpenCV modules > > Thien Nguyen (1): > PERF: SmapsFileParser unnecessary dynamic_cast > > VXL Maintainers (4): > VNL 2016-05-15 (14f97ab4) > VNL 2016-06-22 (23a93adb) > VNL 2016-06-29 (d62a2d70) > VNL 2016-07-06 (acfa62cc) > > Vladimir S. FONOV (1): > COMP: Build against GCC 5.3.1 > > Zach Williamson (2): > ENH: Update Remote Module Tags > BUG: Fix Python Wrappings in C++11 > > Ziv Yaniv (1): > BUG: Metric sampling percentage accepted values outside (0.0, 1.0]. > > > ITK Software Guide Changes > ---------------------------------------- > > Matt McCormick (8): > DOC: Move the location for obtaining the software > DOC: Remove reference to ITKApps > ENH: Bump ITK ExternalProject version to 2016-11-02 master > DOC: Document the ITK module registry > ENH: Bump ITK ExternalProject version to v4.11rc01 master > DOC: Update CMake hyperlinks > DOC: Update minimum required CMake version to 2.8.9 > DOC: Add section on static and shared libraries. > > > ITK Sphinx Examples Changes > ------------------------------------------- > > Matt McCormick (6): > BUG: Use GDCM ITK module name > ENH: Rename ReadDICOMSeriesAndWrite3DImage > BUG: Add tests for ReadDICOMSeriesAndWrite3DImage > ENH: Bump ITK Superbuild version to 2016-09-20 master > ENH: Add Python version of ReadDICOMSeriesAndWrite3DImage > ENH: Add Python version of CreateAnRGBImage > > Michka Popoff (5): > ENH: Use same Python interpreter as ITK for wrapping tests > BUG: Fix ResampleAnImage example (Python3) > ENH: Add Python example for ApplyAFilterOnlyToASpecifiedRe > gionOfAnImage > ENH: Add 7 Python examples to Core/Common > ENH: Add BoundingBoxOfAPointSet Python example > > > ----------------------------------------------------- > Errors or omissions? Please fix them here: > > > https://docs.google.com/document/d/1UQAh7_mDjps0GZYX62biTwFrA54KRvf__ > 4oeT0ymzZg/edit > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Kitware offers ITK Training Courses, for more information visit: > http://kitware.com/products/protraining.php > > Please keep messages on-topic and check the ITK FAQ at: > http://www.itk.org/Wiki/ITK_FAQ > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/insight-developers > -------------- next part -------------- An HTML attachment was scrubbed... URL: From dzenanz at gmail.com Thu Jan 19 12:46:45 2017 From: dzenanz at gmail.com (=?UTF-8?B?RMW+ZW5hbiBadWtpxIc=?=) Date: Thu, 19 Jan 2017 12:46:45 -0500 Subject: [ITK-users] [ITK-dev] [ANN] ITK 4.11 Release Candidate 2 is ready for testing! In-Reply-To: References: Message-ID: Hi Taylor, I submitted a bug report to Microsoft about it, and somebody said they will add ITK to their compiler test suite. Also, that crashing bug was supposedly fixed for "final release". Regards, D?enan On Thu, Jan 19, 2017 at 12:18 PM, Taylor Braun-Jones wrote: > Any chance the 4.11 release could have at least some preliminary support > for VS2017? Right now it crashes the compiler: > > C:\src\itk\modules\core\common\include\itkPromoteType.h(97): fatal error > C1001: An internal error has occurred in the compiler. > (compiler file 'msc1.cpp', line 1469) > To work around this problem, try simplifying or changing the program near > the locations listed above. > Please choose the Technical Support command on the Visual C++ > Help menu, or open the Technical Support help file for more information > Internal Compiler Error in C:\PROGRA~2\MIB055~1\2017\ > COMMUN~1\VC\Tools\MSVC\1410~1.247\bin\HostX64\x64\cl.exe. You will be > prompted to send an error report to Microsoft later. > INTERNAL COMPILER ERROR in 'C:\PROGRA~2\MIB055~1\2017\ > COMMUN~1\VC\Tools\MSVC\1410~1.247\bin\HostX64\x64\cl.exe' > Please choose the Technical Support command on the Visual C++ > Help menu, or open the Technical Support help file for more information > > Taylor > > On Mon, Jan 16, 2017 at 4:18 PM, Matt McCormick < > matt.mccormick at kitware.com> wrote: > >> On behalf of the Insight Toolkit community, we are proud to announce >> that ITK 4.11 release candidate 2 has been tagged and is available for >> testing! Please take this opportunity to test the new features in the >> release candidate. >> >> >> To obtain the source code, use the links: >> >> >> https://github.com/Kitware/ITK/archive/v4.11rc02.zip >> https://github.com/Kitware/ITK/archive/v4.11rc02.tar.gz >> >> or >> >> git clone https://itk.org/ITK.git >> cd ITK >> git checkout -q --detach v4.11rc02 >> >> For more details, please see the Git documentation [1]. >> >> >> A few selected highlights for this release: >> >> - Remote Modules were added to: perturb mesh vertices with additive >> gaussian noise, accurately benchmark computational performance, >> perform principal components analysis of scalar, vector, and mesh >> vertex data, create a run-length encoded memory compression scheme for >> itk::Image, run N-D morphological contour interpolation, interpolate >> multi-label images, iterate over multiple images simultaneously, and >> compute inverse displacement fields. >> - NumPy bridge support is now enabled by default with NumPy array >> views of multi-component images and VNL vectors and matrices. >> - Internal HDF5 was updated to the latest upstream version along >> with a number of other third-party libraries. >> >> >> This release introduces a new template class export specification >> macro, ITK_TEMPLATE_EXPORT. The macro should be used with templated >> classes to address failing dynamic_cast's and exception catching >> across binaries on Mac OSX. >> >> Bugs were addressed and improvements were made to how the >> pseudo-random number generator is used. Tests that rely on the random >> number generator should explicitly set the global seed at start: >> >> itk::Statistics::MersenneTwisterRandomVariateGenerator:: >> GetInstance()->SetSeed( >> 121212 ); >> >> To improve randomness, new instances of the generator start from a >> different seed; some minor differences in the output of algorithms >> that uses the generator, like mutual information metrics, should be >> expected. >> >> Additionally, output may change for registration with composite affine >> transforms; the v4 registration framework now uses corner sampling as >> opposed to random sampling to estimate their parameter scales. >> >> >> Please test the release candidate and share your experiences on the >> mailing list, issue tracker, and Gerrit Code Review. >> >> >> An Experimental build, which demonstrates how the test suite performs >> on your local build system, can be submitted to the dashboard [2] >> with: >> >> mkdir ../ITK-build >> cd ../ITK-build >> cmake ../ITK >> ctest -j 4 -M Experimental -T Configure -T Build -T Test -T Submit >> >> Visual Studio builds must also add ?-C Release? to the ctest command. >> >> Notify the mailing list if there are any unexpected failures. Testing >> your own applications against the RC is also appreciated. >> >> >> Congratulations to the 31 contributors to this release. We would >> especially like to recognize the new contributors: Hastings Greer, >> Gilles Filippini, Thien Nguyen, Caspar Goch, Mayeul Chassagnard, >> Somesh Kashyap, Simon Rit, Pierre Barbier de Reuille, and Maeliss >> Jallais. >> >> >> The 4.11.0 final release is scheduled for January 23rd. >> >> >> [1] http://www.itk.org/Wiki/ITK/Git >> >> [2] http://open.cdash.org/index.php?project=Insight >> >> >> New Features >> ------------ >> >> * Wrapping Improvements >> - Python GetArrayFromImage() and GetImageFromArray() from >> ITKBridgeNumPy are directly accessible from the Python itk namespace. >> - The itk package loads much faster: individual modules are loaded >> only when required. >> - Conversion of ITK images from and to NumPy array using Bridge >> NumPy supports RGB, RGBA, and Vector images. >> - VNL vectors and VNL matrices can be converted from and to NumPy >> objects with respectively the new couple of functions >> GetArrayFromVnlVector()/GetVnlVectorFromArray() and >> GetArrayFromVnlMatrix()/GetVnlMatrixFromArray() >> - The global timestamp is used across all ITK Python modules when >> built statically >> - Wrap additional classes such as KernelFunctionBase >> - itk_python_add_test CMake function added for Python script testing >> in ITK modules >> >> * New Remote Modules >> - DVMeshNoise >> - Perturbing mesh vertices with additive gaussian noise >> - http://hdl.handle.net/10380/3567 >> - PerformanceBenchmarking >> - Accurate benchmarking of computational performance >> - http://hdl.handle.net/10380/3557 >> - PrincipalComponentsAnalysis >> - Principal components analysis of scalar, vector, and mesh vertex >> data >> - http://hdl.handle.net/10380/3386 >> - RLEImage >> - Run-length encoded memory compression scheme for itk::Image >> - http://hdl.handle.net/10380/3562 >> - MorphologicalContourInterpolation >> - N-D morphological contour interpolation >> - http://hdl.handle.net/10380/3563 >> - GenericLabelInterpolator >> - A generic interpolator for multi-label images >> - http://hdl.handle.net/10380/3506 >> - MultipleImageIterator >> - Iterate over multiple images simultaneously >> - http://hdl.handle.net/10380/3455 >> - FixedPointInverseDisplacementField >> - Computes inverse displacement field >> - http://hdl.handle.net/10380/3222 >> >> * Core Improvements >> - New ITK_TEMPLATE_EXPORT for templated classes resolves >> cross-binary dynamic_cast on Mac OSX >> - New MersenneTwisterRandomVariateGenerator instances are >> initialized with different seeds >> - Use compiler feature detection in CMake for C++11 features, etc. >> - New CMake macro itk_module_add_library for creating libraries in ITK >> modules >> - Improved support for ccache and distcc with >> CMAKE__COMPILER_LAUNCHER (CMake >=3.4 required) >> - Support for .sha512 ExternalData content links >> - GitHub Pages and data.kitware.com ExternalData repositories added >> - GPGPU system support for C++11 >> - Support of new compilers: Visual Studio 15 and XCode 8.2.1 >> (clang-800.0.42.1) >> >> * Filtering Improvements >> - HessianToObjectnessMeasure moved out of the ITKReview module >> - New UnsharpMaskImageFilter for image edge enhancement >> >> * IO Improvements >> - TransformFactory class has been moved to a separate module >> - Spline order added to BSplineTransform identifier >> - Improved NIFTI orientation support >> >> * Documentation Improvements >> - Updates to the Software Guide, Doxygen, Wiki and Sphinx Examples >> >> * Third Party Library Updates >> - pygccxml updated to v1.8.0 >> - VNL updated to latest upstream (2016.07.06) >> - SWIG updated to v3.0.11 >> - KWSys updated to latest upstream (2016.11.21) >> - HDF5 updated to v1.8.17 >> - SCIFIO updated to latest upstream (2016.12.01) >> - DCMTK updated to 3.6.1_20121012 >> - CastXML to latest upstream (2016.01.28) >> >> * Improved Code Coverage -- we are at 85.44%! >> - Jon Haitz-Legarreta's extensive code coverage improvements >> - https://blog.kitware.com/why-should-we-spend-time-writing-tests/ >> >> * *Lots* of important bug fixes >> >> * And much more! See details in the log below. >> >> >> Changes from v4.11rc01 to v4.11rc02 >> ----------------------------------- >> >> Bradley Lowekamp (5): >> BUG: Remove unused SimpleImageRegistrationTest baselines >> ENH: Expose GetNextSeed method in MersenneTwiseter Generator >> BUG: Add option for fixed seed or wall clock seed for sampling >> BUG: Use metric random seed in v3 examples >> BUG: Prefer setting seed at algorithm in "v4" tests. >> >> Francois Budin (3): >> ENH: Update BridgeNumPy to latest version on 2017.01.08 to address >> ITK-3511 >> BUG: Extra \$ in doxygen comment >> BUG: Binary include directory added only if enabled shared >> >> Jon Haitz Legarreta (2): >> DOC: Document itkLabelOverlapMeasuresImageFilter methods. >> DOC: Fix ITKImageNoise filters' doc TeX errors. >> >> Matthew McCormick (1): >> BUG: Remove invalid ImageRegistration4Test.png.sha512 >> >> Max Smolens (1): >> DOC: Fix itkUnsharpMaskImageFilter documentation typos >> >> Simon Rit (1): >> BUG: ITK-based software was crasing when thread creation failed >> >> >> Changes from v4.10.0 to v4.11rc01 >> --------------------------------- >> >> Bill Lorensen (4): >> COMP: Restore support for clang 3.0 compiler >> COMP: Consistent use of ModifiedTimeType >> ENH: Bump WikiExamples remote module version >> ENH: Bump WikiExamples version >> >> Bradley Lowekamp (57): >> ENH: Add registered TrasformIO's to exception >> ENH: Use template or constant for loop stop condition >> ENH: Updating SWIG version to 3.0.9 >> COMP: Address VS9 ambiguous std::abs call in Haung calculator >> COMP: Fix undefined NumericTraits::Zero and One errors with mingw64 >> BUG: Fix segfault if ~CleanUpObjectFactory called multiple times >> BUG: Address itkHDF5ImageIO test failures for mingw64 >> BUG: demonstrate dynamic_cast failure when reading transforms >> BUG: Address itkHDF5ImageIO test failures for mingw64 >> ENH: Updating SWIG version to 3.0.10 >> ENH: Enable CMP0063 New behavior >> COMP: Enable hidden visibility property with vxl static libraries >> COMP: Enable hidden visibility property with HDF5 static libraries >> COMP: Enable hidden visibility property with HDF5 static libraries >> BUG: Match Add2 function to AddImageFilter documentation >> ENH: Improve support for std::complex with PowImageFilter >> ENH: Explicitly mark required files for dependent tests >> COMP: Bypass XCode 7.3,8 internal compilation error >> COMP: Address CMake configuration error with itkJPEG2000Test03 >> property >> BUG: Correct test's REQUIRED_FILES to only the input. >> ENH: move HessianToObjectnessMeasure filter out of Review >> ENH: Separate TransformFactory class into separate module >> DOC: Add links between similar label to rgb filters >> ENH: Separate data from function calls >> COMP: Fix changed Graft method >> ENH: Reduce template dependencies on CalculateRotationMatrix >> ENH: Add Functor Accessors to LabelMapToRGB filter >> BUG: Enable VirtualDomain and FixedTransform in RegMethv4 >> BUG: Use BSpline Order 3 for 2D in transform factory. >> ENH: Add spline order to BSplineTransform's string id >> ENH: Adding initial CircleCi configuration file >> COMP: Fix float to unsigned integer conversion warnings >> BUG: Include installed modules in ITK_MODULES_ENABLED >> COMP: Address CMake error that ITKGPUCommon is not in export >> COMP: Address wrong library types with VS and shared libraries >> BUG: Ensure CreateImageIO is concurrent thread safe >> ENH: Mark HDF5 CMake options as internal >> COMP: Add template export declaration for ParametricPath >> COMP: Correct TEMPLATE_EXPLICIT definition in Path module >> ENH: Factor out common code in the TrasformFactoryBase registration >> ENH: Add CMake variable for max transform dimension, defaults 4 >> ENH: Create CMake module to check for private RTTI compatibility >> ENH: Improving setting of default ITK_TEMPATE_VISIBILITY_DEFAULT >> COMP: Correct ifndef value to allow user defined ITK_TEMPLATE_EXPORT >> BUG: Add explicit instantiate for ObjectToObjectOptimizerBase >> COMP: Use add_definitions for CMake 2.8.9 compatibility >> COMP: Add warning suppression for distcc warning >> ENH: Explicitly instantiate the optimizer base over float >> BUG: Use IsLinear to check if transform is "affine" >> ENH: Remove unneeded includes of random iterator header >> ENH: Improve thread-safety for Generator, and unique New sequence >> ENH: Do not use global random generator >> BUG: Update v3 registration metrics to use local seed >> ENH: Prefer setting local seed over global in tests. >> ENH: Update SWIG to latest 3.0.11 release >> BUG: relax testing parameters for v3 translation registration >> BUG: Restore baseline for debug registration >> >> Caspar Goch (2): >> BUG: Use printable type for RGBA pixel ostream for ITK-3501 >> STYLE: Remove extra space for ITK-3501 >> >> Christina Rossmanith (1): >> DOC: Added more details to the class Doxygen documentation. >> >> Davis Vigneault (2): >> COMP: VCL_DEFINE_SPECIALIZATION not defined >> ENH: Add remote module DVMeshNoise >> >> D?enan Zuki? (27): >> BUG: Fixing CID-1355433 (IDENTICAL_BRANCHES) >> ENH: Adding MultipleImageIterator as a remote module >> COMP: enables TBB 4.4 back-end for VTK7's SMP >> COMP: enabling position independent code flag for FFTW >> ENH: adding configuration file for code reformatting tool >> clang-format >> ENH: Updating hooks to work with Windows/TortoiseGit/KDiff3 >> COMP: Fixing -fPIC flag passing with Ninja build system >> ENH: Adding RLEImage as a remote module >> ENH: Updating uncrustify configuration to current git version >> STYLE: better compliance with ITK style >> STYLE: A new option in uncrustify, updating the config file >> accordingly >> ENH: Adding MorphologicalContourInterpolation as a remote module >> ENH: improving documentation >> BUG: fixing buffer growing endlessly, as reported by Timothee Evain >> BUG: fixing buffer growing endlessly, as reported by Timothee Evain >> STYLE: default uncrustify configuration file is less aggressive >> COMP: Fixing warning >> COMP: VS15 compiler fix >> BUG: casting -9 to unsigned produced unwanted result >> BUG: Ensuring consistency between debug and release >> COMP: Updating LesionSizingToolkit after some recent compile fixes >> COMP: respect option METAIO_USE_NAMESPACE >> ENH: updating version of AnisotropicDiffusionLBR >> ENH: adding UnsharpMaskingImageFilter >> COMP: explicitly cast to output type >> BUG: double call to update would cause empty output image >> ENH: Updating RLEImage remote module. Change-log: >> >> Eugene Prilepin (4): >> ENH: Add the "ITK_USE_GPU" to ITK Config >> BUG: Fix API for set/get "LaplacianImageFilter" object >> ENH: Add support of images types with the 'CovariantVector' pixel >> type >> ENH: Add python test for the 'GradientVectorFlowImageFilter' wrap >> >> Francois Budin (52): >> ENH: Adding GetArrayFromImage in python itk namespace >> ENH: Adding GetImageFromArray in python itk namespace >> ENH: *_WRAP_* variable per external module >> BUG: ImportImageFilter not responsible of memory management >> ENH: New remote module GenericLabelInterpolator >> DOC: SetNumberOfOutputs had wrong comment >> BUG: lazyAttributes dictionary keys could be over-ridden >> BUG: lazyAttributes dictionary keys could be over-ridden >> BUG: Fix recent update of HDF5 (1.8.17) >> ENH: Update SCIFIO to latest version on 08/23/2016 >> ENH: Addition of the remote module FixedPointInverseDisplacementF >> ield >> ENH: Update SCIFIO to latest version on 08/29/2016 >> BUG: Path to commit was relative instead of absolute >> ENH: Path to SetupForDevelopment is relative, not absolute >> BUG: LSMImageIO write function was not checking image dimension >> BUG: LSMImageIO was not checking correctly image dimension >> BUG: Missing associated test data >> BUG: Missing associated test data >> ENH: Bump CMakeLists.txt version to 4.10.1. >> BUG: Quotes are not escaped in configured cmake file >> ENH: Improving API of Graft() in itk::Image >> ENH: Updating ITKGenericLabelInterpolator remote module >> ENH: Update ITKIOTransformDCMTK remote module >> BUG: Factory registration should depend on ITK_BUILD_SHARED >> COMP: Updating DCMTK compilation for Ninja >> ENH: Update version of DCMTK to 3.6.1_20121012 >> ENH: Update SCIFIO to latest version on 10/25/2016 >> BUG: Swig and PCRE do not support space in installation paths >> BUG: exit() call from within piped commands was not exiting the >> script >> BUG: Typo in folder creation command >> ENH: Only display message for transform registered multiple times in >> debug >> ENH: Image spacing must be positive >> BUG: Supported extensions by PNG IO were not added in constructor. >> DOC: Documentation in itkRBGAPixel and itkRGBPixel was incorrect. >> ENH: Update SCIFIO to lastest (2016.12.01) >> ENH: FixedPointInverseDisplacementField moved to >> InsightSoftwareConsortium >> COMP: Remove compilation warnings >> ENH: Improved support of ccache and distcc >> BUG: GPUImage regression due to API change. >> ENH: Update Bridge Numpy (2016.12.05) >> ENH: Update VariationalRegistration to remove warnings during >> compilation >> ENH: FindPythonLibs does not support both debug and release >> python libraries >> ENH: Update VariationalRegistration >> BUG: Missing ITK_TEMPLATE_EXPORT in forward declaration of >> itk::ImageBase >> BUG: Missing ITK_TEMPLATE_EXPORT in itkOptimizerParametersHelper >> BUG: Missing ITK_TEMPLATE_EXPORT in templated class >> BUG: Remove linkage warnings on MacOS >> BUG: HDF5 CMake installation directory variable had not been updated >> BUG: Missing include header in AnisotropicDiffusionBLR remote >> module hxx files >> COMP: Silencing unused variable warning in itkTimeStamp >> STYLE: Improve style checking by using module ITKKWStyleOverwrite.txt >> COMP: OS*Barrier functions are deprecated on MacOS 10.12 >> >> GCC-XML Upstream (1): >> ENH: pygccxml v1.8.0 (reduced) >> >> Gert Wollny (1): >> BUG: Relax vnl_complex floating point comparisons for i386 >> >> Gilles Filippini (1): >> BUG: Use NATIVE_HBOOL for encoding HDF5 types. >> >> HDF Group (1): >> ENH: hdf5 1.8.17-r30218 (reduced) >> >> Hans Johnson (23): >> COMP: Use cmake WriteCompilerDetectionHeader >> ENH: Use itk_compiler_detection versions >> COMP: Need ITK_NOEXCEPT_OR_THROW macro. >> COMP: Provide consistent granular C++11 support >> STYLE: Use granular ITK_COMPILER_CXX_STATIC_ASSERT >> STYLE: Prefer to use consistent definitions >> COMP: Improve robustness of identifying the compiler standard used >> BUG: try_compile for AlignAs were always failing >> STYLE: Provide a well documented macro for repeated code >> STYLE: Delete functions in consistent way >> COMP: GPU baseclass ivars need to be protected >> COMP: Remove unnecessary circular dependancy >> COMP: Add long long usage for HDF5 >> COMP: Add long long usage for HDF5 >> STYLE: Prefer static small array to dynamic array >> BUG: Confusing interface for FFTW wisdom files >> STYLE: Output dimension from OutputImageType >> STYLE: Code review style cleanups >> STYLE: Prefer to use ITK AssertOrThrow macros >> ENH: Add OverrideBoundaryCondition logic >> ENH: Provide mechanism for enhanced NIFTI support >> BUG: Use NIFTI sform/qform conventions correctly >> ENH: Remove ambiguity about sform/qform >> >> Hastings Greer (8): >> BUG: ITK-3448 Wrap itkQuadEdgeCellTraitsInfo more specifically >> BUG: make itkTriangleHelper instantiable to ease wrapping >> BUG: remove lsqr because of license issues ITK 1160 >> BUG: make itkTriangleHelper instantiable to ease wrapping >> BUG: initialize X to zero in lsmr Solve >> BUG: Labled Point Set Registration: test multiple labels >> BUG: Fix python wrapping of Cuberille remote module >> BUG: Add test demonstrating Python global timestamp issue >> >> Jean-Christophe Fillion-Robin (5): >> STYLE: UseITK: Set ImageIO exceptions using new convention. See #3393 >> STYLE: MeshIO: Moves virtual destructor into cpp files. See #3393 >> STYLE: Update MeshIO factories to use RegisterFactoryInternal. See >> #3393 >> STYLE: MeshIO: Move MeshFileWriterException into its own file. See >> #3393 >> STYLE: MeshIO: Remove unused include from headers. See #3393 >> >> Johan Andruejol (3): >> ENH: Add missing itkKernelFunctionBase wrapping >> ENH: Add PrincipalComponentsAnalysis remote module >> COMP: Override cannot be used with inline >> >> Jon Haitz Legarreta (216): >> ENH: Improve itkFlatStructutingElement coverage. >> ENH: Improve itkPathToImageFilter class coverage. >> ENH: Improve itkIsolatedWatershedImageFilter coverage. >> ENH: Improve itkLogSigmoidTransferFunction coverage. >> STYLE: Improve itkBSplineTransform doc style. >> ENH: Improve GaborKernelFunctionCoverage. >> PERF: Remove duplicate itkMath include >> STYLE: Move the PrintSelf method to the end >> STYLE: Improve the itkScalarToRGBColormapImageFilter style. >> STYLE: Delete duplicate method documentation >> STYLE: Remove method documentation from implementation file >> STYLE: Improve GACLevelSet classes' style >> STYLE: Improve test style >> ENH: Improve itkGaussianDerivativeImageFilter coverage. >> ENH: Improve the itkScalarToRGBColormapImageFilter coverage >> STYLE: Improve itkScalarToRGBColormap test style >> ENH: Improve GACLSImageFilter classes' coverage >> STYLE: Improve comment style in GACLS tests >> ENH: Improve itkImportImageFilter coverage >> ENH: Improve itkVideoFileReader coverage >> ENH: Improve itkVideoFileWriter coverage >> STYLE: Improve the itkVideoFileWriter style. >> STYLE: Imrpove itkVideoFileReader style. >> ENH: Improve the itkBSplineControlPointImageFunction coverage >> STYLE: Improve the itkIntensityWindowingImageFilter style >> STYLE: Improve the itkIntensityWindowingImageFilter test style >> ENH: Improve ImageToSpatialObjectRegistrationMethod coverage >> STYLE: Improve test style >> ENH: Improve MaskNeighborhoodOperatorImageFilter coverage >> ENH: Improve itkMeshFileWriter coverage >> ENH: Improve RescaleIntensityImageFilter coverage. >> ENH: Improve itkClampImageFilter coverage. >> BUG: Fix ivar type casting in PrintSelf. >> STYLE: Improve MRIBiasFieldCorrectionFilter style. >> ENH: Improve MRIBiasFieldCorrectionFilter coverage. >> ENH: Improve itkIntensityWindowingImageFilter coverage >> BUG: Fix Run-time type information in CSV module classes. >> ENH: Improve the itkHistogram class code coverage. >> DOC: Fix documentation typo. >> STYLE: Improve the ImproveRescaleIntensityImageFilter style. >> PERF: Make the itkVideoFileReader ivars private >> PERF: Make itkVideoFileWriter ivars private >> ENH: Improve coverage for itk::OrientImageFilter. >> STYLE: Improve itk::OrientImageFilter class style. >> ENH: Improve itkCSVNumericObjectFileWriter coverage. >> ENH: Add missing standard class typdefs. >> ENH: Improve itkVoronoiSegmentationImageFilter coverage. >> ENH: Improve itkVoronoiSegmentationImageFilter style. >> STYLE: Improve the MalahanobisDistanceThresholdImageFunction style. >> ENH: Improve coverage for itkMalahanobisDistanceThreshold. >> ENH: Improve itk::MinimumMaximumImageCalculator coverage. >> ENH: Improve itkMinimumMaximumImageCalculator style. >> BUG: Fix type mismatch in test. >> STYLE: Improve itkPolylineMaskImagefilter style. >> ENH: Improve itkPolylineMaskImageFilter coverage. >> ENH: Improve itkFileListVideoStyle. >> ENH: Improve itkLandmarkBasedTransformInitializer coverage. >> ENH: Add baseline image to itkPolylineMaskImageFilter test. >> ENH: Improve coverage for itkBSplineTransformInitializer. >> STYLE: Improve itkBSplineTransformInitializer doc style. >> ENH: Enhance itkBSplineTransformInitializer implementation. >> DOC: Fix typo in method documentation. >> ENH: Improve the itkRegularStepGradientDescentOptimizerv4 style. >> STYLE: Improve the itkSimpleContourExtractorImageFilter style. >> ENH: Exercise the class' Get methods. >> ENH: Improve coverage for itkStatisticsOpeningLabelMapFilter. >> ENH: Improve style for itkThresholdLabelerImageFilter. >> ENH: Improve itkThresholdLabelerImageFilter coverage. >> ENH: Get internal ImageIO via a const macro. >> ENH: Improve the itkSimpleContourExtractorImageFilter coverage. >> STYLE: Improve the itkMetaArray class style. >> ENH: Improve MetaArrayReader/Writer coverages. >> ENH: Improve the itkCovarianceImageFunction style. >> STYLE: Improve itkVoronoiDiagram2DGenerator style. >> ENH: Improve VoronoiDiagram2DGenerator coverage. >> STYLE: Improve the itkBayesianClassifierImageFilter style. >> STYLE: Improve the itkMetaArrayWriter style. >> ENH: Improve itkCovarianteImageFunction coverage. >> COMP: Fix signed/unsigned int comparison warning. >> DOC: Improve itkGrayscaleDilateImageFilter documentation. >> DOC: Improve documentation for itkGrayscaleErodeImageFilter. >> DOC: Improve ConfigureHistogram method documentation. >> STYLE: Improve the itkMovingHistogramMorphologyImagefilter style. >> BUG: Fix Superclass name in RTTI. >> STYLE: Improve itkGaussianInterpolateImageFunction style. >> ENH: Improve coverage for itkGaussianInterpolateImageFunction. >> ENH: Improve itkBayesianClassifierImageFilter coverage. >> ENH: Add itkBSplineControlPointImageFilter RTTI. >> STYLE: Improve itkBSplinecontrolPointImageFilter style. >> ENH: Improve itkBSplineControlPointImageFilter coverage. >> ENH: Improve coverage for itkRegularStepGradientDescentOptimizerv4. >> STYLE: Improve the class implementation file style. >> STYLE: Improve the itkResampleImageFilter style. >> DOC: Fix typo in GetMTime method doc. >> STYLE: Remove out-of-body implementation doc >> ENH: Improve itkResampleImageFilter coverage. >> ENH: Improve itkAbsImageAdaptor and Filter coverage. >> BUG: Fix itkLSMImageIO class' Superclass name. >> ENH: Improve the itkInterpolateImagePointsFilter coverage. >> ENH: Improve itkPowImageFilter coverage. >> BUG: Fix ConvolutionImageFilter RTTI. >> STYLE: Use initialization lists. >> STYLE: Improve BinaryFunctorImageFilter style. >> ENH: Improve itkMinimumImageFilter code coverage. >> BUG: Fix Linux-x86_64-gcc4.1 warning on implicit conversion. >> ENH: Improve MaximumImageFilter coverage. >> BUG: Fix conversion to PixelType conversion. >> COMP: Fix double to unsigned char conversion warning. >> ENH: Improve coverage for itkNormalizeToConstantImageFilter. >> BUG: Fix itkSquaredDifferenceErrorFunction RTTI. >> ENH: Improve itkMeanImageFunctionCoverage. >> ENH: Improve itkSquareImageFilter coverage. >> STYLE: Improve the itkSquaredDifferenceErrorFunction style. >> STYLE: Enhance style for itkNormalizeToConstantImageFilter. >> STYLE: Improve itkMeanImageFunction style. >> ENH: Remove unnecesary call to filter print. >> ENH: Improve itkRegionOfInterestImageFilter coverage. >> STYLE: Improve itkRegionOfInterestImageFilter style. >> STYLE: Improve itkPasteImageFilter style. >> STYLE: Improve itkJoinSeriesImageFilter style. >> BUG: Fix itkPadLabelMapFilter RTTI Superclass. >> COMP: Address std::cout.precision conversion warning. >> ENH: Improve itkBayesianClassifiertImageFilter coverage. >> ENH: Improve itkPadLabelMapFilter coverage. >> ENH: Improve itkJoinSeriesImageFilter coverage. >> ENH: Improve the itkPasteImageFilter coverage. >> ENH: Improve MeanImageFilter coverage. >> COMP: Address std::cout.precision conversion warning. >> ENH: Improve TernaryMagnitudeImageFilter coverage. >> ENH: Improve FFTConvolutionImageFilter coverage. >> DOC: Fix class documentation in ternary magnitude filters. >> ENH: Improve ConstrainedValueDifferenceImageFilter coverage. >> ENH: Improve AndImageFilter coverage. >> ENH: Add baseline test to itkTernaryMagnitudeImageFilter. >> ENH: Use MD5 comparison framework in baseline test. >> ENH: Improve itk::VectorRescaleIntensityImageFilter coverage. >> STYLE: Improve the itkVectorRescaleIntensityImageFilter style. >> ENH: Print missing ivar in filter PrintSelf method. >> ENH: Improve itkComplexToImaginaryFilter coverage. >> ENH: Improve itkComplexToPhaseImageFilter coverage. >> ENH: Improve itkComplexToModulusImageFilter coverage. >> ENH: Improve itkComplexToRealImageFilter coverage. >> ENH: Improve itkVectorResampleImageFilter coverage. >> ENH: Add GetTransform method. >> ENH: Improve itkConstrainedValueAdditionImageFilter coverage. >> ENH: Improve itkModulusImageFilter coverage. >> ENH: Improve itkLog10ImageFilter coverage. >> ENH: Imporve itkMagnitudeAndPhaseToComplexImageFilter coverage. >> ENH: Improve itkLogImageFilter coverage. >> ENH: Improve itkInvertIntensityImageFilter coverage. >> STYLE: Improve itkInvertIntensityImageFilter style. >> DOC: Add missing doc to itkInvertIntensityImageFilter. >> STYLE: Improve itkIntensityWindowingImageFilter style. >> STYLE: Use initialization lists. >> ENH: Improve itkIntensityWindowingImageFilter coverage. >> ENH: Improve itkNaryMaximumImageFilter coverage. >> COMP: Fix std::precision type casting warning. >> ENH: Improve itkPointSetToPointSetRegistrationMethod coverage. >> STYLE: Improve the itkPointSetToPointSetImageRegistrationMethod >> style. >> ENH: Remove SmartPointers being explicitly initialized to null. >> STYLE: Improve the itkPointSetToImageRegistrationMethod style. >> ENH: Improve itkPointSetToImageRegistration coverage. >> STYLE: Change the name of the itkPointSetToImageRegistrationMethod >> test. >> STYLE: Improve itkVectorResampleImageFilter style. >> STYLE: Improve the itkAntiAliasBinaryImageFilter style. >> ENH: Improve trigonometric function filters' coverage. >> STYLE: Remove test names from std::out messages. >> ENH: Improve Boolean Algebra ImageFilters coverage. >> STYLE: Improve the EuclideanDistancePointMetric style. >> ENH: Improve itkSigmoidImageFilter coverage. >> STYLE: Improve itkCropImageFilter style. >> ENH: Improve itkCropImageFilter coverage. >> ENH: Improve RGBToLuminanceImageFilter and Adaptor coverage. >> ENH: Improve itkRescaleIntensityImageFilter coverage. >> ENH: Improve the itkMatrixSelectionImageFilter coverage. >> ENH: Improve itkTanImageFilter and Adaptor coverage. >> ENH: Increase itkSqrtImageFilter and Adaptor coverage. >> ENH: Increase itkTernaryOperatorImageFilter coverage. >> ENH: Increase itkSymmetricEigenAnalysisImageFilter coverage. >> STYLE: Improve itkScalarImagekmeansImageFilter style. >> STYLE: Conform to TEST_SET_GET_VALUE definition. >> BUG: Fix uninitialized variable due to dynamic analysis defect. >> BUG: Fix uninitialized variable defect reported by valgrind. >> ENH: Improve the itkPointSetToPointSetRegistrationTest. >> ENH: Improve the itkPointSetToImageRegistrationTest. >> ENH: Increas BinaryMagnitudeImageFilter coverage. >> STYLE: Remove test name from std output. >> ENH: Increase MagnitudeImageFilter coverage. >> BUG: Fix uninitialized variable defect reported by valgrind. >> BUG: Fix Superclass name in RTTI. >> STYLE: Improve itkFrustumSpatialFunction style. >> STYLE: Improve the itkConicShellInteriorExteriorSpatialFunction >> style. >> BUG: Fix Superclass template argument list. >> STYLE: Improve the itkTorusInteriorExteriorSpatialFunction style. >> STYLE: Improve the itkCheckerBoardImageFilter class style. >> ENH: Improve the itk::LabelVotingImageFilter coverage. >> ENH: Improve itkCheckerBoardImageFilter coverage. >> STYLE: Improve itk::LabelVotingImageFilter style. >> STYLE: Improve the itkHoughTransform2DCirclesImageFilter style. >> ENH: Add test for itk::FrustumSpatialFunction class. >> ENH: Improve itkConnectedThresholdImageFilter coverage. >> STYLE: Improve itkConnectedThresholdImageFilter style. >> BUG: Fix FrustumSpatialFunction internal precision conversion. >> COMP: Fix implicit conversion warning. >> STYLE: Improve itkThresholdImageFilter style. >> ENH: Add test for itk::TorusInteriorExteriorSpatialFunction. >> BUG: Fix Superclass template argument list. >> ENH: Improve itkUnsharpMaskingImageFilter implementation. >> ENH: Improve the itkUnsharpMaskingImageFilter coverage. >> ENH: Fix UnsharpMaskingImageFilter test inconsistencies. >> BUG: Add missing itkTypeMacro. >> DOC: Document the member variables. >> BUG: Fix the itkImageSource RTTI class name, >> STYLE: Improve itkLabelImageGaussianInterpolateImageFunction style. >> ENH: Finish itkGaussianInterpolateImageFunction PrintSelf. >> STYLE: Improve itkLabelOverlapMeasurementImageFilter style. >> >> KWSys Robot (6): >> KWSys 2016-06-30 (96f06c8e) >> KWSys 2016-10-23 (b630d2f5) >> KWSys 2016-11-03 (37306a1c) >> KWSys 2016-11-08 (2b3e2b1c) >> KWSys 2016-11-09 (18c65411) >> KWSys 2016-11-21 (cb55cf5a) >> >> Maeliss Jallais (1): >> BUG: Add unsigned and signed short to the wrapping of vnl_matrix >> >> Matthew McCormick (85): >> PERF: Simplify HilbertPath numberOfPathVertices computation. >> BUG: CID 1355469 NNetClassifierTest4 unintended integer division. >> BUG: Update Cuberille Remote for version check fix. >> ENH: Bump ITK version to 4.11.0. >> BUG: Fix HDF5ImageIO type information. >> BUG: Fix H5File memory leak in HDF5ImageIO. >> DOC: Collect Francois Budin's contributions in .mailmap >> BUG: Limit WRAP_ITK_MODULES when building externally >> STYLE: Improvements to ResourceProbe report output. >> ENH: Add a useTabs argument to ResourceProbe::Report. >> ENH: Add standard error measure to the ResourceProbe >> ENH: Add itk_python_add_test function. >> BUG: Remove VNL file from subtree merge. >> COMP: Fix wrapping with a space in the Python include path >> BUG: Fix PermuteAxesImageFilter pipeline method visibility >> BUG: Initialize PermuteOrder and FlipAxes in OrientImageFilter >> BUG: ResampleImageFilter honor isInside output of the transform >> method >> COMP: Avoid recursive include of itkMath.h >> COMP: Fix VXL header installation locations >> BUG: ClampImageFilterTest for older GCC, InPlaceOn >> DOC: Add CONTRIBUTING.md file to the top level. >> COMP: Update VariationalRegistration to address Doxygen warnings >> BUG: Compiler detections file installed into ITK build tree location >> COMP: Do not use string(TIMESTAMP. >> COMP: Remove HDF5 -std=c99 for C++ files >> BUG: Do not build HDF5 static library with a shared build >> ENH: Add PerformanceBenchmarking Remote Module >> COMP: Remove duplicate wrappings for ResampleImageFilter >> BUG: Put Python test output files in the build tree >> BUG: Improve HDF5ImageIO::CloseDataSet name >> COMP: Use add_python_test PythonLazyLoadingImage >> COMP: Address missing override it itkFactoryTestLib.cxx >> BUG: Index,Size,Offset constructors present in Python with C++11 >> COMP: Address missing override it itkFactoryTestLib.cxx >> BUG: PerformanceBenchmarking as EXCLUDE_FROM_DEFAULT >> ENH: Bump SetupForDevelopment version >> BUG: Add missing ZLib deflate support to HDF5 >> BUG: Address memory leak, remove NumPy build dep in BridgeNumPy >> COMP: Do not set ITK_LIBRARY_BUILD_TYPE in ITKTransformFactory >> COMP: Do not set ITK_LIBRARY_BUILD_TYPE in ITKTransformFactory >> BUG: Check when ITK_WRAP_VECTOR_COMPONENTS doesn't include >> ITK_WRAP_IMAGE_DIMS >> BUG: RichardsonLucyDeconvolutionImageFilter with non-null input >> Image Origin >> BUG: Fix inconsistent Twister start with Initialize(seed) and >> SetSeed(seed) >> BUG: Do not hard code CMake scripts in HDF5 >> COMP: Workaround Emscripten ITKCommon test build failure >> COMP: Do embed fancy HDF5 libsettings with Emscripten >> COMP: Add missing H5T_patch_vlen_file declaration >> ENH: Bump CastXML to 2016-10-11 master. >> COMP: Workaround Emscripten ITKCommon test build failure >> BUG: Swap CastXML hashes for Mac OSX and Windows >> ENH: Sync ExternalData.cmake with upstream CMake 3.6.2 >> COMP: Fix VNL tests when cross-compiling >> ENH: ExternalData multi-algorithm support >> ENH: ExternalData support for data.kitware.com >> BUG: Install missing H5pubconf.h >> BUG: Use SpacePrecisionType in TileImageFilter >> BUG: Use internal ExternalData_Add_Target >> ENH: Run .sha512, .md5 simultaneous modification pre-commit check >> BUG: Correct CastXML Windows binary >> BUG: Support non-zero Index in LevelSetNeighborhoodExtractor >> ENH: Add ArchiveTestingDataOnGirder.py >> BUG: Correct AtanRegularizationHeavisideStepFunction derivative >> ENH: Add Utilities/Maintenance/ContentLinkSynchronization.sh >> BUG: Remove extra HessianToObjectness content links >> ENH: Wrap SpatialFunction float types with ITK_WRAP_float >> BUG: Bump PerformanceBenchmarking to 2016-11-04 >> BUG: itk_python_expression_add_test too many quotes. >> ENH: Wrap VectorImage with complex real pixel types >> ENH: Bump PerformanceBenchmarking to 2016-11-07 >> BUG: Do not assume zero Index in ReinitializeLevelSetImageFilter >> ENH: Create itk_module_add_library macro >> BUG: Update computeCodeCoverageLocally.sh for KWStyle addition >> COMP: Install a newer version of CMake on CircleCI >> ENH: Use GitHub Pages as the first ExternalData resource >> ENH: Add tests to demonstrate OSX dynamic_cast failure >> BUG: Use random seed with for MersenneTwisterRandomVariateGenerator. >> BUG: Enable program global timestamp >> BUG: Set random number seed in Mattes metric test >> BUG: Notify builder that ITK_DYNAMIC_LOADING is required with >> wrapping >> BUG: Define ITK_DYNAMIC_LOADING before ITK_WRAP_PYTHON >> BUG: Set random number seed mutual information metric tests >> BUG: Wrap std::vector< itk.Point > >> BUG: Fix wrapping of LandmarkBasedTransformInitializer >> BUG: Rename UnsharpMaskingImageFilter to UnsharpMaskImageFilter >> DOC: Add D?enan Zuki? to .mailmap >> >> Max Smolens (4): >> COMP: CID-1266557 StatisticsLabelMapFilter uninitialized scalar field >> BUG: CID-1355438 QuadEdgeTest1 resource leaks >> COMP: CID-1355472 MIRegistrationFunction unused value >> COMP: Fix link errors for VNL template instantiations on Windows >> >> Mayeul Chassagnard (7): >> BUG: Test added and error fixed in HDF5ImageIO >> ENH: Update add_library TO itk_module_add_library >> COMP: Set Policy CMP0023 target_link_libraries for >> Modules/ThirdParty/VNLI... >> BUG: Add ITK_TEMPLATE_EXPORT to template classes >> BUG: Fix errors linked to dyn_cast merge >> BUG: Restore old ITKModule_TEMPLATE_EXPORT specification for classes >> BUG: dash3win7 dashboard build error unresolved external symbol >> >> Michka Popoff (3): >> ENH: Update UpdatepygccxmlFromUpstream.sh for v1.8.0 >> ENH: Update igenerator.py for pygccxml v1.8.0 >> COMP: Use pygccxml's public API for apply definitions >> >> Pierre Barbier de Reuille (2): >> COMP: Fix function naming error when using FFTWD >> COMP: Fix function naming error when using FFTWD >> >> Sean McBride (1): >> COMP: Bypass HDF5 bugs under TSan >> >> Simon Rit (2): >> COMP: remove C++11 compiler warning for CUDA compilations >> COMP: remove C++11 compiler warning for CUDA compilations >> >> Somesh Kashyap (2): >> BUG: Override TransformCategoryType for >> AzimuthElevationToCartesianTransform >> BUG: -Added test case for itkAzimuthElevationToCartesianTransform >> >> Sumedha Singla (1): >> ENH: Updated the git tag for ITK-Minimal-Path-Extraction remote >> module >> >> Taylor Braun-Jones (4): >> COMP: Skip path length checks if ITK_SKIP_PATH_LENGTH_CHECKS is >> enabled >> COMP: Fix truncation from double to float warning >> DOC: Fix incorrect itkFactorylessNewMacro documentation >> COMP: Only include the headers for required OpenCV modules >> >> Thien Nguyen (1): >> PERF: SmapsFileParser unnecessary dynamic_cast >> >> VXL Maintainers (4): >> VNL 2016-05-15 (14f97ab4) >> VNL 2016-06-22 (23a93adb) >> VNL 2016-06-29 (d62a2d70) >> VNL 2016-07-06 (acfa62cc) >> >> Vladimir S. FONOV (1): >> COMP: Build against GCC 5.3.1 >> >> Zach Williamson (2): >> ENH: Update Remote Module Tags >> BUG: Fix Python Wrappings in C++11 >> >> Ziv Yaniv (1): >> BUG: Metric sampling percentage accepted values outside (0.0, 1.0]. >> >> >> ITK Software Guide Changes >> ---------------------------------------- >> >> Matt McCormick (8): >> DOC: Move the location for obtaining the software >> DOC: Remove reference to ITKApps >> ENH: Bump ITK ExternalProject version to 2016-11-02 master >> DOC: Document the ITK module registry >> ENH: Bump ITK ExternalProject version to v4.11rc01 master >> DOC: Update CMake hyperlinks >> DOC: Update minimum required CMake version to 2.8.9 >> DOC: Add section on static and shared libraries. >> >> >> ITK Sphinx Examples Changes >> ------------------------------------------- >> >> Matt McCormick (6): >> BUG: Use GDCM ITK module name >> ENH: Rename ReadDICOMSeriesAndWrite3DImage >> BUG: Add tests for ReadDICOMSeriesAndWrite3DImage >> ENH: Bump ITK Superbuild version to 2016-09-20 master >> ENH: Add Python version of ReadDICOMSeriesAndWrite3DImage >> ENH: Add Python version of CreateAnRGBImage >> >> Michka Popoff (5): >> ENH: Use same Python interpreter as ITK for wrapping tests >> BUG: Fix ResampleAnImage example (Python3) >> ENH: Add Python example for ApplyAFilterOnlyToASpecifiedRe >> gionOfAnImage >> ENH: Add 7 Python examples to Core/Common >> ENH: Add BoundingBoxOfAPointSet Python example >> >> >> ----------------------------------------------------- >> Errors or omissions? Please fix them here: >> >> >> https://docs.google.com/document/d/1UQAh7_mDjps0GZYX62biTwFr >> A54KRvf__4oeT0ymzZg/edit >> _______________________________________________ >> Powered by www.kitware.com >> >> Visit other Kitware open-source projects at >> http://www.kitware.com/opensource/opensource.html >> >> Kitware offers ITK Training Courses, for more information visit: >> http://kitware.com/products/protraining.php >> >> Please keep messages on-topic and check the ITK FAQ at: >> http://www.itk.org/Wiki/ITK_FAQ >> >> Follow this link to subscribe/unsubscribe: >> http://public.kitware.com/mailman/listinfo/insight-developers >> > > > _____________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Kitware offers ITK Training Courses, for more information visit: > http://www.kitware.com/products/protraining.php > > Please keep messages on-topic and check the ITK FAQ at: > http://www.itk.org/Wiki/ITK_FAQ > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/insight-users > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From dzenanz at gmail.com Thu Jan 19 13:21:06 2017 From: dzenanz at gmail.com (=?UTF-8?B?RMW+ZW5hbiBadWtpxIc=?=) Date: Thu, 19 Jan 2017 13:21:06 -0500 Subject: [ITK-users] [ITK-dev] [ANN] ITK 4.11 Release Candidate 2 is ready for testing! In-Reply-To: References: Message-ID: A new reply in that bug report: Hi, there's a lag when we, the compiler team, tags the bug resolved and the fix actually gets included in the VS release. We apologize for that, it's just the way how engineering works to get everything ready in VS to be shipped. This specific bug has been fixed for the VS2017 RC3 release, which is only days away from shipping. If you'd you like to validate your project before that with a private Nuget package of the compiler toolset, then please send me an email here (batul at Microsoft dot com), and I can get you going. On Thu, Jan 19, 2017 at 12:46 PM, D?enan Zuki? wrote: > Hi Taylor, > > I submitted a bug > > report to Microsoft about it, and somebody said they will add ITK to their > compiler test suite. Also, that crashing bug was supposedly fixed for > "final release". > > Regards, > D?enan > > On Thu, Jan 19, 2017 at 12:18 PM, Taylor Braun-Jones < > taylor at braun-jones.org> wrote: > >> Any chance the 4.11 release could have at least some preliminary support >> for VS2017? Right now it crashes the compiler: >> >> C:\src\itk\modules\core\common\include\itkPromoteType.h(97): fatal error >> C1001: An internal error has occurred in the compiler. >> (compiler file 'msc1.cpp', line 1469) >> To work around this problem, try simplifying or changing the program >> near the locations listed above. >> Please choose the Technical Support command on the Visual C++ >> Help menu, or open the Technical Support help file for more information >> Internal Compiler Error in C:\PROGRA~2\MIB055~1\2017\COMM >> UN~1\VC\Tools\MSVC\1410~1.247\bin\HostX64\x64\cl.exe. You will be >> prompted to send an error report to Microsoft later. >> INTERNAL COMPILER ERROR in 'C:\PROGRA~2\MIB055~1\2017\COM >> MUN~1\VC\Tools\MSVC\1410~1.247\bin\HostX64\x64\cl.exe' >> Please choose the Technical Support command on the Visual C++ >> Help menu, or open the Technical Support help file for more >> information >> >> Taylor >> >> On Mon, Jan 16, 2017 at 4:18 PM, Matt McCormick < >> matt.mccormick at kitware.com> wrote: >> >>> On behalf of the Insight Toolkit community, we are proud to announce >>> that ITK 4.11 release candidate 2 has been tagged and is available for >>> testing! Please take this opportunity to test the new features in the >>> release candidate. >>> >>> >>> To obtain the source code, use the links: >>> >>> >>> https://github.com/Kitware/ITK/archive/v4.11rc02.zip >>> https://github.com/Kitware/ITK/archive/v4.11rc02.tar.gz >>> >>> or >>> >>> git clone https://itk.org/ITK.git >>> cd ITK >>> git checkout -q --detach v4.11rc02 >>> >>> For more details, please see the Git documentation [1]. >>> >>> >>> A few selected highlights for this release: >>> >>> - Remote Modules were added to: perturb mesh vertices with additive >>> gaussian noise, accurately benchmark computational performance, >>> perform principal components analysis of scalar, vector, and mesh >>> vertex data, create a run-length encoded memory compression scheme for >>> itk::Image, run N-D morphological contour interpolation, interpolate >>> multi-label images, iterate over multiple images simultaneously, and >>> compute inverse displacement fields. >>> - NumPy bridge support is now enabled by default with NumPy array >>> views of multi-component images and VNL vectors and matrices. >>> - Internal HDF5 was updated to the latest upstream version along >>> with a number of other third-party libraries. >>> >>> >>> This release introduces a new template class export specification >>> macro, ITK_TEMPLATE_EXPORT. The macro should be used with templated >>> classes to address failing dynamic_cast's and exception catching >>> across binaries on Mac OSX. >>> >>> Bugs were addressed and improvements were made to how the >>> pseudo-random number generator is used. Tests that rely on the random >>> number generator should explicitly set the global seed at start: >>> >>> itk::Statistics::MersenneTwisterRandomVariateGenerator::GetI >>> nstance()->SetSeed( >>> 121212 ); >>> >>> To improve randomness, new instances of the generator start from a >>> different seed; some minor differences in the output of algorithms >>> that uses the generator, like mutual information metrics, should be >>> expected. >>> >>> Additionally, output may change for registration with composite affine >>> transforms; the v4 registration framework now uses corner sampling as >>> opposed to random sampling to estimate their parameter scales. >>> >>> >>> Please test the release candidate and share your experiences on the >>> mailing list, issue tracker, and Gerrit Code Review. >>> >>> >>> An Experimental build, which demonstrates how the test suite performs >>> on your local build system, can be submitted to the dashboard [2] >>> with: >>> >>> mkdir ../ITK-build >>> cd ../ITK-build >>> cmake ../ITK >>> ctest -j 4 -M Experimental -T Configure -T Build -T Test -T Submit >>> >>> Visual Studio builds must also add ?-C Release? to the ctest command. >>> >>> Notify the mailing list if there are any unexpected failures. Testing >>> your own applications against the RC is also appreciated. >>> >>> >>> Congratulations to the 31 contributors to this release. We would >>> especially like to recognize the new contributors: Hastings Greer, >>> Gilles Filippini, Thien Nguyen, Caspar Goch, Mayeul Chassagnard, >>> Somesh Kashyap, Simon Rit, Pierre Barbier de Reuille, and Maeliss >>> Jallais. >>> >>> >>> The 4.11.0 final release is scheduled for January 23rd. >>> >>> >>> [1] http://www.itk.org/Wiki/ITK/Git >>> >>> [2] http://open.cdash.org/index.php?project=Insight >>> >>> >>> New Features >>> ------------ >>> >>> * Wrapping Improvements >>> - Python GetArrayFromImage() and GetImageFromArray() from >>> ITKBridgeNumPy are directly accessible from the Python itk namespace. >>> - The itk package loads much faster: individual modules are loaded >>> only when required. >>> - Conversion of ITK images from and to NumPy array using Bridge >>> NumPy supports RGB, RGBA, and Vector images. >>> - VNL vectors and VNL matrices can be converted from and to NumPy >>> objects with respectively the new couple of functions >>> GetArrayFromVnlVector()/GetVnlVectorFromArray() and >>> GetArrayFromVnlMatrix()/GetVnlMatrixFromArray() >>> - The global timestamp is used across all ITK Python modules when >>> built statically >>> - Wrap additional classes such as KernelFunctionBase >>> - itk_python_add_test CMake function added for Python script testing >>> in ITK modules >>> >>> * New Remote Modules >>> - DVMeshNoise >>> - Perturbing mesh vertices with additive gaussian noise >>> - http://hdl.handle.net/10380/3567 >>> - PerformanceBenchmarking >>> - Accurate benchmarking of computational performance >>> - http://hdl.handle.net/10380/3557 >>> - PrincipalComponentsAnalysis >>> - Principal components analysis of scalar, vector, and mesh vertex >>> data >>> - http://hdl.handle.net/10380/3386 >>> - RLEImage >>> - Run-length encoded memory compression scheme for itk::Image >>> - http://hdl.handle.net/10380/3562 >>> - MorphologicalContourInterpolation >>> - N-D morphological contour interpolation >>> - http://hdl.handle.net/10380/3563 >>> - GenericLabelInterpolator >>> - A generic interpolator for multi-label images >>> - http://hdl.handle.net/10380/3506 >>> - MultipleImageIterator >>> - Iterate over multiple images simultaneously >>> - http://hdl.handle.net/10380/3455 >>> - FixedPointInverseDisplacementField >>> - Computes inverse displacement field >>> - http://hdl.handle.net/10380/3222 >>> >>> * Core Improvements >>> - New ITK_TEMPLATE_EXPORT for templated classes resolves >>> cross-binary dynamic_cast on Mac OSX >>> - New MersenneTwisterRandomVariateGenerator instances are >>> initialized with different seeds >>> - Use compiler feature detection in CMake for C++11 features, etc. >>> - New CMake macro itk_module_add_library for creating libraries in ITK >>> modules >>> - Improved support for ccache and distcc with >>> CMAKE__COMPILER_LAUNCHER (CMake >=3.4 required) >>> - Support for .sha512 ExternalData content links >>> - GitHub Pages and data.kitware.com ExternalData repositories added >>> - GPGPU system support for C++11 >>> - Support of new compilers: Visual Studio 15 and XCode 8.2.1 >>> (clang-800.0.42.1) >>> >>> * Filtering Improvements >>> - HessianToObjectnessMeasure moved out of the ITKReview module >>> - New UnsharpMaskImageFilter for image edge enhancement >>> >>> * IO Improvements >>> - TransformFactory class has been moved to a separate module >>> - Spline order added to BSplineTransform identifier >>> - Improved NIFTI orientation support >>> >>> * Documentation Improvements >>> - Updates to the Software Guide, Doxygen, Wiki and Sphinx Examples >>> >>> * Third Party Library Updates >>> - pygccxml updated to v1.8.0 >>> - VNL updated to latest upstream (2016.07.06) >>> - SWIG updated to v3.0.11 >>> - KWSys updated to latest upstream (2016.11.21) >>> - HDF5 updated to v1.8.17 >>> - SCIFIO updated to latest upstream (2016.12.01) >>> - DCMTK updated to 3.6.1_20121012 >>> - CastXML to latest upstream (2016.01.28) >>> >>> * Improved Code Coverage -- we are at 85.44%! >>> - Jon Haitz-Legarreta's extensive code coverage improvements >>> - https://blog.kitware.com/why-should-we-spend-time-writing-tests/ >>> >>> * *Lots* of important bug fixes >>> >>> * And much more! See details in the log below. >>> >>> >>> Changes from v4.11rc01 to v4.11rc02 >>> ----------------------------------- >>> >>> Bradley Lowekamp (5): >>> BUG: Remove unused SimpleImageRegistrationTest baselines >>> ENH: Expose GetNextSeed method in MersenneTwiseter Generator >>> BUG: Add option for fixed seed or wall clock seed for sampling >>> BUG: Use metric random seed in v3 examples >>> BUG: Prefer setting seed at algorithm in "v4" tests. >>> >>> Francois Budin (3): >>> ENH: Update BridgeNumPy to latest version on 2017.01.08 to address >>> ITK-3511 >>> BUG: Extra \$ in doxygen comment >>> BUG: Binary include directory added only if enabled shared >>> >>> Jon Haitz Legarreta (2): >>> DOC: Document itkLabelOverlapMeasuresImageFilter methods. >>> DOC: Fix ITKImageNoise filters' doc TeX errors. >>> >>> Matthew McCormick (1): >>> BUG: Remove invalid ImageRegistration4Test.png.sha512 >>> >>> Max Smolens (1): >>> DOC: Fix itkUnsharpMaskImageFilter documentation typos >>> >>> Simon Rit (1): >>> BUG: ITK-based software was crasing when thread creation failed >>> >>> >>> Changes from v4.10.0 to v4.11rc01 >>> --------------------------------- >>> >>> Bill Lorensen (4): >>> COMP: Restore support for clang 3.0 compiler >>> COMP: Consistent use of ModifiedTimeType >>> ENH: Bump WikiExamples remote module version >>> ENH: Bump WikiExamples version >>> >>> Bradley Lowekamp (57): >>> ENH: Add registered TrasformIO's to exception >>> ENH: Use template or constant for loop stop condition >>> ENH: Updating SWIG version to 3.0.9 >>> COMP: Address VS9 ambiguous std::abs call in Haung calculator >>> COMP: Fix undefined NumericTraits::Zero and One errors with mingw64 >>> BUG: Fix segfault if ~CleanUpObjectFactory called multiple times >>> BUG: Address itkHDF5ImageIO test failures for mingw64 >>> BUG: demonstrate dynamic_cast failure when reading transforms >>> BUG: Address itkHDF5ImageIO test failures for mingw64 >>> ENH: Updating SWIG version to 3.0.10 >>> ENH: Enable CMP0063 New behavior >>> COMP: Enable hidden visibility property with vxl static libraries >>> COMP: Enable hidden visibility property with HDF5 static libraries >>> COMP: Enable hidden visibility property with HDF5 static libraries >>> BUG: Match Add2 function to AddImageFilter documentation >>> ENH: Improve support for std::complex with PowImageFilter >>> ENH: Explicitly mark required files for dependent tests >>> COMP: Bypass XCode 7.3,8 internal compilation error >>> COMP: Address CMake configuration error with itkJPEG2000Test03 >>> property >>> BUG: Correct test's REQUIRED_FILES to only the input. >>> ENH: move HessianToObjectnessMeasure filter out of Review >>> ENH: Separate TransformFactory class into separate module >>> DOC: Add links between similar label to rgb filters >>> ENH: Separate data from function calls >>> COMP: Fix changed Graft method >>> ENH: Reduce template dependencies on CalculateRotationMatrix >>> ENH: Add Functor Accessors to LabelMapToRGB filter >>> BUG: Enable VirtualDomain and FixedTransform in RegMethv4 >>> BUG: Use BSpline Order 3 for 2D in transform factory. >>> ENH: Add spline order to BSplineTransform's string id >>> ENH: Adding initial CircleCi configuration file >>> COMP: Fix float to unsigned integer conversion warnings >>> BUG: Include installed modules in ITK_MODULES_ENABLED >>> COMP: Address CMake error that ITKGPUCommon is not in export >>> COMP: Address wrong library types with VS and shared libraries >>> BUG: Ensure CreateImageIO is concurrent thread safe >>> ENH: Mark HDF5 CMake options as internal >>> COMP: Add template export declaration for ParametricPath >>> COMP: Correct TEMPLATE_EXPLICIT definition in Path module >>> ENH: Factor out common code in the TrasformFactoryBase registration >>> ENH: Add CMake variable for max transform dimension, defaults 4 >>> ENH: Create CMake module to check for private RTTI compatibility >>> ENH: Improving setting of default ITK_TEMPATE_VISIBILITY_DEFAULT >>> COMP: Correct ifndef value to allow user defined ITK_TEMPLATE_EXPORT >>> BUG: Add explicit instantiate for ObjectToObjectOptimizerBase >>> COMP: Use add_definitions for CMake 2.8.9 compatibility >>> COMP: Add warning suppression for distcc warning >>> ENH: Explicitly instantiate the optimizer base over float >>> BUG: Use IsLinear to check if transform is "affine" >>> ENH: Remove unneeded includes of random iterator header >>> ENH: Improve thread-safety for Generator, and unique New sequence >>> ENH: Do not use global random generator >>> BUG: Update v3 registration metrics to use local seed >>> ENH: Prefer setting local seed over global in tests. >>> ENH: Update SWIG to latest 3.0.11 release >>> BUG: relax testing parameters for v3 translation registration >>> BUG: Restore baseline for debug registration >>> >>> Caspar Goch (2): >>> BUG: Use printable type for RGBA pixel ostream for ITK-3501 >>> STYLE: Remove extra space for ITK-3501 >>> >>> Christina Rossmanith (1): >>> DOC: Added more details to the class Doxygen documentation. >>> >>> Davis Vigneault (2): >>> COMP: VCL_DEFINE_SPECIALIZATION not defined >>> ENH: Add remote module DVMeshNoise >>> >>> D?enan Zuki? (27): >>> BUG: Fixing CID-1355433 (IDENTICAL_BRANCHES) >>> ENH: Adding MultipleImageIterator as a remote module >>> COMP: enables TBB 4.4 back-end for VTK7's SMP >>> COMP: enabling position independent code flag for FFTW >>> ENH: adding configuration file for code reformatting tool >>> clang-format >>> ENH: Updating hooks to work with Windows/TortoiseGit/KDiff3 >>> COMP: Fixing -fPIC flag passing with Ninja build system >>> ENH: Adding RLEImage as a remote module >>> ENH: Updating uncrustify configuration to current git version >>> STYLE: better compliance with ITK style >>> STYLE: A new option in uncrustify, updating the config file >>> accordingly >>> ENH: Adding MorphologicalContourInterpolation as a remote module >>> ENH: improving documentation >>> BUG: fixing buffer growing endlessly, as reported by Timothee Evain >>> BUG: fixing buffer growing endlessly, as reported by Timothee Evain >>> STYLE: default uncrustify configuration file is less aggressive >>> COMP: Fixing warning >>> COMP: VS15 compiler fix >>> BUG: casting -9 to unsigned produced unwanted result >>> BUG: Ensuring consistency between debug and release >>> COMP: Updating LesionSizingToolkit after some recent compile fixes >>> COMP: respect option METAIO_USE_NAMESPACE >>> ENH: updating version of AnisotropicDiffusionLBR >>> ENH: adding UnsharpMaskingImageFilter >>> COMP: explicitly cast to output type >>> BUG: double call to update would cause empty output image >>> ENH: Updating RLEImage remote module. Change-log: >>> >>> Eugene Prilepin (4): >>> ENH: Add the "ITK_USE_GPU" to ITK Config >>> BUG: Fix API for set/get "LaplacianImageFilter" object >>> ENH: Add support of images types with the 'CovariantVector' pixel >>> type >>> ENH: Add python test for the 'GradientVectorFlowImageFilter' wrap >>> >>> Francois Budin (52): >>> ENH: Adding GetArrayFromImage in python itk namespace >>> ENH: Adding GetImageFromArray in python itk namespace >>> ENH: *_WRAP_* variable per external module >>> BUG: ImportImageFilter not responsible of memory management >>> ENH: New remote module GenericLabelInterpolator >>> DOC: SetNumberOfOutputs had wrong comment >>> BUG: lazyAttributes dictionary keys could be over-ridden >>> BUG: lazyAttributes dictionary keys could be over-ridden >>> BUG: Fix recent update of HDF5 (1.8.17) >>> ENH: Update SCIFIO to latest version on 08/23/2016 >>> ENH: Addition of the remote module FixedPointInverseDisplacementF >>> ield >>> ENH: Update SCIFIO to latest version on 08/29/2016 >>> BUG: Path to commit was relative instead of absolute >>> ENH: Path to SetupForDevelopment is relative, not absolute >>> BUG: LSMImageIO write function was not checking image dimension >>> BUG: LSMImageIO was not checking correctly image dimension >>> BUG: Missing associated test data >>> BUG: Missing associated test data >>> ENH: Bump CMakeLists.txt version to 4.10.1. >>> BUG: Quotes are not escaped in configured cmake file >>> ENH: Improving API of Graft() in itk::Image >>> ENH: Updating ITKGenericLabelInterpolator remote module >>> ENH: Update ITKIOTransformDCMTK remote module >>> BUG: Factory registration should depend on ITK_BUILD_SHARED >>> COMP: Updating DCMTK compilation for Ninja >>> ENH: Update version of DCMTK to 3.6.1_20121012 >>> ENH: Update SCIFIO to latest version on 10/25/2016 >>> BUG: Swig and PCRE do not support space in installation paths >>> BUG: exit() call from within piped commands was not exiting the >>> script >>> BUG: Typo in folder creation command >>> ENH: Only display message for transform registered multiple times >>> in debug >>> ENH: Image spacing must be positive >>> BUG: Supported extensions by PNG IO were not added in constructor. >>> DOC: Documentation in itkRBGAPixel and itkRGBPixel was incorrect. >>> ENH: Update SCIFIO to lastest (2016.12.01) >>> ENH: FixedPointInverseDisplacementField moved to >>> InsightSoftwareConsortium >>> COMP: Remove compilation warnings >>> ENH: Improved support of ccache and distcc >>> BUG: GPUImage regression due to API change. >>> ENH: Update Bridge Numpy (2016.12.05) >>> ENH: Update VariationalRegistration to remove warnings during >>> compilation >>> ENH: FindPythonLibs does not support both debug and release >>> python libraries >>> ENH: Update VariationalRegistration >>> BUG: Missing ITK_TEMPLATE_EXPORT in forward declaration of >>> itk::ImageBase >>> BUG: Missing ITK_TEMPLATE_EXPORT in itkOptimizerParametersHelper >>> BUG: Missing ITK_TEMPLATE_EXPORT in templated class >>> BUG: Remove linkage warnings on MacOS >>> BUG: HDF5 CMake installation directory variable had not been updated >>> BUG: Missing include header in AnisotropicDiffusionBLR remote >>> module hxx files >>> COMP: Silencing unused variable warning in itkTimeStamp >>> STYLE: Improve style checking by using module >>> ITKKWStyleOverwrite.txt >>> COMP: OS*Barrier functions are deprecated on MacOS 10.12 >>> >>> GCC-XML Upstream (1): >>> ENH: pygccxml v1.8.0 (reduced) >>> >>> Gert Wollny (1): >>> BUG: Relax vnl_complex floating point comparisons for i386 >>> >>> Gilles Filippini (1): >>> BUG: Use NATIVE_HBOOL for encoding HDF5 types. >>> >>> HDF Group (1): >>> ENH: hdf5 1.8.17-r30218 (reduced) >>> >>> Hans Johnson (23): >>> COMP: Use cmake WriteCompilerDetectionHeader >>> ENH: Use itk_compiler_detection versions >>> COMP: Need ITK_NOEXCEPT_OR_THROW macro. >>> COMP: Provide consistent granular C++11 support >>> STYLE: Use granular ITK_COMPILER_CXX_STATIC_ASSERT >>> STYLE: Prefer to use consistent definitions >>> COMP: Improve robustness of identifying the compiler standard used >>> BUG: try_compile for AlignAs were always failing >>> STYLE: Provide a well documented macro for repeated code >>> STYLE: Delete functions in consistent way >>> COMP: GPU baseclass ivars need to be protected >>> COMP: Remove unnecessary circular dependancy >>> COMP: Add long long usage for HDF5 >>> COMP: Add long long usage for HDF5 >>> STYLE: Prefer static small array to dynamic array >>> BUG: Confusing interface for FFTW wisdom files >>> STYLE: Output dimension from OutputImageType >>> STYLE: Code review style cleanups >>> STYLE: Prefer to use ITK AssertOrThrow macros >>> ENH: Add OverrideBoundaryCondition logic >>> ENH: Provide mechanism for enhanced NIFTI support >>> BUG: Use NIFTI sform/qform conventions correctly >>> ENH: Remove ambiguity about sform/qform >>> >>> Hastings Greer (8): >>> BUG: ITK-3448 Wrap itkQuadEdgeCellTraitsInfo more specifically >>> BUG: make itkTriangleHelper instantiable to ease wrapping >>> BUG: remove lsqr because of license issues ITK 1160 >>> BUG: make itkTriangleHelper instantiable to ease wrapping >>> BUG: initialize X to zero in lsmr Solve >>> BUG: Labled Point Set Registration: test multiple labels >>> BUG: Fix python wrapping of Cuberille remote module >>> BUG: Add test demonstrating Python global timestamp issue >>> >>> Jean-Christophe Fillion-Robin (5): >>> STYLE: UseITK: Set ImageIO exceptions using new convention. See >>> #3393 >>> STYLE: MeshIO: Moves virtual destructor into cpp files. See #3393 >>> STYLE: Update MeshIO factories to use RegisterFactoryInternal. See >>> #3393 >>> STYLE: MeshIO: Move MeshFileWriterException into its own file. See >>> #3393 >>> STYLE: MeshIO: Remove unused include from headers. See #3393 >>> >>> Johan Andruejol (3): >>> ENH: Add missing itkKernelFunctionBase wrapping >>> ENH: Add PrincipalComponentsAnalysis remote module >>> COMP: Override cannot be used with inline >>> >>> Jon Haitz Legarreta (216): >>> ENH: Improve itkFlatStructutingElement coverage. >>> ENH: Improve itkPathToImageFilter class coverage. >>> ENH: Improve itkIsolatedWatershedImageFilter coverage. >>> ENH: Improve itkLogSigmoidTransferFunction coverage. >>> STYLE: Improve itkBSplineTransform doc style. >>> ENH: Improve GaborKernelFunctionCoverage. >>> PERF: Remove duplicate itkMath include >>> STYLE: Move the PrintSelf method to the end >>> STYLE: Improve the itkScalarToRGBColormapImageFilter style. >>> STYLE: Delete duplicate method documentation >>> STYLE: Remove method documentation from implementation file >>> STYLE: Improve GACLevelSet classes' style >>> STYLE: Improve test style >>> ENH: Improve itkGaussianDerivativeImageFilter coverage. >>> ENH: Improve the itkScalarToRGBColormapImageFilter coverage >>> STYLE: Improve itkScalarToRGBColormap test style >>> ENH: Improve GACLSImageFilter classes' coverage >>> STYLE: Improve comment style in GACLS tests >>> ENH: Improve itkImportImageFilter coverage >>> ENH: Improve itkVideoFileReader coverage >>> ENH: Improve itkVideoFileWriter coverage >>> STYLE: Improve the itkVideoFileWriter style. >>> STYLE: Imrpove itkVideoFileReader style. >>> ENH: Improve the itkBSplineControlPointImageFunction coverage >>> STYLE: Improve the itkIntensityWindowingImageFilter style >>> STYLE: Improve the itkIntensityWindowingImageFilter test style >>> ENH: Improve ImageToSpatialObjectRegistrationMethod coverage >>> STYLE: Improve test style >>> ENH: Improve MaskNeighborhoodOperatorImageFilter coverage >>> ENH: Improve itkMeshFileWriter coverage >>> ENH: Improve RescaleIntensityImageFilter coverage. >>> ENH: Improve itkClampImageFilter coverage. >>> BUG: Fix ivar type casting in PrintSelf. >>> STYLE: Improve MRIBiasFieldCorrectionFilter style. >>> ENH: Improve MRIBiasFieldCorrectionFilter coverage. >>> ENH: Improve itkIntensityWindowingImageFilter coverage >>> BUG: Fix Run-time type information in CSV module classes. >>> ENH: Improve the itkHistogram class code coverage. >>> DOC: Fix documentation typo. >>> STYLE: Improve the ImproveRescaleIntensityImageFilter style. >>> PERF: Make the itkVideoFileReader ivars private >>> PERF: Make itkVideoFileWriter ivars private >>> ENH: Improve coverage for itk::OrientImageFilter. >>> STYLE: Improve itk::OrientImageFilter class style. >>> ENH: Improve itkCSVNumericObjectFileWriter coverage. >>> ENH: Add missing standard class typdefs. >>> ENH: Improve itkVoronoiSegmentationImageFilter coverage. >>> ENH: Improve itkVoronoiSegmentationImageFilter style. >>> STYLE: Improve the MalahanobisDistanceThresholdImageFunction style. >>> ENH: Improve coverage for itkMalahanobisDistanceThreshold. >>> ENH: Improve itk::MinimumMaximumImageCalculator coverage. >>> ENH: Improve itkMinimumMaximumImageCalculator style. >>> BUG: Fix type mismatch in test. >>> STYLE: Improve itkPolylineMaskImagefilter style. >>> ENH: Improve itkPolylineMaskImageFilter coverage. >>> ENH: Improve itkFileListVideoStyle. >>> ENH: Improve itkLandmarkBasedTransformInitializer coverage. >>> ENH: Add baseline image to itkPolylineMaskImageFilter test. >>> ENH: Improve coverage for itkBSplineTransformInitializer. >>> STYLE: Improve itkBSplineTransformInitializer doc style. >>> ENH: Enhance itkBSplineTransformInitializer implementation. >>> DOC: Fix typo in method documentation. >>> ENH: Improve the itkRegularStepGradientDescentOptimizerv4 style. >>> STYLE: Improve the itkSimpleContourExtractorImageFilter style. >>> ENH: Exercise the class' Get methods. >>> ENH: Improve coverage for itkStatisticsOpeningLabelMapFilter. >>> ENH: Improve style for itkThresholdLabelerImageFilter. >>> ENH: Improve itkThresholdLabelerImageFilter coverage. >>> ENH: Get internal ImageIO via a const macro. >>> ENH: Improve the itkSimpleContourExtractorImageFilter coverage. >>> STYLE: Improve the itkMetaArray class style. >>> ENH: Improve MetaArrayReader/Writer coverages. >>> ENH: Improve the itkCovarianceImageFunction style. >>> STYLE: Improve itkVoronoiDiagram2DGenerator style. >>> ENH: Improve VoronoiDiagram2DGenerator coverage. >>> STYLE: Improve the itkBayesianClassifierImageFilter style. >>> STYLE: Improve the itkMetaArrayWriter style. >>> ENH: Improve itkCovarianteImageFunction coverage. >>> COMP: Fix signed/unsigned int comparison warning. >>> DOC: Improve itkGrayscaleDilateImageFilter documentation. >>> DOC: Improve documentation for itkGrayscaleErodeImageFilter. >>> DOC: Improve ConfigureHistogram method documentation. >>> STYLE: Improve the itkMovingHistogramMorphologyImagefilter style. >>> BUG: Fix Superclass name in RTTI. >>> STYLE: Improve itkGaussianInterpolateImageFunction style. >>> ENH: Improve coverage for itkGaussianInterpolateImageFunction. >>> ENH: Improve itkBayesianClassifierImageFilter coverage. >>> ENH: Add itkBSplineControlPointImageFilter RTTI. >>> STYLE: Improve itkBSplinecontrolPointImageFilter style. >>> ENH: Improve itkBSplineControlPointImageFilter coverage. >>> ENH: Improve coverage for itkRegularStepGradientDescentOptimizerv4. >>> STYLE: Improve the class implementation file style. >>> STYLE: Improve the itkResampleImageFilter style. >>> DOC: Fix typo in GetMTime method doc. >>> STYLE: Remove out-of-body implementation doc >>> ENH: Improve itkResampleImageFilter coverage. >>> ENH: Improve itkAbsImageAdaptor and Filter coverage. >>> BUG: Fix itkLSMImageIO class' Superclass name. >>> ENH: Improve the itkInterpolateImagePointsFilter coverage. >>> ENH: Improve itkPowImageFilter coverage. >>> BUG: Fix ConvolutionImageFilter RTTI. >>> STYLE: Use initialization lists. >>> STYLE: Improve BinaryFunctorImageFilter style. >>> ENH: Improve itkMinimumImageFilter code coverage. >>> BUG: Fix Linux-x86_64-gcc4.1 warning on implicit conversion. >>> ENH: Improve MaximumImageFilter coverage. >>> BUG: Fix conversion to PixelType conversion. >>> COMP: Fix double to unsigned char conversion warning. >>> ENH: Improve coverage for itkNormalizeToConstantImageFilter. >>> BUG: Fix itkSquaredDifferenceErrorFunction RTTI. >>> ENH: Improve itkMeanImageFunctionCoverage. >>> ENH: Improve itkSquareImageFilter coverage. >>> STYLE: Improve the itkSquaredDifferenceErrorFunction style. >>> STYLE: Enhance style for itkNormalizeToConstantImageFilter. >>> STYLE: Improve itkMeanImageFunction style. >>> ENH: Remove unnecesary call to filter print. >>> ENH: Improve itkRegionOfInterestImageFilter coverage. >>> STYLE: Improve itkRegionOfInterestImageFilter style. >>> STYLE: Improve itkPasteImageFilter style. >>> STYLE: Improve itkJoinSeriesImageFilter style. >>> BUG: Fix itkPadLabelMapFilter RTTI Superclass. >>> COMP: Address std::cout.precision conversion warning. >>> ENH: Improve itkBayesianClassifiertImageFilter coverage. >>> ENH: Improve itkPadLabelMapFilter coverage. >>> ENH: Improve itkJoinSeriesImageFilter coverage. >>> ENH: Improve the itkPasteImageFilter coverage. >>> ENH: Improve MeanImageFilter coverage. >>> COMP: Address std::cout.precision conversion warning. >>> ENH: Improve TernaryMagnitudeImageFilter coverage. >>> ENH: Improve FFTConvolutionImageFilter coverage. >>> DOC: Fix class documentation in ternary magnitude filters. >>> ENH: Improve ConstrainedValueDifferenceImageFilter coverage. >>> ENH: Improve AndImageFilter coverage. >>> ENH: Add baseline test to itkTernaryMagnitudeImageFilter. >>> ENH: Use MD5 comparison framework in baseline test. >>> ENH: Improve itk::VectorRescaleIntensityImageFilter coverage. >>> STYLE: Improve the itkVectorRescaleIntensityImageFilter style. >>> ENH: Print missing ivar in filter PrintSelf method. >>> ENH: Improve itkComplexToImaginaryFilter coverage. >>> ENH: Improve itkComplexToPhaseImageFilter coverage. >>> ENH: Improve itkComplexToModulusImageFilter coverage. >>> ENH: Improve itkComplexToRealImageFilter coverage. >>> ENH: Improve itkVectorResampleImageFilter coverage. >>> ENH: Add GetTransform method. >>> ENH: Improve itkConstrainedValueAdditionImageFilter coverage. >>> ENH: Improve itkModulusImageFilter coverage. >>> ENH: Improve itkLog10ImageFilter coverage. >>> ENH: Imporve itkMagnitudeAndPhaseToComplexImageFilter coverage. >>> ENH: Improve itkLogImageFilter coverage. >>> ENH: Improve itkInvertIntensityImageFilter coverage. >>> STYLE: Improve itkInvertIntensityImageFilter style. >>> DOC: Add missing doc to itkInvertIntensityImageFilter. >>> STYLE: Improve itkIntensityWindowingImageFilter style. >>> STYLE: Use initialization lists. >>> ENH: Improve itkIntensityWindowingImageFilter coverage. >>> ENH: Improve itkNaryMaximumImageFilter coverage. >>> COMP: Fix std::precision type casting warning. >>> ENH: Improve itkPointSetToPointSetRegistrationMethod coverage. >>> STYLE: Improve the itkPointSetToPointSetImageRegistrationMethod >>> style. >>> ENH: Remove SmartPointers being explicitly initialized to null. >>> STYLE: Improve the itkPointSetToImageRegistrationMethod style. >>> ENH: Improve itkPointSetToImageRegistration coverage. >>> STYLE: Change the name of the itkPointSetToImageRegistrationMethod >>> test. >>> STYLE: Improve itkVectorResampleImageFilter style. >>> STYLE: Improve the itkAntiAliasBinaryImageFilter style. >>> ENH: Improve trigonometric function filters' coverage. >>> STYLE: Remove test names from std::out messages. >>> ENH: Improve Boolean Algebra ImageFilters coverage. >>> STYLE: Improve the EuclideanDistancePointMetric style. >>> ENH: Improve itkSigmoidImageFilter coverage. >>> STYLE: Improve itkCropImageFilter style. >>> ENH: Improve itkCropImageFilter coverage. >>> ENH: Improve RGBToLuminanceImageFilter and Adaptor coverage. >>> ENH: Improve itkRescaleIntensityImageFilter coverage. >>> ENH: Improve the itkMatrixSelectionImageFilter coverage. >>> ENH: Improve itkTanImageFilter and Adaptor coverage. >>> ENH: Increase itkSqrtImageFilter and Adaptor coverage. >>> ENH: Increase itkTernaryOperatorImageFilter coverage. >>> ENH: Increase itkSymmetricEigenAnalysisImageFilter coverage. >>> STYLE: Improve itkScalarImagekmeansImageFilter style. >>> STYLE: Conform to TEST_SET_GET_VALUE definition. >>> BUG: Fix uninitialized variable due to dynamic analysis defect. >>> BUG: Fix uninitialized variable defect reported by valgrind. >>> ENH: Improve the itkPointSetToPointSetRegistrationTest. >>> ENH: Improve the itkPointSetToImageRegistrationTest. >>> ENH: Increas BinaryMagnitudeImageFilter coverage. >>> STYLE: Remove test name from std output. >>> ENH: Increase MagnitudeImageFilter coverage. >>> BUG: Fix uninitialized variable defect reported by valgrind. >>> BUG: Fix Superclass name in RTTI. >>> STYLE: Improve itkFrustumSpatialFunction style. >>> STYLE: Improve the itkConicShellInteriorExteriorSpatialFunction >>> style. >>> BUG: Fix Superclass template argument list. >>> STYLE: Improve the itkTorusInteriorExteriorSpatialFunction style. >>> STYLE: Improve the itkCheckerBoardImageFilter class style. >>> ENH: Improve the itk::LabelVotingImageFilter coverage. >>> ENH: Improve itkCheckerBoardImageFilter coverage. >>> STYLE: Improve itk::LabelVotingImageFilter style. >>> STYLE: Improve the itkHoughTransform2DCirclesImageFilter style. >>> ENH: Add test for itk::FrustumSpatialFunction class. >>> ENH: Improve itkConnectedThresholdImageFilter coverage. >>> STYLE: Improve itkConnectedThresholdImageFilter style. >>> BUG: Fix FrustumSpatialFunction internal precision conversion. >>> COMP: Fix implicit conversion warning. >>> STYLE: Improve itkThresholdImageFilter style. >>> ENH: Add test for itk::TorusInteriorExteriorSpatialFunction. >>> BUG: Fix Superclass template argument list. >>> ENH: Improve itkUnsharpMaskingImageFilter implementation. >>> ENH: Improve the itkUnsharpMaskingImageFilter coverage. >>> ENH: Fix UnsharpMaskingImageFilter test inconsistencies. >>> BUG: Add missing itkTypeMacro. >>> DOC: Document the member variables. >>> BUG: Fix the itkImageSource RTTI class name, >>> STYLE: Improve itkLabelImageGaussianInterpolateImageFunction style. >>> ENH: Finish itkGaussianInterpolateImageFunction PrintSelf. >>> STYLE: Improve itkLabelOverlapMeasurementImageFilter style. >>> >>> KWSys Robot (6): >>> KWSys 2016-06-30 (96f06c8e) >>> KWSys 2016-10-23 (b630d2f5) >>> KWSys 2016-11-03 (37306a1c) >>> KWSys 2016-11-08 (2b3e2b1c) >>> KWSys 2016-11-09 (18c65411) >>> KWSys 2016-11-21 (cb55cf5a) >>> >>> Maeliss Jallais (1): >>> BUG: Add unsigned and signed short to the wrapping of vnl_matrix >>> >>> Matthew McCormick (85): >>> PERF: Simplify HilbertPath numberOfPathVertices computation. >>> BUG: CID 1355469 NNetClassifierTest4 unintended integer division. >>> BUG: Update Cuberille Remote for version check fix. >>> ENH: Bump ITK version to 4.11.0. >>> BUG: Fix HDF5ImageIO type information. >>> BUG: Fix H5File memory leak in HDF5ImageIO. >>> DOC: Collect Francois Budin's contributions in .mailmap >>> BUG: Limit WRAP_ITK_MODULES when building externally >>> STYLE: Improvements to ResourceProbe report output. >>> ENH: Add a useTabs argument to ResourceProbe::Report. >>> ENH: Add standard error measure to the ResourceProbe >>> ENH: Add itk_python_add_test function. >>> BUG: Remove VNL file from subtree merge. >>> COMP: Fix wrapping with a space in the Python include path >>> BUG: Fix PermuteAxesImageFilter pipeline method visibility >>> BUG: Initialize PermuteOrder and FlipAxes in OrientImageFilter >>> BUG: ResampleImageFilter honor isInside output of the transform >>> method >>> COMP: Avoid recursive include of itkMath.h >>> COMP: Fix VXL header installation locations >>> BUG: ClampImageFilterTest for older GCC, InPlaceOn >>> DOC: Add CONTRIBUTING.md file to the top level. >>> COMP: Update VariationalRegistration to address Doxygen warnings >>> BUG: Compiler detections file installed into ITK build tree location >>> COMP: Do not use string(TIMESTAMP. >>> COMP: Remove HDF5 -std=c99 for C++ files >>> BUG: Do not build HDF5 static library with a shared build >>> ENH: Add PerformanceBenchmarking Remote Module >>> COMP: Remove duplicate wrappings for ResampleImageFilter >>> BUG: Put Python test output files in the build tree >>> BUG: Improve HDF5ImageIO::CloseDataSet name >>> COMP: Use add_python_test PythonLazyLoadingImage >>> COMP: Address missing override it itkFactoryTestLib.cxx >>> BUG: Index,Size,Offset constructors present in Python with C++11 >>> COMP: Address missing override it itkFactoryTestLib.cxx >>> BUG: PerformanceBenchmarking as EXCLUDE_FROM_DEFAULT >>> ENH: Bump SetupForDevelopment version >>> BUG: Add missing ZLib deflate support to HDF5 >>> BUG: Address memory leak, remove NumPy build dep in BridgeNumPy >>> COMP: Do not set ITK_LIBRARY_BUILD_TYPE in ITKTransformFactory >>> COMP: Do not set ITK_LIBRARY_BUILD_TYPE in ITKTransformFactory >>> BUG: Check when ITK_WRAP_VECTOR_COMPONENTS doesn't include >>> ITK_WRAP_IMAGE_DIMS >>> BUG: RichardsonLucyDeconvolutionImageFilter with non-null input >>> Image Origin >>> BUG: Fix inconsistent Twister start with Initialize(seed) and >>> SetSeed(seed) >>> BUG: Do not hard code CMake scripts in HDF5 >>> COMP: Workaround Emscripten ITKCommon test build failure >>> COMP: Do embed fancy HDF5 libsettings with Emscripten >>> COMP: Add missing H5T_patch_vlen_file declaration >>> ENH: Bump CastXML to 2016-10-11 master. >>> COMP: Workaround Emscripten ITKCommon test build failure >>> BUG: Swap CastXML hashes for Mac OSX and Windows >>> ENH: Sync ExternalData.cmake with upstream CMake 3.6.2 >>> COMP: Fix VNL tests when cross-compiling >>> ENH: ExternalData multi-algorithm support >>> ENH: ExternalData support for data.kitware.com >>> BUG: Install missing H5pubconf.h >>> BUG: Use SpacePrecisionType in TileImageFilter >>> BUG: Use internal ExternalData_Add_Target >>> ENH: Run .sha512, .md5 simultaneous modification pre-commit check >>> BUG: Correct CastXML Windows binary >>> BUG: Support non-zero Index in LevelSetNeighborhoodExtractor >>> ENH: Add ArchiveTestingDataOnGirder.py >>> BUG: Correct AtanRegularizationHeavisideStepFunction derivative >>> ENH: Add Utilities/Maintenance/ContentLinkSynchronization.sh >>> BUG: Remove extra HessianToObjectness content links >>> ENH: Wrap SpatialFunction float types with ITK_WRAP_float >>> BUG: Bump PerformanceBenchmarking to 2016-11-04 >>> BUG: itk_python_expression_add_test too many quotes. >>> ENH: Wrap VectorImage with complex real pixel types >>> ENH: Bump PerformanceBenchmarking to 2016-11-07 >>> BUG: Do not assume zero Index in ReinitializeLevelSetImageFilter >>> ENH: Create itk_module_add_library macro >>> BUG: Update computeCodeCoverageLocally.sh for KWStyle addition >>> COMP: Install a newer version of CMake on CircleCI >>> ENH: Use GitHub Pages as the first ExternalData resource >>> ENH: Add tests to demonstrate OSX dynamic_cast failure >>> BUG: Use random seed with for MersenneTwisterRandomVariateGe >>> nerator. >>> BUG: Enable program global timestamp >>> BUG: Set random number seed in Mattes metric test >>> BUG: Notify builder that ITK_DYNAMIC_LOADING is required with >>> wrapping >>> BUG: Define ITK_DYNAMIC_LOADING before ITK_WRAP_PYTHON >>> BUG: Set random number seed mutual information metric tests >>> BUG: Wrap std::vector< itk.Point > >>> BUG: Fix wrapping of LandmarkBasedTransformInitializer >>> BUG: Rename UnsharpMaskingImageFilter to UnsharpMaskImageFilter >>> DOC: Add D?enan Zuki? to .mailmap >>> >>> Max Smolens (4): >>> COMP: CID-1266557 StatisticsLabelMapFilter uninitialized scalar >>> field >>> BUG: CID-1355438 QuadEdgeTest1 resource leaks >>> COMP: CID-1355472 MIRegistrationFunction unused value >>> COMP: Fix link errors for VNL template instantiations on Windows >>> >>> Mayeul Chassagnard (7): >>> BUG: Test added and error fixed in HDF5ImageIO >>> ENH: Update add_library TO itk_module_add_library >>> COMP: Set Policy CMP0023 target_link_libraries for >>> Modules/ThirdParty/VNLI... >>> BUG: Add ITK_TEMPLATE_EXPORT to template classes >>> BUG: Fix errors linked to dyn_cast merge >>> BUG: Restore old ITKModule_TEMPLATE_EXPORT specification for classes >>> BUG: dash3win7 dashboard build error unresolved external symbol >>> >>> Michka Popoff (3): >>> ENH: Update UpdatepygccxmlFromUpstream.sh for v1.8.0 >>> ENH: Update igenerator.py for pygccxml v1.8.0 >>> COMP: Use pygccxml's public API for apply definitions >>> >>> Pierre Barbier de Reuille (2): >>> COMP: Fix function naming error when using FFTWD >>> COMP: Fix function naming error when using FFTWD >>> >>> Sean McBride (1): >>> COMP: Bypass HDF5 bugs under TSan >>> >>> Simon Rit (2): >>> COMP: remove C++11 compiler warning for CUDA compilations >>> COMP: remove C++11 compiler warning for CUDA compilations >>> >>> Somesh Kashyap (2): >>> BUG: Override TransformCategoryType for >>> AzimuthElevationToCartesianTransform >>> BUG: -Added test case for itkAzimuthElevationToCartesianTransform >>> >>> Sumedha Singla (1): >>> ENH: Updated the git tag for ITK-Minimal-Path-Extraction remote >>> module >>> >>> Taylor Braun-Jones (4): >>> COMP: Skip path length checks if ITK_SKIP_PATH_LENGTH_CHECKS is >>> enabled >>> COMP: Fix truncation from double to float warning >>> DOC: Fix incorrect itkFactorylessNewMacro documentation >>> COMP: Only include the headers for required OpenCV modules >>> >>> Thien Nguyen (1): >>> PERF: SmapsFileParser unnecessary dynamic_cast >>> >>> VXL Maintainers (4): >>> VNL 2016-05-15 (14f97ab4) >>> VNL 2016-06-22 (23a93adb) >>> VNL 2016-06-29 (d62a2d70) >>> VNL 2016-07-06 (acfa62cc) >>> >>> Vladimir S. FONOV (1): >>> COMP: Build against GCC 5.3.1 >>> >>> Zach Williamson (2): >>> ENH: Update Remote Module Tags >>> BUG: Fix Python Wrappings in C++11 >>> >>> Ziv Yaniv (1): >>> BUG: Metric sampling percentage accepted values outside (0.0, 1.0]. >>> >>> >>> ITK Software Guide Changes >>> ---------------------------------------- >>> >>> Matt McCormick (8): >>> DOC: Move the location for obtaining the software >>> DOC: Remove reference to ITKApps >>> ENH: Bump ITK ExternalProject version to 2016-11-02 master >>> DOC: Document the ITK module registry >>> ENH: Bump ITK ExternalProject version to v4.11rc01 master >>> DOC: Update CMake hyperlinks >>> DOC: Update minimum required CMake version to 2.8.9 >>> DOC: Add section on static and shared libraries. >>> >>> >>> ITK Sphinx Examples Changes >>> ------------------------------------------- >>> >>> Matt McCormick (6): >>> BUG: Use GDCM ITK module name >>> ENH: Rename ReadDICOMSeriesAndWrite3DImage >>> BUG: Add tests for ReadDICOMSeriesAndWrite3DImage >>> ENH: Bump ITK Superbuild version to 2016-09-20 master >>> ENH: Add Python version of ReadDICOMSeriesAndWrite3DImage >>> ENH: Add Python version of CreateAnRGBImage >>> >>> Michka Popoff (5): >>> ENH: Use same Python interpreter as ITK for wrapping tests >>> BUG: Fix ResampleAnImage example (Python3) >>> ENH: Add Python example for ApplyAFilterOnlyToASpecifiedRe >>> gionOfAnImage >>> ENH: Add 7 Python examples to Core/Common >>> ENH: Add BoundingBoxOfAPointSet Python example >>> >>> >>> ----------------------------------------------------- >>> Errors or omissions? Please fix them here: >>> >>> >>> https://docs.google.com/document/d/1UQAh7_mDjps0GZYX62biTwFr >>> A54KRvf__4oeT0ymzZg/edit >>> _______________________________________________ >>> Powered by www.kitware.com >>> >>> Visit other Kitware open-source projects at >>> http://www.kitware.com/opensource/opensource.html >>> >>> Kitware offers ITK Training Courses, for more information visit: >>> http://kitware.com/products/protraining.php >>> >>> Please keep messages on-topic and check the ITK FAQ at: >>> http://www.itk.org/Wiki/ITK_FAQ >>> >>> Follow this link to subscribe/unsubscribe: >>> http://public.kitware.com/mailman/listinfo/insight-developers >>> >> >> >> _____________________________________ >> Powered by www.kitware.com >> >> Visit other Kitware open-source projects at >> http://www.kitware.com/opensource/opensource.html >> >> Kitware offers ITK Training Courses, for more information visit: >> http://www.kitware.com/products/protraining.php >> >> Please keep messages on-topic and check the ITK FAQ at: >> http://www.itk.org/Wiki/ITK_FAQ >> >> Follow this link to subscribe/unsubscribe: >> http://public.kitware.com/mailman/listinfo/insight-users >> >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From dzenanz at gmail.com Thu Jan 19 14:14:41 2017 From: dzenanz at gmail.com (=?UTF-8?B?RMW+ZW5hbiBadWtpxIc=?=) Date: Thu, 19 Jan 2017 14:14:41 -0500 Subject: [ITK-users] [ITK-dev] [ANN] ITK 4.11 Release Candidate 2 is ready for testing! In-Reply-To: References: Message-ID: ... and more: Additionally, we've added ITK and VTK libraries from GitHub to our daily compiler testing and validations. So in short, from now on we will be releasing MSVC compiler versions to the public where live GitHub ITK and VTK sources will build clean. That's a promise :). Thanks, Ulzii Luvsanbat Visual C++ Team On Thu, Jan 19, 2017 at 1:21 PM, D?enan Zuki? wrote: > A new reply in that bug report: > > Hi, there's a lag when we, the compiler team, tags the bug resolved and > the fix actually gets included in the VS release. We apologize for that, > it's just the way how engineering works to get everything ready in VS to be > shipped. This specific bug has been fixed for the VS2017 RC3 release, which > is only days away from shipping. > > If you'd you like to validate your project before that with a private > Nuget package of the compiler toolset, then please send me an email here > (batul at Microsoft dot com), and I can get you going. > > On Thu, Jan 19, 2017 at 12:46 PM, D?enan Zuki? wrote: > >> Hi Taylor, >> >> I submitted a bug >> >> report to Microsoft about it, and somebody said they will add ITK to their >> compiler test suite. Also, that crashing bug was supposedly fixed for >> "final release". >> >> Regards, >> D?enan >> >> On Thu, Jan 19, 2017 at 12:18 PM, Taylor Braun-Jones < >> taylor at braun-jones.org> wrote: >> >>> Any chance the 4.11 release could have at least some preliminary support >>> for VS2017? Right now it crashes the compiler: >>> >>> C:\src\itk\modules\core\common\include\itkPromoteType.h(97): fatal >>> error C1001: An internal error has occurred in the compiler. >>> (compiler file 'msc1.cpp', line 1469) >>> To work around this problem, try simplifying or changing the program >>> near the locations listed above. >>> Please choose the Technical Support command on the Visual C++ >>> Help menu, or open the Technical Support help file for more information >>> Internal Compiler Error in C:\PROGRA~2\MIB055~1\2017\COMM >>> UN~1\VC\Tools\MSVC\1410~1.247\bin\HostX64\x64\cl.exe. You will be >>> prompted to send an error report to Microsoft later. >>> INTERNAL COMPILER ERROR in 'C:\PROGRA~2\MIB055~1\2017\COM >>> MUN~1\VC\Tools\MSVC\1410~1.247\bin\HostX64\x64\cl.exe' >>> Please choose the Technical Support command on the Visual C++ >>> Help menu, or open the Technical Support help file for more >>> information >>> >>> Taylor >>> >>> On Mon, Jan 16, 2017 at 4:18 PM, Matt McCormick < >>> matt.mccormick at kitware.com> wrote: >>> >>>> On behalf of the Insight Toolkit community, we are proud to announce >>>> that ITK 4.11 release candidate 2 has been tagged and is available for >>>> testing! Please take this opportunity to test the new features in the >>>> release candidate. >>>> >>>> >>>> To obtain the source code, use the links: >>>> >>>> >>>> https://github.com/Kitware/ITK/archive/v4.11rc02.zip >>>> https://github.com/Kitware/ITK/archive/v4.11rc02.tar.gz >>>> >>>> or >>>> >>>> git clone https://itk.org/ITK.git >>>> cd ITK >>>> git checkout -q --detach v4.11rc02 >>>> >>>> For more details, please see the Git documentation [1]. >>>> >>>> >>>> A few selected highlights for this release: >>>> >>>> - Remote Modules were added to: perturb mesh vertices with additive >>>> gaussian noise, accurately benchmark computational performance, >>>> perform principal components analysis of scalar, vector, and mesh >>>> vertex data, create a run-length encoded memory compression scheme for >>>> itk::Image, run N-D morphological contour interpolation, interpolate >>>> multi-label images, iterate over multiple images simultaneously, and >>>> compute inverse displacement fields. >>>> - NumPy bridge support is now enabled by default with NumPy array >>>> views of multi-component images and VNL vectors and matrices. >>>> - Internal HDF5 was updated to the latest upstream version along >>>> with a number of other third-party libraries. >>>> >>>> >>>> This release introduces a new template class export specification >>>> macro, ITK_TEMPLATE_EXPORT. The macro should be used with templated >>>> classes to address failing dynamic_cast's and exception catching >>>> across binaries on Mac OSX. >>>> >>>> Bugs were addressed and improvements were made to how the >>>> pseudo-random number generator is used. Tests that rely on the random >>>> number generator should explicitly set the global seed at start: >>>> >>>> itk::Statistics::MersenneTwisterRandomVariateGenerator::GetI >>>> nstance()->SetSeed( >>>> 121212 ); >>>> >>>> To improve randomness, new instances of the generator start from a >>>> different seed; some minor differences in the output of algorithms >>>> that uses the generator, like mutual information metrics, should be >>>> expected. >>>> >>>> Additionally, output may change for registration with composite affine >>>> transforms; the v4 registration framework now uses corner sampling as >>>> opposed to random sampling to estimate their parameter scales. >>>> >>>> >>>> Please test the release candidate and share your experiences on the >>>> mailing list, issue tracker, and Gerrit Code Review. >>>> >>>> >>>> An Experimental build, which demonstrates how the test suite performs >>>> on your local build system, can be submitted to the dashboard [2] >>>> with: >>>> >>>> mkdir ../ITK-build >>>> cd ../ITK-build >>>> cmake ../ITK >>>> ctest -j 4 -M Experimental -T Configure -T Build -T Test -T Submit >>>> >>>> Visual Studio builds must also add ?-C Release? to the ctest command. >>>> >>>> Notify the mailing list if there are any unexpected failures. Testing >>>> your own applications against the RC is also appreciated. >>>> >>>> >>>> Congratulations to the 31 contributors to this release. We would >>>> especially like to recognize the new contributors: Hastings Greer, >>>> Gilles Filippini, Thien Nguyen, Caspar Goch, Mayeul Chassagnard, >>>> Somesh Kashyap, Simon Rit, Pierre Barbier de Reuille, and Maeliss >>>> Jallais. >>>> >>>> >>>> The 4.11.0 final release is scheduled for January 23rd. >>>> >>>> >>>> [1] http://www.itk.org/Wiki/ITK/Git >>>> >>>> [2] http://open.cdash.org/index.php?project=Insight >>>> >>>> >>>> New Features >>>> ------------ >>>> >>>> * Wrapping Improvements >>>> - Python GetArrayFromImage() and GetImageFromArray() from >>>> ITKBridgeNumPy are directly accessible from the Python itk namespace. >>>> - The itk package loads much faster: individual modules are loaded >>>> only when required. >>>> - Conversion of ITK images from and to NumPy array using Bridge >>>> NumPy supports RGB, RGBA, and Vector images. >>>> - VNL vectors and VNL matrices can be converted from and to NumPy >>>> objects with respectively the new couple of functions >>>> GetArrayFromVnlVector()/GetVnlVectorFromArray() and >>>> GetArrayFromVnlMatrix()/GetVnlMatrixFromArray() >>>> - The global timestamp is used across all ITK Python modules when >>>> built statically >>>> - Wrap additional classes such as KernelFunctionBase >>>> - itk_python_add_test CMake function added for Python script testing >>>> in ITK modules >>>> >>>> * New Remote Modules >>>> - DVMeshNoise >>>> - Perturbing mesh vertices with additive gaussian noise >>>> - http://hdl.handle.net/10380/3567 >>>> - PerformanceBenchmarking >>>> - Accurate benchmarking of computational performance >>>> - http://hdl.handle.net/10380/3557 >>>> - PrincipalComponentsAnalysis >>>> - Principal components analysis of scalar, vector, and mesh vertex >>>> data >>>> - http://hdl.handle.net/10380/3386 >>>> - RLEImage >>>> - Run-length encoded memory compression scheme for itk::Image >>>> - http://hdl.handle.net/10380/3562 >>>> - MorphologicalContourInterpolation >>>> - N-D morphological contour interpolation >>>> - http://hdl.handle.net/10380/3563 >>>> - GenericLabelInterpolator >>>> - A generic interpolator for multi-label images >>>> - http://hdl.handle.net/10380/3506 >>>> - MultipleImageIterator >>>> - Iterate over multiple images simultaneously >>>> - http://hdl.handle.net/10380/3455 >>>> - FixedPointInverseDisplacementField >>>> - Computes inverse displacement field >>>> - http://hdl.handle.net/10380/3222 >>>> >>>> * Core Improvements >>>> - New ITK_TEMPLATE_EXPORT for templated classes resolves >>>> cross-binary dynamic_cast on Mac OSX >>>> - New MersenneTwisterRandomVariateGenerator instances are >>>> initialized with different seeds >>>> - Use compiler feature detection in CMake for C++11 features, etc. >>>> - New CMake macro itk_module_add_library for creating libraries in >>>> ITK modules >>>> - Improved support for ccache and distcc with >>>> CMAKE__COMPILER_LAUNCHER (CMake >=3.4 required) >>>> - Support for .sha512 ExternalData content links >>>> - GitHub Pages and data.kitware.com ExternalData repositories added >>>> - GPGPU system support for C++11 >>>> - Support of new compilers: Visual Studio 15 and XCode 8.2.1 >>>> (clang-800.0.42.1) >>>> >>>> * Filtering Improvements >>>> - HessianToObjectnessMeasure moved out of the ITKReview module >>>> - New UnsharpMaskImageFilter for image edge enhancement >>>> >>>> * IO Improvements >>>> - TransformFactory class has been moved to a separate module >>>> - Spline order added to BSplineTransform identifier >>>> - Improved NIFTI orientation support >>>> >>>> * Documentation Improvements >>>> - Updates to the Software Guide, Doxygen, Wiki and Sphinx Examples >>>> >>>> * Third Party Library Updates >>>> - pygccxml updated to v1.8.0 >>>> - VNL updated to latest upstream (2016.07.06) >>>> - SWIG updated to v3.0.11 >>>> - KWSys updated to latest upstream (2016.11.21) >>>> - HDF5 updated to v1.8.17 >>>> - SCIFIO updated to latest upstream (2016.12.01) >>>> - DCMTK updated to 3.6.1_20121012 >>>> - CastXML to latest upstream (2016.01.28) >>>> >>>> * Improved Code Coverage -- we are at 85.44%! >>>> - Jon Haitz-Legarreta's extensive code coverage improvements >>>> - https://blog.kitware.com/why-should-we-spend-time-writing-tests/ >>>> >>>> * *Lots* of important bug fixes >>>> >>>> * And much more! See details in the log below. >>>> >>>> >>>> Changes from v4.11rc01 to v4.11rc02 >>>> ----------------------------------- >>>> >>>> Bradley Lowekamp (5): >>>> BUG: Remove unused SimpleImageRegistrationTest baselines >>>> ENH: Expose GetNextSeed method in MersenneTwiseter Generator >>>> BUG: Add option for fixed seed or wall clock seed for sampling >>>> BUG: Use metric random seed in v3 examples >>>> BUG: Prefer setting seed at algorithm in "v4" tests. >>>> >>>> Francois Budin (3): >>>> ENH: Update BridgeNumPy to latest version on 2017.01.08 to address >>>> ITK-3511 >>>> BUG: Extra \$ in doxygen comment >>>> BUG: Binary include directory added only if enabled shared >>>> >>>> Jon Haitz Legarreta (2): >>>> DOC: Document itkLabelOverlapMeasuresImageFilter methods. >>>> DOC: Fix ITKImageNoise filters' doc TeX errors. >>>> >>>> Matthew McCormick (1): >>>> BUG: Remove invalid ImageRegistration4Test.png.sha512 >>>> >>>> Max Smolens (1): >>>> DOC: Fix itkUnsharpMaskImageFilter documentation typos >>>> >>>> Simon Rit (1): >>>> BUG: ITK-based software was crasing when thread creation failed >>>> >>>> >>>> Changes from v4.10.0 to v4.11rc01 >>>> --------------------------------- >>>> >>>> Bill Lorensen (4): >>>> COMP: Restore support for clang 3.0 compiler >>>> COMP: Consistent use of ModifiedTimeType >>>> ENH: Bump WikiExamples remote module version >>>> ENH: Bump WikiExamples version >>>> >>>> Bradley Lowekamp (57): >>>> ENH: Add registered TrasformIO's to exception >>>> ENH: Use template or constant for loop stop condition >>>> ENH: Updating SWIG version to 3.0.9 >>>> COMP: Address VS9 ambiguous std::abs call in Haung calculator >>>> COMP: Fix undefined NumericTraits::Zero and One errors with mingw64 >>>> BUG: Fix segfault if ~CleanUpObjectFactory called multiple times >>>> BUG: Address itkHDF5ImageIO test failures for mingw64 >>>> BUG: demonstrate dynamic_cast failure when reading transforms >>>> BUG: Address itkHDF5ImageIO test failures for mingw64 >>>> ENH: Updating SWIG version to 3.0.10 >>>> ENH: Enable CMP0063 New behavior >>>> COMP: Enable hidden visibility property with vxl static libraries >>>> COMP: Enable hidden visibility property with HDF5 static libraries >>>> COMP: Enable hidden visibility property with HDF5 static libraries >>>> BUG: Match Add2 function to AddImageFilter documentation >>>> ENH: Improve support for std::complex with PowImageFilter >>>> ENH: Explicitly mark required files for dependent tests >>>> COMP: Bypass XCode 7.3,8 internal compilation error >>>> COMP: Address CMake configuration error with itkJPEG2000Test03 >>>> property >>>> BUG: Correct test's REQUIRED_FILES to only the input. >>>> ENH: move HessianToObjectnessMeasure filter out of Review >>>> ENH: Separate TransformFactory class into separate module >>>> DOC: Add links between similar label to rgb filters >>>> ENH: Separate data from function calls >>>> COMP: Fix changed Graft method >>>> ENH: Reduce template dependencies on CalculateRotationMatrix >>>> ENH: Add Functor Accessors to LabelMapToRGB filter >>>> BUG: Enable VirtualDomain and FixedTransform in RegMethv4 >>>> BUG: Use BSpline Order 3 for 2D in transform factory. >>>> ENH: Add spline order to BSplineTransform's string id >>>> ENH: Adding initial CircleCi configuration file >>>> COMP: Fix float to unsigned integer conversion warnings >>>> BUG: Include installed modules in ITK_MODULES_ENABLED >>>> COMP: Address CMake error that ITKGPUCommon is not in export >>>> COMP: Address wrong library types with VS and shared libraries >>>> BUG: Ensure CreateImageIO is concurrent thread safe >>>> ENH: Mark HDF5 CMake options as internal >>>> COMP: Add template export declaration for ParametricPath >>>> COMP: Correct TEMPLATE_EXPLICIT definition in Path module >>>> ENH: Factor out common code in the TrasformFactoryBase registration >>>> ENH: Add CMake variable for max transform dimension, defaults 4 >>>> ENH: Create CMake module to check for private RTTI compatibility >>>> ENH: Improving setting of default ITK_TEMPATE_VISIBILITY_DEFAULT >>>> COMP: Correct ifndef value to allow user defined >>>> ITK_TEMPLATE_EXPORT >>>> BUG: Add explicit instantiate for ObjectToObjectOptimizerBase >>>> COMP: Use add_definitions for CMake 2.8.9 compatibility >>>> COMP: Add warning suppression for distcc warning >>>> ENH: Explicitly instantiate the optimizer base over float >>>> BUG: Use IsLinear to check if transform is "affine" >>>> ENH: Remove unneeded includes of random iterator header >>>> ENH: Improve thread-safety for Generator, and unique New sequence >>>> ENH: Do not use global random generator >>>> BUG: Update v3 registration metrics to use local seed >>>> ENH: Prefer setting local seed over global in tests. >>>> ENH: Update SWIG to latest 3.0.11 release >>>> BUG: relax testing parameters for v3 translation registration >>>> BUG: Restore baseline for debug registration >>>> >>>> Caspar Goch (2): >>>> BUG: Use printable type for RGBA pixel ostream for ITK-3501 >>>> STYLE: Remove extra space for ITK-3501 >>>> >>>> Christina Rossmanith (1): >>>> DOC: Added more details to the class Doxygen documentation. >>>> >>>> Davis Vigneault (2): >>>> COMP: VCL_DEFINE_SPECIALIZATION not defined >>>> ENH: Add remote module DVMeshNoise >>>> >>>> D?enan Zuki? (27): >>>> BUG: Fixing CID-1355433 (IDENTICAL_BRANCHES) >>>> ENH: Adding MultipleImageIterator as a remote module >>>> COMP: enables TBB 4.4 back-end for VTK7's SMP >>>> COMP: enabling position independent code flag for FFTW >>>> ENH: adding configuration file for code reformatting tool >>>> clang-format >>>> ENH: Updating hooks to work with Windows/TortoiseGit/KDiff3 >>>> COMP: Fixing -fPIC flag passing with Ninja build system >>>> ENH: Adding RLEImage as a remote module >>>> ENH: Updating uncrustify configuration to current git version >>>> STYLE: better compliance with ITK style >>>> STYLE: A new option in uncrustify, updating the config file >>>> accordingly >>>> ENH: Adding MorphologicalContourInterpolation as a remote module >>>> ENH: improving documentation >>>> BUG: fixing buffer growing endlessly, as reported by Timothee Evain >>>> BUG: fixing buffer growing endlessly, as reported by Timothee Evain >>>> STYLE: default uncrustify configuration file is less aggressive >>>> COMP: Fixing warning >>>> COMP: VS15 compiler fix >>>> BUG: casting -9 to unsigned produced unwanted result >>>> BUG: Ensuring consistency between debug and release >>>> COMP: Updating LesionSizingToolkit after some recent compile fixes >>>> COMP: respect option METAIO_USE_NAMESPACE >>>> ENH: updating version of AnisotropicDiffusionLBR >>>> ENH: adding UnsharpMaskingImageFilter >>>> COMP: explicitly cast to output type >>>> BUG: double call to update would cause empty output image >>>> ENH: Updating RLEImage remote module. Change-log: >>>> >>>> Eugene Prilepin (4): >>>> ENH: Add the "ITK_USE_GPU" to ITK Config >>>> BUG: Fix API for set/get "LaplacianImageFilter" object >>>> ENH: Add support of images types with the 'CovariantVector' pixel >>>> type >>>> ENH: Add python test for the 'GradientVectorFlowImageFilter' wrap >>>> >>>> Francois Budin (52): >>>> ENH: Adding GetArrayFromImage in python itk namespace >>>> ENH: Adding GetImageFromArray in python itk namespace >>>> ENH: *_WRAP_* variable per external module >>>> BUG: ImportImageFilter not responsible of memory management >>>> ENH: New remote module GenericLabelInterpolator >>>> DOC: SetNumberOfOutputs had wrong comment >>>> BUG: lazyAttributes dictionary keys could be over-ridden >>>> BUG: lazyAttributes dictionary keys could be over-ridden >>>> BUG: Fix recent update of HDF5 (1.8.17) >>>> ENH: Update SCIFIO to latest version on 08/23/2016 >>>> ENH: Addition of the remote module FixedPointInverseDisplacementF >>>> ield >>>> ENH: Update SCIFIO to latest version on 08/29/2016 >>>> BUG: Path to commit was relative instead of absolute >>>> ENH: Path to SetupForDevelopment is relative, not absolute >>>> BUG: LSMImageIO write function was not checking image dimension >>>> BUG: LSMImageIO was not checking correctly image dimension >>>> BUG: Missing associated test data >>>> BUG: Missing associated test data >>>> ENH: Bump CMakeLists.txt version to 4.10.1. >>>> BUG: Quotes are not escaped in configured cmake file >>>> ENH: Improving API of Graft() in itk::Image >>>> ENH: Updating ITKGenericLabelInterpolator remote module >>>> ENH: Update ITKIOTransformDCMTK remote module >>>> BUG: Factory registration should depend on ITK_BUILD_SHARED >>>> COMP: Updating DCMTK compilation for Ninja >>>> ENH: Update version of DCMTK to 3.6.1_20121012 >>>> ENH: Update SCIFIO to latest version on 10/25/2016 >>>> BUG: Swig and PCRE do not support space in installation paths >>>> BUG: exit() call from within piped commands was not exiting the >>>> script >>>> BUG: Typo in folder creation command >>>> ENH: Only display message for transform registered multiple times >>>> in debug >>>> ENH: Image spacing must be positive >>>> BUG: Supported extensions by PNG IO were not added in constructor. >>>> DOC: Documentation in itkRBGAPixel and itkRGBPixel was incorrect. >>>> ENH: Update SCIFIO to lastest (2016.12.01) >>>> ENH: FixedPointInverseDisplacementField moved to >>>> InsightSoftwareConsortium >>>> COMP: Remove compilation warnings >>>> ENH: Improved support of ccache and distcc >>>> BUG: GPUImage regression due to API change. >>>> ENH: Update Bridge Numpy (2016.12.05) >>>> ENH: Update VariationalRegistration to remove warnings during >>>> compilation >>>> ENH: FindPythonLibs does not support both debug and release >>>> python libraries >>>> ENH: Update VariationalRegistration >>>> BUG: Missing ITK_TEMPLATE_EXPORT in forward declaration of >>>> itk::ImageBase >>>> BUG: Missing ITK_TEMPLATE_EXPORT in itkOptimizerParametersHelper >>>> BUG: Missing ITK_TEMPLATE_EXPORT in templated class >>>> BUG: Remove linkage warnings on MacOS >>>> BUG: HDF5 CMake installation directory variable had not been >>>> updated >>>> BUG: Missing include header in AnisotropicDiffusionBLR remote >>>> module hxx files >>>> COMP: Silencing unused variable warning in itkTimeStamp >>>> STYLE: Improve style checking by using module >>>> ITKKWStyleOverwrite.txt >>>> COMP: OS*Barrier functions are deprecated on MacOS 10.12 >>>> >>>> GCC-XML Upstream (1): >>>> ENH: pygccxml v1.8.0 (reduced) >>>> >>>> Gert Wollny (1): >>>> BUG: Relax vnl_complex floating point comparisons for i386 >>>> >>>> Gilles Filippini (1): >>>> BUG: Use NATIVE_HBOOL for encoding HDF5 types. >>>> >>>> HDF Group (1): >>>> ENH: hdf5 1.8.17-r30218 (reduced) >>>> >>>> Hans Johnson (23): >>>> COMP: Use cmake WriteCompilerDetectionHeader >>>> ENH: Use itk_compiler_detection versions >>>> COMP: Need ITK_NOEXCEPT_OR_THROW macro. >>>> COMP: Provide consistent granular C++11 support >>>> STYLE: Use granular ITK_COMPILER_CXX_STATIC_ASSERT >>>> STYLE: Prefer to use consistent definitions >>>> COMP: Improve robustness of identifying the compiler standard used >>>> BUG: try_compile for AlignAs were always failing >>>> STYLE: Provide a well documented macro for repeated code >>>> STYLE: Delete functions in consistent way >>>> COMP: GPU baseclass ivars need to be protected >>>> COMP: Remove unnecessary circular dependancy >>>> COMP: Add long long usage for HDF5 >>>> COMP: Add long long usage for HDF5 >>>> STYLE: Prefer static small array to dynamic array >>>> BUG: Confusing interface for FFTW wisdom files >>>> STYLE: Output dimension from OutputImageType >>>> STYLE: Code review style cleanups >>>> STYLE: Prefer to use ITK AssertOrThrow macros >>>> ENH: Add OverrideBoundaryCondition logic >>>> ENH: Provide mechanism for enhanced NIFTI support >>>> BUG: Use NIFTI sform/qform conventions correctly >>>> ENH: Remove ambiguity about sform/qform >>>> >>>> Hastings Greer (8): >>>> BUG: ITK-3448 Wrap itkQuadEdgeCellTraitsInfo more specifically >>>> BUG: make itkTriangleHelper instantiable to ease wrapping >>>> BUG: remove lsqr because of license issues ITK 1160 >>>> BUG: make itkTriangleHelper instantiable to ease wrapping >>>> BUG: initialize X to zero in lsmr Solve >>>> BUG: Labled Point Set Registration: test multiple labels >>>> BUG: Fix python wrapping of Cuberille remote module >>>> BUG: Add test demonstrating Python global timestamp issue >>>> >>>> Jean-Christophe Fillion-Robin (5): >>>> STYLE: UseITK: Set ImageIO exceptions using new convention. See >>>> #3393 >>>> STYLE: MeshIO: Moves virtual destructor into cpp files. See #3393 >>>> STYLE: Update MeshIO factories to use RegisterFactoryInternal. See >>>> #3393 >>>> STYLE: MeshIO: Move MeshFileWriterException into its own file. See >>>> #3393 >>>> STYLE: MeshIO: Remove unused include from headers. See #3393 >>>> >>>> Johan Andruejol (3): >>>> ENH: Add missing itkKernelFunctionBase wrapping >>>> ENH: Add PrincipalComponentsAnalysis remote module >>>> COMP: Override cannot be used with inline >>>> >>>> Jon Haitz Legarreta (216): >>>> ENH: Improve itkFlatStructutingElement coverage. >>>> ENH: Improve itkPathToImageFilter class coverage. >>>> ENH: Improve itkIsolatedWatershedImageFilter coverage. >>>> ENH: Improve itkLogSigmoidTransferFunction coverage. >>>> STYLE: Improve itkBSplineTransform doc style. >>>> ENH: Improve GaborKernelFunctionCoverage. >>>> PERF: Remove duplicate itkMath include >>>> STYLE: Move the PrintSelf method to the end >>>> STYLE: Improve the itkScalarToRGBColormapImageFilter style. >>>> STYLE: Delete duplicate method documentation >>>> STYLE: Remove method documentation from implementation file >>>> STYLE: Improve GACLevelSet classes' style >>>> STYLE: Improve test style >>>> ENH: Improve itkGaussianDerivativeImageFilter coverage. >>>> ENH: Improve the itkScalarToRGBColormapImageFilter coverage >>>> STYLE: Improve itkScalarToRGBColormap test style >>>> ENH: Improve GACLSImageFilter classes' coverage >>>> STYLE: Improve comment style in GACLS tests >>>> ENH: Improve itkImportImageFilter coverage >>>> ENH: Improve itkVideoFileReader coverage >>>> ENH: Improve itkVideoFileWriter coverage >>>> STYLE: Improve the itkVideoFileWriter style. >>>> STYLE: Imrpove itkVideoFileReader style. >>>> ENH: Improve the itkBSplineControlPointImageFunction coverage >>>> STYLE: Improve the itkIntensityWindowingImageFilter style >>>> STYLE: Improve the itkIntensityWindowingImageFilter test style >>>> ENH: Improve ImageToSpatialObjectRegistrationMethod coverage >>>> STYLE: Improve test style >>>> ENH: Improve MaskNeighborhoodOperatorImageFilter coverage >>>> ENH: Improve itkMeshFileWriter coverage >>>> ENH: Improve RescaleIntensityImageFilter coverage. >>>> ENH: Improve itkClampImageFilter coverage. >>>> BUG: Fix ivar type casting in PrintSelf. >>>> STYLE: Improve MRIBiasFieldCorrectionFilter style. >>>> ENH: Improve MRIBiasFieldCorrectionFilter coverage. >>>> ENH: Improve itkIntensityWindowingImageFilter coverage >>>> BUG: Fix Run-time type information in CSV module classes. >>>> ENH: Improve the itkHistogram class code coverage. >>>> DOC: Fix documentation typo. >>>> STYLE: Improve the ImproveRescaleIntensityImageFilter style. >>>> PERF: Make the itkVideoFileReader ivars private >>>> PERF: Make itkVideoFileWriter ivars private >>>> ENH: Improve coverage for itk::OrientImageFilter. >>>> STYLE: Improve itk::OrientImageFilter class style. >>>> ENH: Improve itkCSVNumericObjectFileWriter coverage. >>>> ENH: Add missing standard class typdefs. >>>> ENH: Improve itkVoronoiSegmentationImageFilter coverage. >>>> ENH: Improve itkVoronoiSegmentationImageFilter style. >>>> STYLE: Improve the MalahanobisDistanceThresholdImageFunction >>>> style. >>>> ENH: Improve coverage for itkMalahanobisDistanceThreshold. >>>> ENH: Improve itk::MinimumMaximumImageCalculator coverage. >>>> ENH: Improve itkMinimumMaximumImageCalculator style. >>>> BUG: Fix type mismatch in test. >>>> STYLE: Improve itkPolylineMaskImagefilter style. >>>> ENH: Improve itkPolylineMaskImageFilter coverage. >>>> ENH: Improve itkFileListVideoStyle. >>>> ENH: Improve itkLandmarkBasedTransformInitializer coverage. >>>> ENH: Add baseline image to itkPolylineMaskImageFilter test. >>>> ENH: Improve coverage for itkBSplineTransformInitializer. >>>> STYLE: Improve itkBSplineTransformInitializer doc style. >>>> ENH: Enhance itkBSplineTransformInitializer implementation. >>>> DOC: Fix typo in method documentation. >>>> ENH: Improve the itkRegularStepGradientDescentOptimizerv4 style. >>>> STYLE: Improve the itkSimpleContourExtractorImageFilter style. >>>> ENH: Exercise the class' Get methods. >>>> ENH: Improve coverage for itkStatisticsOpeningLabelMapFilter. >>>> ENH: Improve style for itkThresholdLabelerImageFilter. >>>> ENH: Improve itkThresholdLabelerImageFilter coverage. >>>> ENH: Get internal ImageIO via a const macro. >>>> ENH: Improve the itkSimpleContourExtractorImageFilter coverage. >>>> STYLE: Improve the itkMetaArray class style. >>>> ENH: Improve MetaArrayReader/Writer coverages. >>>> ENH: Improve the itkCovarianceImageFunction style. >>>> STYLE: Improve itkVoronoiDiagram2DGenerator style. >>>> ENH: Improve VoronoiDiagram2DGenerator coverage. >>>> STYLE: Improve the itkBayesianClassifierImageFilter style. >>>> STYLE: Improve the itkMetaArrayWriter style. >>>> ENH: Improve itkCovarianteImageFunction coverage. >>>> COMP: Fix signed/unsigned int comparison warning. >>>> DOC: Improve itkGrayscaleDilateImageFilter documentation. >>>> DOC: Improve documentation for itkGrayscaleErodeImageFilter. >>>> DOC: Improve ConfigureHistogram method documentation. >>>> STYLE: Improve the itkMovingHistogramMorphologyImagefilter style. >>>> BUG: Fix Superclass name in RTTI. >>>> STYLE: Improve itkGaussianInterpolateImageFunction style. >>>> ENH: Improve coverage for itkGaussianInterpolateImageFunction. >>>> ENH: Improve itkBayesianClassifierImageFilter coverage. >>>> ENH: Add itkBSplineControlPointImageFilter RTTI. >>>> STYLE: Improve itkBSplinecontrolPointImageFilter style. >>>> ENH: Improve itkBSplineControlPointImageFilter coverage. >>>> ENH: Improve coverage for itkRegularStepGradientDescentO >>>> ptimizerv4. >>>> STYLE: Improve the class implementation file style. >>>> STYLE: Improve the itkResampleImageFilter style. >>>> DOC: Fix typo in GetMTime method doc. >>>> STYLE: Remove out-of-body implementation doc >>>> ENH: Improve itkResampleImageFilter coverage. >>>> ENH: Improve itkAbsImageAdaptor and Filter coverage. >>>> BUG: Fix itkLSMImageIO class' Superclass name. >>>> ENH: Improve the itkInterpolateImagePointsFilter coverage. >>>> ENH: Improve itkPowImageFilter coverage. >>>> BUG: Fix ConvolutionImageFilter RTTI. >>>> STYLE: Use initialization lists. >>>> STYLE: Improve BinaryFunctorImageFilter style. >>>> ENH: Improve itkMinimumImageFilter code coverage. >>>> BUG: Fix Linux-x86_64-gcc4.1 warning on implicit conversion. >>>> ENH: Improve MaximumImageFilter coverage. >>>> BUG: Fix conversion to PixelType conversion. >>>> COMP: Fix double to unsigned char conversion warning. >>>> ENH: Improve coverage for itkNormalizeToConstantImageFilter. >>>> BUG: Fix itkSquaredDifferenceErrorFunction RTTI. >>>> ENH: Improve itkMeanImageFunctionCoverage. >>>> ENH: Improve itkSquareImageFilter coverage. >>>> STYLE: Improve the itkSquaredDifferenceErrorFunction style. >>>> STYLE: Enhance style for itkNormalizeToConstantImageFilter. >>>> STYLE: Improve itkMeanImageFunction style. >>>> ENH: Remove unnecesary call to filter print. >>>> ENH: Improve itkRegionOfInterestImageFilter coverage. >>>> STYLE: Improve itkRegionOfInterestImageFilter style. >>>> STYLE: Improve itkPasteImageFilter style. >>>> STYLE: Improve itkJoinSeriesImageFilter style. >>>> BUG: Fix itkPadLabelMapFilter RTTI Superclass. >>>> COMP: Address std::cout.precision conversion warning. >>>> ENH: Improve itkBayesianClassifiertImageFilter coverage. >>>> ENH: Improve itkPadLabelMapFilter coverage. >>>> ENH: Improve itkJoinSeriesImageFilter coverage. >>>> ENH: Improve the itkPasteImageFilter coverage. >>>> ENH: Improve MeanImageFilter coverage. >>>> COMP: Address std::cout.precision conversion warning. >>>> ENH: Improve TernaryMagnitudeImageFilter coverage. >>>> ENH: Improve FFTConvolutionImageFilter coverage. >>>> DOC: Fix class documentation in ternary magnitude filters. >>>> ENH: Improve ConstrainedValueDifferenceImageFilter coverage. >>>> ENH: Improve AndImageFilter coverage. >>>> ENH: Add baseline test to itkTernaryMagnitudeImageFilter. >>>> ENH: Use MD5 comparison framework in baseline test. >>>> ENH: Improve itk::VectorRescaleIntensityImageFilter coverage. >>>> STYLE: Improve the itkVectorRescaleIntensityImageFilter style. >>>> ENH: Print missing ivar in filter PrintSelf method. >>>> ENH: Improve itkComplexToImaginaryFilter coverage. >>>> ENH: Improve itkComplexToPhaseImageFilter coverage. >>>> ENH: Improve itkComplexToModulusImageFilter coverage. >>>> ENH: Improve itkComplexToRealImageFilter coverage. >>>> ENH: Improve itkVectorResampleImageFilter coverage. >>>> ENH: Add GetTransform method. >>>> ENH: Improve itkConstrainedValueAdditionImageFilter coverage. >>>> ENH: Improve itkModulusImageFilter coverage. >>>> ENH: Improve itkLog10ImageFilter coverage. >>>> ENH: Imporve itkMagnitudeAndPhaseToComplexImageFilter coverage. >>>> ENH: Improve itkLogImageFilter coverage. >>>> ENH: Improve itkInvertIntensityImageFilter coverage. >>>> STYLE: Improve itkInvertIntensityImageFilter style. >>>> DOC: Add missing doc to itkInvertIntensityImageFilter. >>>> STYLE: Improve itkIntensityWindowingImageFilter style. >>>> STYLE: Use initialization lists. >>>> ENH: Improve itkIntensityWindowingImageFilter coverage. >>>> ENH: Improve itkNaryMaximumImageFilter coverage. >>>> COMP: Fix std::precision type casting warning. >>>> ENH: Improve itkPointSetToPointSetRegistrationMethod coverage. >>>> STYLE: Improve the itkPointSetToPointSetImageRegistrationMethod >>>> style. >>>> ENH: Remove SmartPointers being explicitly initialized to null. >>>> STYLE: Improve the itkPointSetToImageRegistrationMethod style. >>>> ENH: Improve itkPointSetToImageRegistration coverage. >>>> STYLE: Change the name of the itkPointSetToImageRegistrationMethod >>>> test. >>>> STYLE: Improve itkVectorResampleImageFilter style. >>>> STYLE: Improve the itkAntiAliasBinaryImageFilter style. >>>> ENH: Improve trigonometric function filters' coverage. >>>> STYLE: Remove test names from std::out messages. >>>> ENH: Improve Boolean Algebra ImageFilters coverage. >>>> STYLE: Improve the EuclideanDistancePointMetric style. >>>> ENH: Improve itkSigmoidImageFilter coverage. >>>> STYLE: Improve itkCropImageFilter style. >>>> ENH: Improve itkCropImageFilter coverage. >>>> ENH: Improve RGBToLuminanceImageFilter and Adaptor coverage. >>>> ENH: Improve itkRescaleIntensityImageFilter coverage. >>>> ENH: Improve the itkMatrixSelectionImageFilter coverage. >>>> ENH: Improve itkTanImageFilter and Adaptor coverage. >>>> ENH: Increase itkSqrtImageFilter and Adaptor coverage. >>>> ENH: Increase itkTernaryOperatorImageFilter coverage. >>>> ENH: Increase itkSymmetricEigenAnalysisImageFilter coverage. >>>> STYLE: Improve itkScalarImagekmeansImageFilter style. >>>> STYLE: Conform to TEST_SET_GET_VALUE definition. >>>> BUG: Fix uninitialized variable due to dynamic analysis defect. >>>> BUG: Fix uninitialized variable defect reported by valgrind. >>>> ENH: Improve the itkPointSetToPointSetRegistrationTest. >>>> ENH: Improve the itkPointSetToImageRegistrationTest. >>>> ENH: Increas BinaryMagnitudeImageFilter coverage. >>>> STYLE: Remove test name from std output. >>>> ENH: Increase MagnitudeImageFilter coverage. >>>> BUG: Fix uninitialized variable defect reported by valgrind. >>>> BUG: Fix Superclass name in RTTI. >>>> STYLE: Improve itkFrustumSpatialFunction style. >>>> STYLE: Improve the itkConicShellInteriorExteriorSpatialFunction >>>> style. >>>> BUG: Fix Superclass template argument list. >>>> STYLE: Improve the itkTorusInteriorExteriorSpatialFunction style. >>>> STYLE: Improve the itkCheckerBoardImageFilter class style. >>>> ENH: Improve the itk::LabelVotingImageFilter coverage. >>>> ENH: Improve itkCheckerBoardImageFilter coverage. >>>> STYLE: Improve itk::LabelVotingImageFilter style. >>>> STYLE: Improve the itkHoughTransform2DCirclesImageFilter style. >>>> ENH: Add test for itk::FrustumSpatialFunction class. >>>> ENH: Improve itkConnectedThresholdImageFilter coverage. >>>> STYLE: Improve itkConnectedThresholdImageFilter style. >>>> BUG: Fix FrustumSpatialFunction internal precision conversion. >>>> COMP: Fix implicit conversion warning. >>>> STYLE: Improve itkThresholdImageFilter style. >>>> ENH: Add test for itk::TorusInteriorExteriorSpatialFunction. >>>> BUG: Fix Superclass template argument list. >>>> ENH: Improve itkUnsharpMaskingImageFilter implementation. >>>> ENH: Improve the itkUnsharpMaskingImageFilter coverage. >>>> ENH: Fix UnsharpMaskingImageFilter test inconsistencies. >>>> BUG: Add missing itkTypeMacro. >>>> DOC: Document the member variables. >>>> BUG: Fix the itkImageSource RTTI class name, >>>> STYLE: Improve itkLabelImageGaussianInterpolateImageFunction >>>> style. >>>> ENH: Finish itkGaussianInterpolateImageFunction PrintSelf. >>>> STYLE: Improve itkLabelOverlapMeasurementImageFilter style. >>>> >>>> KWSys Robot (6): >>>> KWSys 2016-06-30 (96f06c8e) >>>> KWSys 2016-10-23 (b630d2f5) >>>> KWSys 2016-11-03 (37306a1c) >>>> KWSys 2016-11-08 (2b3e2b1c) >>>> KWSys 2016-11-09 (18c65411) >>>> KWSys 2016-11-21 (cb55cf5a) >>>> >>>> Maeliss Jallais (1): >>>> BUG: Add unsigned and signed short to the wrapping of vnl_matrix >>>> >>>> Matthew McCormick (85): >>>> PERF: Simplify HilbertPath numberOfPathVertices computation. >>>> BUG: CID 1355469 NNetClassifierTest4 unintended integer division. >>>> BUG: Update Cuberille Remote for version check fix. >>>> ENH: Bump ITK version to 4.11.0. >>>> BUG: Fix HDF5ImageIO type information. >>>> BUG: Fix H5File memory leak in HDF5ImageIO. >>>> DOC: Collect Francois Budin's contributions in .mailmap >>>> BUG: Limit WRAP_ITK_MODULES when building externally >>>> STYLE: Improvements to ResourceProbe report output. >>>> ENH: Add a useTabs argument to ResourceProbe::Report. >>>> ENH: Add standard error measure to the ResourceProbe >>>> ENH: Add itk_python_add_test function. >>>> BUG: Remove VNL file from subtree merge. >>>> COMP: Fix wrapping with a space in the Python include path >>>> BUG: Fix PermuteAxesImageFilter pipeline method visibility >>>> BUG: Initialize PermuteOrder and FlipAxes in OrientImageFilter >>>> BUG: ResampleImageFilter honor isInside output of the transform >>>> method >>>> COMP: Avoid recursive include of itkMath.h >>>> COMP: Fix VXL header installation locations >>>> BUG: ClampImageFilterTest for older GCC, InPlaceOn >>>> DOC: Add CONTRIBUTING.md file to the top level. >>>> COMP: Update VariationalRegistration to address Doxygen warnings >>>> BUG: Compiler detections file installed into ITK build tree >>>> location >>>> COMP: Do not use string(TIMESTAMP. >>>> COMP: Remove HDF5 -std=c99 for C++ files >>>> BUG: Do not build HDF5 static library with a shared build >>>> ENH: Add PerformanceBenchmarking Remote Module >>>> COMP: Remove duplicate wrappings for ResampleImageFilter >>>> BUG: Put Python test output files in the build tree >>>> BUG: Improve HDF5ImageIO::CloseDataSet name >>>> COMP: Use add_python_test PythonLazyLoadingImage >>>> COMP: Address missing override it itkFactoryTestLib.cxx >>>> BUG: Index,Size,Offset constructors present in Python with C++11 >>>> COMP: Address missing override it itkFactoryTestLib.cxx >>>> BUG: PerformanceBenchmarking as EXCLUDE_FROM_DEFAULT >>>> ENH: Bump SetupForDevelopment version >>>> BUG: Add missing ZLib deflate support to HDF5 >>>> BUG: Address memory leak, remove NumPy build dep in BridgeNumPy >>>> COMP: Do not set ITK_LIBRARY_BUILD_TYPE in ITKTransformFactory >>>> COMP: Do not set ITK_LIBRARY_BUILD_TYPE in ITKTransformFactory >>>> BUG: Check when ITK_WRAP_VECTOR_COMPONENTS doesn't include >>>> ITK_WRAP_IMAGE_DIMS >>>> BUG: RichardsonLucyDeconvolutionImageFilter with non-null input >>>> Image Origin >>>> BUG: Fix inconsistent Twister start with Initialize(seed) and >>>> SetSeed(seed) >>>> BUG: Do not hard code CMake scripts in HDF5 >>>> COMP: Workaround Emscripten ITKCommon test build failure >>>> COMP: Do embed fancy HDF5 libsettings with Emscripten >>>> COMP: Add missing H5T_patch_vlen_file declaration >>>> ENH: Bump CastXML to 2016-10-11 master. >>>> COMP: Workaround Emscripten ITKCommon test build failure >>>> BUG: Swap CastXML hashes for Mac OSX and Windows >>>> ENH: Sync ExternalData.cmake with upstream CMake 3.6.2 >>>> COMP: Fix VNL tests when cross-compiling >>>> ENH: ExternalData multi-algorithm support >>>> ENH: ExternalData support for data.kitware.com >>>> BUG: Install missing H5pubconf.h >>>> BUG: Use SpacePrecisionType in TileImageFilter >>>> BUG: Use internal ExternalData_Add_Target >>>> ENH: Run .sha512, .md5 simultaneous modification pre-commit check >>>> BUG: Correct CastXML Windows binary >>>> BUG: Support non-zero Index in LevelSetNeighborhoodExtractor >>>> ENH: Add ArchiveTestingDataOnGirder.py >>>> BUG: Correct AtanRegularizationHeavisideStepFunction derivative >>>> ENH: Add Utilities/Maintenance/ContentLinkSynchronization.sh >>>> BUG: Remove extra HessianToObjectness content links >>>> ENH: Wrap SpatialFunction float types with ITK_WRAP_float >>>> BUG: Bump PerformanceBenchmarking to 2016-11-04 >>>> BUG: itk_python_expression_add_test too many quotes. >>>> ENH: Wrap VectorImage with complex real pixel types >>>> ENH: Bump PerformanceBenchmarking to 2016-11-07 >>>> BUG: Do not assume zero Index in ReinitializeLevelSetImageFilter >>>> ENH: Create itk_module_add_library macro >>>> BUG: Update computeCodeCoverageLocally.sh for KWStyle addition >>>> COMP: Install a newer version of CMake on CircleCI >>>> ENH: Use GitHub Pages as the first ExternalData resource >>>> ENH: Add tests to demonstrate OSX dynamic_cast failure >>>> BUG: Use random seed with for MersenneTwisterRandomVariateGe >>>> nerator. >>>> BUG: Enable program global timestamp >>>> BUG: Set random number seed in Mattes metric test >>>> BUG: Notify builder that ITK_DYNAMIC_LOADING is required with >>>> wrapping >>>> BUG: Define ITK_DYNAMIC_LOADING before ITK_WRAP_PYTHON >>>> BUG: Set random number seed mutual information metric tests >>>> BUG: Wrap std::vector< itk.Point > >>>> BUG: Fix wrapping of LandmarkBasedTransformInitializer >>>> BUG: Rename UnsharpMaskingImageFilter to UnsharpMaskImageFilter >>>> DOC: Add D?enan Zuki? to .mailmap >>>> >>>> Max Smolens (4): >>>> COMP: CID-1266557 StatisticsLabelMapFilter uninitialized scalar >>>> field >>>> BUG: CID-1355438 QuadEdgeTest1 resource leaks >>>> COMP: CID-1355472 MIRegistrationFunction unused value >>>> COMP: Fix link errors for VNL template instantiations on Windows >>>> >>>> Mayeul Chassagnard (7): >>>> BUG: Test added and error fixed in HDF5ImageIO >>>> ENH: Update add_library TO itk_module_add_library >>>> COMP: Set Policy CMP0023 target_link_libraries for >>>> Modules/ThirdParty/VNLI... >>>> BUG: Add ITK_TEMPLATE_EXPORT to template classes >>>> BUG: Fix errors linked to dyn_cast merge >>>> BUG: Restore old ITKModule_TEMPLATE_EXPORT specification for >>>> classes >>>> BUG: dash3win7 dashboard build error unresolved external symbol >>>> >>>> Michka Popoff (3): >>>> ENH: Update UpdatepygccxmlFromUpstream.sh for v1.8.0 >>>> ENH: Update igenerator.py for pygccxml v1.8.0 >>>> COMP: Use pygccxml's public API for apply definitions >>>> >>>> Pierre Barbier de Reuille (2): >>>> COMP: Fix function naming error when using FFTWD >>>> COMP: Fix function naming error when using FFTWD >>>> >>>> Sean McBride (1): >>>> COMP: Bypass HDF5 bugs under TSan >>>> >>>> Simon Rit (2): >>>> COMP: remove C++11 compiler warning for CUDA compilations >>>> COMP: remove C++11 compiler warning for CUDA compilations >>>> >>>> Somesh Kashyap (2): >>>> BUG: Override TransformCategoryType for >>>> AzimuthElevationToCartesianTransform >>>> BUG: -Added test case for itkAzimuthElevationToCartesianTransform >>>> >>>> Sumedha Singla (1): >>>> ENH: Updated the git tag for ITK-Minimal-Path-Extraction remote >>>> module >>>> >>>> Taylor Braun-Jones (4): >>>> COMP: Skip path length checks if ITK_SKIP_PATH_LENGTH_CHECKS is >>>> enabled >>>> COMP: Fix truncation from double to float warning >>>> DOC: Fix incorrect itkFactorylessNewMacro documentation >>>> COMP: Only include the headers for required OpenCV modules >>>> >>>> Thien Nguyen (1): >>>> PERF: SmapsFileParser unnecessary dynamic_cast >>>> >>>> VXL Maintainers (4): >>>> VNL 2016-05-15 (14f97ab4) >>>> VNL 2016-06-22 (23a93adb) >>>> VNL 2016-06-29 (d62a2d70) >>>> VNL 2016-07-06 (acfa62cc) >>>> >>>> Vladimir S. FONOV (1): >>>> COMP: Build against GCC 5.3.1 >>>> >>>> Zach Williamson (2): >>>> ENH: Update Remote Module Tags >>>> BUG: Fix Python Wrappings in C++11 >>>> >>>> Ziv Yaniv (1): >>>> BUG: Metric sampling percentage accepted values outside (0.0, 1.0]. >>>> >>>> >>>> ITK Software Guide Changes >>>> ---------------------------------------- >>>> >>>> Matt McCormick (8): >>>> DOC: Move the location for obtaining the software >>>> DOC: Remove reference to ITKApps >>>> ENH: Bump ITK ExternalProject version to 2016-11-02 master >>>> DOC: Document the ITK module registry >>>> ENH: Bump ITK ExternalProject version to v4.11rc01 master >>>> DOC: Update CMake hyperlinks >>>> DOC: Update minimum required CMake version to 2.8.9 >>>> DOC: Add section on static and shared libraries. >>>> >>>> >>>> ITK Sphinx Examples Changes >>>> ------------------------------------------- >>>> >>>> Matt McCormick (6): >>>> BUG: Use GDCM ITK module name >>>> ENH: Rename ReadDICOMSeriesAndWrite3DImage >>>> BUG: Add tests for ReadDICOMSeriesAndWrite3DImage >>>> ENH: Bump ITK Superbuild version to 2016-09-20 master >>>> ENH: Add Python version of ReadDICOMSeriesAndWrite3DImage >>>> ENH: Add Python version of CreateAnRGBImage >>>> >>>> Michka Popoff (5): >>>> ENH: Use same Python interpreter as ITK for wrapping tests >>>> BUG: Fix ResampleAnImage example (Python3) >>>> ENH: Add Python example for ApplyAFilterOnlyToASpecifiedRe >>>> gionOfAnImage >>>> ENH: Add 7 Python examples to Core/Common >>>> ENH: Add BoundingBoxOfAPointSet Python example >>>> >>>> >>>> ----------------------------------------------------- >>>> Errors or omissions? Please fix them here: >>>> >>>> >>>> https://docs.google.com/document/d/1UQAh7_mDjps0GZYX62biTwFr >>>> A54KRvf__4oeT0ymzZg/edit >>>> _______________________________________________ >>>> Powered by www.kitware.com >>>> >>>> Visit other Kitware open-source projects at >>>> http://www.kitware.com/opensource/opensource.html >>>> >>>> Kitware offers ITK Training Courses, for more information visit: >>>> http://kitware.com/products/protraining.php >>>> >>>> Please keep messages on-topic and check the ITK FAQ at: >>>> http://www.itk.org/Wiki/ITK_FAQ >>>> >>>> Follow this link to subscribe/unsubscribe: >>>> http://public.kitware.com/mailman/listinfo/insight-developers >>>> >>> >>> >>> _____________________________________ >>> Powered by www.kitware.com >>> >>> Visit other Kitware open-source projects at >>> http://www.kitware.com/opensource/opensource.html >>> >>> Kitware offers ITK Training Courses, for more information visit: >>> http://www.kitware.com/products/protraining.php >>> >>> Please keep messages on-topic and check the ITK FAQ at: >>> http://www.itk.org/Wiki/ITK_FAQ >>> >>> Follow this link to subscribe/unsubscribe: >>> http://public.kitware.com/mailman/listinfo/insight-users >>> >>> >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From taylor at braun-jones.org Thu Jan 19 17:00:05 2017 From: taylor at braun-jones.org (Taylor Braun-Jones) Date: Thu, 19 Jan 2017 17:00:05 -0500 Subject: [ITK-users] [ITK-dev] [ANN] ITK 4.11 Release Candidate 2 is ready for testing! In-Reply-To: References: Message-ID: Cool, thanks D?enan! On Thu, Jan 19, 2017 at 2:14 PM, D?enan Zuki? wrote: > ... and more: > > Additionally, we've added ITK and VTK libraries from GitHub to our daily > compiler testing and validations. So in short, from now on we will be > releasing MSVC compiler versions to the public where live GitHub ITK and > VTK sources will build clean. That's a promise :). > > Thanks, > Ulzii Luvsanbat > Visual C++ Team > > On Thu, Jan 19, 2017 at 1:21 PM, D?enan Zuki? wrote: > >> A new reply in that bug report: >> >> Hi, there's a lag when we, the compiler team, tags the bug resolved and >> the fix actually gets included in the VS release. We apologize for that, >> it's just the way how engineering works to get everything ready in VS to be >> shipped. This specific bug has been fixed for the VS2017 RC3 release, which >> is only days away from shipping. >> >> If you'd you like to validate your project before that with a private >> Nuget package of the compiler toolset, then please send me an email here >> (batul at Microsoft dot com), and I can get you going. >> >> On Thu, Jan 19, 2017 at 12:46 PM, D?enan Zuki? wrote: >> >>> Hi Taylor, >>> >>> I submitted a bug >>> >>> report to Microsoft about it, and somebody said they will add ITK to their >>> compiler test suite. Also, that crashing bug was supposedly fixed for >>> "final release". >>> >>> Regards, >>> D?enan >>> >>> On Thu, Jan 19, 2017 at 12:18 PM, Taylor Braun-Jones < >>> taylor at braun-jones.org> wrote: >>> >>>> Any chance the 4.11 release could have at least some preliminary >>>> support for VS2017? Right now it crashes the compiler: >>>> >>>> C:\src\itk\modules\core\common\include\itkPromoteType.h(97): fatal >>>> error C1001: An internal error has occurred in the compiler. >>>> (compiler file 'msc1.cpp', line 1469) >>>> To work around this problem, try simplifying or changing the program >>>> near the locations listed above. >>>> Please choose the Technical Support command on the Visual C++ >>>> Help menu, or open the Technical Support help file for more information >>>> Internal Compiler Error in C:\PROGRA~2\MIB055~1\2017\COMM >>>> UN~1\VC\Tools\MSVC\1410~1.247\bin\HostX64\x64\cl.exe. You will be >>>> prompted to send an error report to Microsoft later. >>>> INTERNAL COMPILER ERROR in 'C:\PROGRA~2\MIB055~1\2017\COM >>>> MUN~1\VC\Tools\MSVC\1410~1.247\bin\HostX64\x64\cl.exe' >>>> Please choose the Technical Support command on the Visual C++ >>>> Help menu, or open the Technical Support help file for more >>>> information >>>> >>>> Taylor >>>> >>>> On Mon, Jan 16, 2017 at 4:18 PM, Matt McCormick < >>>> matt.mccormick at kitware.com> wrote: >>>> >>>>> On behalf of the Insight Toolkit community, we are proud to announce >>>>> that ITK 4.11 release candidate 2 has been tagged and is available for >>>>> testing! Please take this opportunity to test the new features in the >>>>> release candidate. >>>>> >>>>> >>>>> To obtain the source code, use the links: >>>>> >>>>> >>>>> https://github.com/Kitware/ITK/archive/v4.11rc02.zip >>>>> https://github.com/Kitware/ITK/archive/v4.11rc02.tar.gz >>>>> >>>>> or >>>>> >>>>> git clone https://itk.org/ITK.git >>>>> cd ITK >>>>> git checkout -q --detach v4.11rc02 >>>>> >>>>> For more details, please see the Git documentation [1]. >>>>> >>>>> >>>>> A few selected highlights for this release: >>>>> >>>>> - Remote Modules were added to: perturb mesh vertices with additive >>>>> gaussian noise, accurately benchmark computational performance, >>>>> perform principal components analysis of scalar, vector, and mesh >>>>> vertex data, create a run-length encoded memory compression scheme for >>>>> itk::Image, run N-D morphological contour interpolation, interpolate >>>>> multi-label images, iterate over multiple images simultaneously, and >>>>> compute inverse displacement fields. >>>>> - NumPy bridge support is now enabled by default with NumPy array >>>>> views of multi-component images and VNL vectors and matrices. >>>>> - Internal HDF5 was updated to the latest upstream version along >>>>> with a number of other third-party libraries. >>>>> >>>>> >>>>> This release introduces a new template class export specification >>>>> macro, ITK_TEMPLATE_EXPORT. The macro should be used with templated >>>>> classes to address failing dynamic_cast's and exception catching >>>>> across binaries on Mac OSX. >>>>> >>>>> Bugs were addressed and improvements were made to how the >>>>> pseudo-random number generator is used. Tests that rely on the random >>>>> number generator should explicitly set the global seed at start: >>>>> >>>>> itk::Statistics::MersenneTwisterRandomVariateGenerator::GetI >>>>> nstance()->SetSeed( >>>>> 121212 ); >>>>> >>>>> To improve randomness, new instances of the generator start from a >>>>> different seed; some minor differences in the output of algorithms >>>>> that uses the generator, like mutual information metrics, should be >>>>> expected. >>>>> >>>>> Additionally, output may change for registration with composite affine >>>>> transforms; the v4 registration framework now uses corner sampling as >>>>> opposed to random sampling to estimate their parameter scales. >>>>> >>>>> >>>>> Please test the release candidate and share your experiences on the >>>>> mailing list, issue tracker, and Gerrit Code Review. >>>>> >>>>> >>>>> An Experimental build, which demonstrates how the test suite performs >>>>> on your local build system, can be submitted to the dashboard [2] >>>>> with: >>>>> >>>>> mkdir ../ITK-build >>>>> cd ../ITK-build >>>>> cmake ../ITK >>>>> ctest -j 4 -M Experimental -T Configure -T Build -T Test -T Submit >>>>> >>>>> Visual Studio builds must also add ?-C Release? to the ctest command. >>>>> >>>>> Notify the mailing list if there are any unexpected failures. Testing >>>>> your own applications against the RC is also appreciated. >>>>> >>>>> >>>>> Congratulations to the 31 contributors to this release. We would >>>>> especially like to recognize the new contributors: Hastings Greer, >>>>> Gilles Filippini, Thien Nguyen, Caspar Goch, Mayeul Chassagnard, >>>>> Somesh Kashyap, Simon Rit, Pierre Barbier de Reuille, and Maeliss >>>>> Jallais. >>>>> >>>>> >>>>> The 4.11.0 final release is scheduled for January 23rd. >>>>> >>>>> >>>>> [1] http://www.itk.org/Wiki/ITK/Git >>>>> >>>>> [2] http://open.cdash.org/index.php?project=Insight >>>>> >>>>> >>>>> New Features >>>>> ------------ >>>>> >>>>> * Wrapping Improvements >>>>> - Python GetArrayFromImage() and GetImageFromArray() from >>>>> ITKBridgeNumPy are directly accessible from the Python itk namespace. >>>>> - The itk package loads much faster: individual modules are loaded >>>>> only when required. >>>>> - Conversion of ITK images from and to NumPy array using Bridge >>>>> NumPy supports RGB, RGBA, and Vector images. >>>>> - VNL vectors and VNL matrices can be converted from and to NumPy >>>>> objects with respectively the new couple of functions >>>>> GetArrayFromVnlVector()/GetVnlVectorFromArray() and >>>>> GetArrayFromVnlMatrix()/GetVnlMatrixFromArray() >>>>> - The global timestamp is used across all ITK Python modules when >>>>> built statically >>>>> - Wrap additional classes such as KernelFunctionBase >>>>> - itk_python_add_test CMake function added for Python script testing >>>>> in ITK modules >>>>> >>>>> * New Remote Modules >>>>> - DVMeshNoise >>>>> - Perturbing mesh vertices with additive gaussian noise >>>>> - http://hdl.handle.net/10380/3567 >>>>> - PerformanceBenchmarking >>>>> - Accurate benchmarking of computational performance >>>>> - http://hdl.handle.net/10380/3557 >>>>> - PrincipalComponentsAnalysis >>>>> - Principal components analysis of scalar, vector, and mesh vertex >>>>> data >>>>> - http://hdl.handle.net/10380/3386 >>>>> - RLEImage >>>>> - Run-length encoded memory compression scheme for itk::Image >>>>> - http://hdl.handle.net/10380/3562 >>>>> - MorphologicalContourInterpolation >>>>> - N-D morphological contour interpolation >>>>> - http://hdl.handle.net/10380/3563 >>>>> - GenericLabelInterpolator >>>>> - A generic interpolator for multi-label images >>>>> - http://hdl.handle.net/10380/3506 >>>>> - MultipleImageIterator >>>>> - Iterate over multiple images simultaneously >>>>> - http://hdl.handle.net/10380/3455 >>>>> - FixedPointInverseDisplacementField >>>>> - Computes inverse displacement field >>>>> - http://hdl.handle.net/10380/3222 >>>>> >>>>> * Core Improvements >>>>> - New ITK_TEMPLATE_EXPORT for templated classes resolves >>>>> cross-binary dynamic_cast on Mac OSX >>>>> - New MersenneTwisterRandomVariateGenerator instances are >>>>> initialized with different seeds >>>>> - Use compiler feature detection in CMake for C++11 features, etc. >>>>> - New CMake macro itk_module_add_library for creating libraries in >>>>> ITK modules >>>>> - Improved support for ccache and distcc with >>>>> CMAKE__COMPILER_LAUNCHER (CMake >=3.4 required) >>>>> - Support for .sha512 ExternalData content links >>>>> - GitHub Pages and data.kitware.com ExternalData repositories added >>>>> - GPGPU system support for C++11 >>>>> - Support of new compilers: Visual Studio 15 and XCode 8.2.1 >>>>> (clang-800.0.42.1) >>>>> >>>>> * Filtering Improvements >>>>> - HessianToObjectnessMeasure moved out of the ITKReview module >>>>> - New UnsharpMaskImageFilter for image edge enhancement >>>>> >>>>> * IO Improvements >>>>> - TransformFactory class has been moved to a separate module >>>>> - Spline order added to BSplineTransform identifier >>>>> - Improved NIFTI orientation support >>>>> >>>>> * Documentation Improvements >>>>> - Updates to the Software Guide, Doxygen, Wiki and Sphinx Examples >>>>> >>>>> * Third Party Library Updates >>>>> - pygccxml updated to v1.8.0 >>>>> - VNL updated to latest upstream (2016.07.06) >>>>> - SWIG updated to v3.0.11 >>>>> - KWSys updated to latest upstream (2016.11.21) >>>>> - HDF5 updated to v1.8.17 >>>>> - SCIFIO updated to latest upstream (2016.12.01) >>>>> - DCMTK updated to 3.6.1_20121012 >>>>> - CastXML to latest upstream (2016.01.28) >>>>> >>>>> * Improved Code Coverage -- we are at 85.44%! >>>>> - Jon Haitz-Legarreta's extensive code coverage improvements >>>>> - https://blog.kitware.com/why-should-we-spend-time-writing-tests/ >>>>> >>>>> * *Lots* of important bug fixes >>>>> >>>>> * And much more! See details in the log below. >>>>> >>>>> >>>>> Changes from v4.11rc01 to v4.11rc02 >>>>> ----------------------------------- >>>>> >>>>> Bradley Lowekamp (5): >>>>> BUG: Remove unused SimpleImageRegistrationTest baselines >>>>> ENH: Expose GetNextSeed method in MersenneTwiseter Generator >>>>> BUG: Add option for fixed seed or wall clock seed for sampling >>>>> BUG: Use metric random seed in v3 examples >>>>> BUG: Prefer setting seed at algorithm in "v4" tests. >>>>> >>>>> Francois Budin (3): >>>>> ENH: Update BridgeNumPy to latest version on 2017.01.08 to >>>>> address ITK-3511 >>>>> BUG: Extra \$ in doxygen comment >>>>> BUG: Binary include directory added only if enabled shared >>>>> >>>>> Jon Haitz Legarreta (2): >>>>> DOC: Document itkLabelOverlapMeasuresImageFilter methods. >>>>> DOC: Fix ITKImageNoise filters' doc TeX errors. >>>>> >>>>> Matthew McCormick (1): >>>>> BUG: Remove invalid ImageRegistration4Test.png.sha512 >>>>> >>>>> Max Smolens (1): >>>>> DOC: Fix itkUnsharpMaskImageFilter documentation typos >>>>> >>>>> Simon Rit (1): >>>>> BUG: ITK-based software was crasing when thread creation failed >>>>> >>>>> >>>>> Changes from v4.10.0 to v4.11rc01 >>>>> --------------------------------- >>>>> >>>>> Bill Lorensen (4): >>>>> COMP: Restore support for clang 3.0 compiler >>>>> COMP: Consistent use of ModifiedTimeType >>>>> ENH: Bump WikiExamples remote module version >>>>> ENH: Bump WikiExamples version >>>>> >>>>> Bradley Lowekamp (57): >>>>> ENH: Add registered TrasformIO's to exception >>>>> ENH: Use template or constant for loop stop condition >>>>> ENH: Updating SWIG version to 3.0.9 >>>>> COMP: Address VS9 ambiguous std::abs call in Haung calculator >>>>> COMP: Fix undefined NumericTraits::Zero and One errors with >>>>> mingw64 >>>>> BUG: Fix segfault if ~CleanUpObjectFactory called multiple times >>>>> BUG: Address itkHDF5ImageIO test failures for mingw64 >>>>> BUG: demonstrate dynamic_cast failure when reading transforms >>>>> BUG: Address itkHDF5ImageIO test failures for mingw64 >>>>> ENH: Updating SWIG version to 3.0.10 >>>>> ENH: Enable CMP0063 New behavior >>>>> COMP: Enable hidden visibility property with vxl static libraries >>>>> COMP: Enable hidden visibility property with HDF5 static libraries >>>>> COMP: Enable hidden visibility property with HDF5 static libraries >>>>> BUG: Match Add2 function to AddImageFilter documentation >>>>> ENH: Improve support for std::complex with PowImageFilter >>>>> ENH: Explicitly mark required files for dependent tests >>>>> COMP: Bypass XCode 7.3,8 internal compilation error >>>>> COMP: Address CMake configuration error with itkJPEG2000Test03 >>>>> property >>>>> BUG: Correct test's REQUIRED_FILES to only the input. >>>>> ENH: move HessianToObjectnessMeasure filter out of Review >>>>> ENH: Separate TransformFactory class into separate module >>>>> DOC: Add links between similar label to rgb filters >>>>> ENH: Separate data from function calls >>>>> COMP: Fix changed Graft method >>>>> ENH: Reduce template dependencies on CalculateRotationMatrix >>>>> ENH: Add Functor Accessors to LabelMapToRGB filter >>>>> BUG: Enable VirtualDomain and FixedTransform in RegMethv4 >>>>> BUG: Use BSpline Order 3 for 2D in transform factory. >>>>> ENH: Add spline order to BSplineTransform's string id >>>>> ENH: Adding initial CircleCi configuration file >>>>> COMP: Fix float to unsigned integer conversion warnings >>>>> BUG: Include installed modules in ITK_MODULES_ENABLED >>>>> COMP: Address CMake error that ITKGPUCommon is not in export >>>>> COMP: Address wrong library types with VS and shared libraries >>>>> BUG: Ensure CreateImageIO is concurrent thread safe >>>>> ENH: Mark HDF5 CMake options as internal >>>>> COMP: Add template export declaration for ParametricPath >>>>> COMP: Correct TEMPLATE_EXPLICIT definition in Path module >>>>> ENH: Factor out common code in the TrasformFactoryBase >>>>> registration >>>>> ENH: Add CMake variable for max transform dimension, defaults 4 >>>>> ENH: Create CMake module to check for private RTTI compatibility >>>>> ENH: Improving setting of default ITK_TEMPATE_VISIBILITY_DEFAULT >>>>> COMP: Correct ifndef value to allow user defined >>>>> ITK_TEMPLATE_EXPORT >>>>> BUG: Add explicit instantiate for ObjectToObjectOptimizerBase >>>>> COMP: Use add_definitions for CMake 2.8.9 compatibility >>>>> COMP: Add warning suppression for distcc warning >>>>> ENH: Explicitly instantiate the optimizer base over float >>>>> BUG: Use IsLinear to check if transform is "affine" >>>>> ENH: Remove unneeded includes of random iterator header >>>>> ENH: Improve thread-safety for Generator, and unique New sequence >>>>> ENH: Do not use global random generator >>>>> BUG: Update v3 registration metrics to use local seed >>>>> ENH: Prefer setting local seed over global in tests. >>>>> ENH: Update SWIG to latest 3.0.11 release >>>>> BUG: relax testing parameters for v3 translation registration >>>>> BUG: Restore baseline for debug registration >>>>> >>>>> Caspar Goch (2): >>>>> BUG: Use printable type for RGBA pixel ostream for ITK-3501 >>>>> STYLE: Remove extra space for ITK-3501 >>>>> >>>>> Christina Rossmanith (1): >>>>> DOC: Added more details to the class Doxygen documentation. >>>>> >>>>> Davis Vigneault (2): >>>>> COMP: VCL_DEFINE_SPECIALIZATION not defined >>>>> ENH: Add remote module DVMeshNoise >>>>> >>>>> D?enan Zuki? (27): >>>>> BUG: Fixing CID-1355433 (IDENTICAL_BRANCHES) >>>>> ENH: Adding MultipleImageIterator as a remote module >>>>> COMP: enables TBB 4.4 back-end for VTK7's SMP >>>>> COMP: enabling position independent code flag for FFTW >>>>> ENH: adding configuration file for code reformatting tool >>>>> clang-format >>>>> ENH: Updating hooks to work with Windows/TortoiseGit/KDiff3 >>>>> COMP: Fixing -fPIC flag passing with Ninja build system >>>>> ENH: Adding RLEImage as a remote module >>>>> ENH: Updating uncrustify configuration to current git version >>>>> STYLE: better compliance with ITK style >>>>> STYLE: A new option in uncrustify, updating the config file >>>>> accordingly >>>>> ENH: Adding MorphologicalContourInterpolation as a remote module >>>>> ENH: improving documentation >>>>> BUG: fixing buffer growing endlessly, as reported by Timothee >>>>> Evain >>>>> BUG: fixing buffer growing endlessly, as reported by Timothee >>>>> Evain >>>>> STYLE: default uncrustify configuration file is less aggressive >>>>> COMP: Fixing warning >>>>> COMP: VS15 compiler fix >>>>> BUG: casting -9 to unsigned produced unwanted result >>>>> BUG: Ensuring consistency between debug and release >>>>> COMP: Updating LesionSizingToolkit after some recent compile fixes >>>>> COMP: respect option METAIO_USE_NAMESPACE >>>>> ENH: updating version of AnisotropicDiffusionLBR >>>>> ENH: adding UnsharpMaskingImageFilter >>>>> COMP: explicitly cast to output type >>>>> BUG: double call to update would cause empty output image >>>>> ENH: Updating RLEImage remote module. Change-log: >>>>> >>>>> Eugene Prilepin (4): >>>>> ENH: Add the "ITK_USE_GPU" to ITK Config >>>>> BUG: Fix API for set/get "LaplacianImageFilter" object >>>>> ENH: Add support of images types with the 'CovariantVector' pixel >>>>> type >>>>> ENH: Add python test for the 'GradientVectorFlowImageFilter' wrap >>>>> >>>>> Francois Budin (52): >>>>> ENH: Adding GetArrayFromImage in python itk namespace >>>>> ENH: Adding GetImageFromArray in python itk namespace >>>>> ENH: *_WRAP_* variable per external module >>>>> BUG: ImportImageFilter not responsible of memory management >>>>> ENH: New remote module GenericLabelInterpolator >>>>> DOC: SetNumberOfOutputs had wrong comment >>>>> BUG: lazyAttributes dictionary keys could be over-ridden >>>>> BUG: lazyAttributes dictionary keys could be over-ridden >>>>> BUG: Fix recent update of HDF5 (1.8.17) >>>>> ENH: Update SCIFIO to latest version on 08/23/2016 >>>>> ENH: Addition of the remote module FixedPointInverseDisplacementF >>>>> ield >>>>> ENH: Update SCIFIO to latest version on 08/29/2016 >>>>> BUG: Path to commit was relative instead of absolute >>>>> ENH: Path to SetupForDevelopment is relative, not absolute >>>>> BUG: LSMImageIO write function was not checking image dimension >>>>> BUG: LSMImageIO was not checking correctly image dimension >>>>> BUG: Missing associated test data >>>>> BUG: Missing associated test data >>>>> ENH: Bump CMakeLists.txt version to 4.10.1. >>>>> BUG: Quotes are not escaped in configured cmake file >>>>> ENH: Improving API of Graft() in itk::Image >>>>> ENH: Updating ITKGenericLabelInterpolator remote module >>>>> ENH: Update ITKIOTransformDCMTK remote module >>>>> BUG: Factory registration should depend on ITK_BUILD_SHARED >>>>> COMP: Updating DCMTK compilation for Ninja >>>>> ENH: Update version of DCMTK to 3.6.1_20121012 >>>>> ENH: Update SCIFIO to latest version on 10/25/2016 >>>>> BUG: Swig and PCRE do not support space in installation paths >>>>> BUG: exit() call from within piped commands was not exiting the >>>>> script >>>>> BUG: Typo in folder creation command >>>>> ENH: Only display message for transform registered multiple times >>>>> in debug >>>>> ENH: Image spacing must be positive >>>>> BUG: Supported extensions by PNG IO were not added in constructor. >>>>> DOC: Documentation in itkRBGAPixel and itkRGBPixel was incorrect. >>>>> ENH: Update SCIFIO to lastest (2016.12.01) >>>>> ENH: FixedPointInverseDisplacementField moved to >>>>> InsightSoftwareConsortium >>>>> COMP: Remove compilation warnings >>>>> ENH: Improved support of ccache and distcc >>>>> BUG: GPUImage regression due to API change. >>>>> ENH: Update Bridge Numpy (2016.12.05) >>>>> ENH: Update VariationalRegistration to remove warnings during >>>>> compilation >>>>> ENH: FindPythonLibs does not support both debug and release >>>>> python libraries >>>>> ENH: Update VariationalRegistration >>>>> BUG: Missing ITK_TEMPLATE_EXPORT in forward declaration of >>>>> itk::ImageBase >>>>> BUG: Missing ITK_TEMPLATE_EXPORT in itkOptimizerParametersHelper >>>>> BUG: Missing ITK_TEMPLATE_EXPORT in templated class >>>>> BUG: Remove linkage warnings on MacOS >>>>> BUG: HDF5 CMake installation directory variable had not been >>>>> updated >>>>> BUG: Missing include header in AnisotropicDiffusionBLR remote >>>>> module hxx files >>>>> COMP: Silencing unused variable warning in itkTimeStamp >>>>> STYLE: Improve style checking by using module >>>>> ITKKWStyleOverwrite.txt >>>>> COMP: OS*Barrier functions are deprecated on MacOS 10.12 >>>>> >>>>> GCC-XML Upstream (1): >>>>> ENH: pygccxml v1.8.0 (reduced) >>>>> >>>>> Gert Wollny (1): >>>>> BUG: Relax vnl_complex floating point comparisons for i386 >>>>> >>>>> Gilles Filippini (1): >>>>> BUG: Use NATIVE_HBOOL for encoding HDF5 types. >>>>> >>>>> HDF Group (1): >>>>> ENH: hdf5 1.8.17-r30218 (reduced) >>>>> >>>>> Hans Johnson (23): >>>>> COMP: Use cmake WriteCompilerDetectionHeader >>>>> ENH: Use itk_compiler_detection versions >>>>> COMP: Need ITK_NOEXCEPT_OR_THROW macro. >>>>> COMP: Provide consistent granular C++11 support >>>>> STYLE: Use granular ITK_COMPILER_CXX_STATIC_ASSERT >>>>> STYLE: Prefer to use consistent definitions >>>>> COMP: Improve robustness of identifying the compiler standard used >>>>> BUG: try_compile for AlignAs were always failing >>>>> STYLE: Provide a well documented macro for repeated code >>>>> STYLE: Delete functions in consistent way >>>>> COMP: GPU baseclass ivars need to be protected >>>>> COMP: Remove unnecessary circular dependancy >>>>> COMP: Add long long usage for HDF5 >>>>> COMP: Add long long usage for HDF5 >>>>> STYLE: Prefer static small array to dynamic array >>>>> BUG: Confusing interface for FFTW wisdom files >>>>> STYLE: Output dimension from OutputImageType >>>>> STYLE: Code review style cleanups >>>>> STYLE: Prefer to use ITK AssertOrThrow macros >>>>> ENH: Add OverrideBoundaryCondition logic >>>>> ENH: Provide mechanism for enhanced NIFTI support >>>>> BUG: Use NIFTI sform/qform conventions correctly >>>>> ENH: Remove ambiguity about sform/qform >>>>> >>>>> Hastings Greer (8): >>>>> BUG: ITK-3448 Wrap itkQuadEdgeCellTraitsInfo more specifically >>>>> BUG: make itkTriangleHelper instantiable to ease wrapping >>>>> BUG: remove lsqr because of license issues ITK 1160 >>>>> BUG: make itkTriangleHelper instantiable to ease wrapping >>>>> BUG: initialize X to zero in lsmr Solve >>>>> BUG: Labled Point Set Registration: test multiple labels >>>>> BUG: Fix python wrapping of Cuberille remote module >>>>> BUG: Add test demonstrating Python global timestamp issue >>>>> >>>>> Jean-Christophe Fillion-Robin (5): >>>>> STYLE: UseITK: Set ImageIO exceptions using new convention. See >>>>> #3393 >>>>> STYLE: MeshIO: Moves virtual destructor into cpp files. See #3393 >>>>> STYLE: Update MeshIO factories to use RegisterFactoryInternal. >>>>> See #3393 >>>>> STYLE: MeshIO: Move MeshFileWriterException into its own file. >>>>> See #3393 >>>>> STYLE: MeshIO: Remove unused include from headers. See #3393 >>>>> >>>>> Johan Andruejol (3): >>>>> ENH: Add missing itkKernelFunctionBase wrapping >>>>> ENH: Add PrincipalComponentsAnalysis remote module >>>>> COMP: Override cannot be used with inline >>>>> >>>>> Jon Haitz Legarreta (216): >>>>> ENH: Improve itkFlatStructutingElement coverage. >>>>> ENH: Improve itkPathToImageFilter class coverage. >>>>> ENH: Improve itkIsolatedWatershedImageFilter coverage. >>>>> ENH: Improve itkLogSigmoidTransferFunction coverage. >>>>> STYLE: Improve itkBSplineTransform doc style. >>>>> ENH: Improve GaborKernelFunctionCoverage. >>>>> PERF: Remove duplicate itkMath include >>>>> STYLE: Move the PrintSelf method to the end >>>>> STYLE: Improve the itkScalarToRGBColormapImageFilter style. >>>>> STYLE: Delete duplicate method documentation >>>>> STYLE: Remove method documentation from implementation file >>>>> STYLE: Improve GACLevelSet classes' style >>>>> STYLE: Improve test style >>>>> ENH: Improve itkGaussianDerivativeImageFilter coverage. >>>>> ENH: Improve the itkScalarToRGBColormapImageFilter coverage >>>>> STYLE: Improve itkScalarToRGBColormap test style >>>>> ENH: Improve GACLSImageFilter classes' coverage >>>>> STYLE: Improve comment style in GACLS tests >>>>> ENH: Improve itkImportImageFilter coverage >>>>> ENH: Improve itkVideoFileReader coverage >>>>> ENH: Improve itkVideoFileWriter coverage >>>>> STYLE: Improve the itkVideoFileWriter style. >>>>> STYLE: Imrpove itkVideoFileReader style. >>>>> ENH: Improve the itkBSplineControlPointImageFunction coverage >>>>> STYLE: Improve the itkIntensityWindowingImageFilter style >>>>> STYLE: Improve the itkIntensityWindowingImageFilter test style >>>>> ENH: Improve ImageToSpatialObjectRegistrationMethod coverage >>>>> STYLE: Improve test style >>>>> ENH: Improve MaskNeighborhoodOperatorImageFilter coverage >>>>> ENH: Improve itkMeshFileWriter coverage >>>>> ENH: Improve RescaleIntensityImageFilter coverage. >>>>> ENH: Improve itkClampImageFilter coverage. >>>>> BUG: Fix ivar type casting in PrintSelf. >>>>> STYLE: Improve MRIBiasFieldCorrectionFilter style. >>>>> ENH: Improve MRIBiasFieldCorrectionFilter coverage. >>>>> ENH: Improve itkIntensityWindowingImageFilter coverage >>>>> BUG: Fix Run-time type information in CSV module classes. >>>>> ENH: Improve the itkHistogram class code coverage. >>>>> DOC: Fix documentation typo. >>>>> STYLE: Improve the ImproveRescaleIntensityImageFilter style. >>>>> PERF: Make the itkVideoFileReader ivars private >>>>> PERF: Make itkVideoFileWriter ivars private >>>>> ENH: Improve coverage for itk::OrientImageFilter. >>>>> STYLE: Improve itk::OrientImageFilter class style. >>>>> ENH: Improve itkCSVNumericObjectFileWriter coverage. >>>>> ENH: Add missing standard class typdefs. >>>>> ENH: Improve itkVoronoiSegmentationImageFilter coverage. >>>>> ENH: Improve itkVoronoiSegmentationImageFilter style. >>>>> STYLE: Improve the MalahanobisDistanceThresholdImageFunction >>>>> style. >>>>> ENH: Improve coverage for itkMalahanobisDistanceThreshold. >>>>> ENH: Improve itk::MinimumMaximumImageCalculator coverage. >>>>> ENH: Improve itkMinimumMaximumImageCalculator style. >>>>> BUG: Fix type mismatch in test. >>>>> STYLE: Improve itkPolylineMaskImagefilter style. >>>>> ENH: Improve itkPolylineMaskImageFilter coverage. >>>>> ENH: Improve itkFileListVideoStyle. >>>>> ENH: Improve itkLandmarkBasedTransformInitializer coverage. >>>>> ENH: Add baseline image to itkPolylineMaskImageFilter test. >>>>> ENH: Improve coverage for itkBSplineTransformInitializer. >>>>> STYLE: Improve itkBSplineTransformInitializer doc style. >>>>> ENH: Enhance itkBSplineTransformInitializer implementation. >>>>> DOC: Fix typo in method documentation. >>>>> ENH: Improve the itkRegularStepGradientDescentOptimizerv4 style. >>>>> STYLE: Improve the itkSimpleContourExtractorImageFilter style. >>>>> ENH: Exercise the class' Get methods. >>>>> ENH: Improve coverage for itkStatisticsOpeningLabelMapFilter. >>>>> ENH: Improve style for itkThresholdLabelerImageFilter. >>>>> ENH: Improve itkThresholdLabelerImageFilter coverage. >>>>> ENH: Get internal ImageIO via a const macro. >>>>> ENH: Improve the itkSimpleContourExtractorImageFilter coverage. >>>>> STYLE: Improve the itkMetaArray class style. >>>>> ENH: Improve MetaArrayReader/Writer coverages. >>>>> ENH: Improve the itkCovarianceImageFunction style. >>>>> STYLE: Improve itkVoronoiDiagram2DGenerator style. >>>>> ENH: Improve VoronoiDiagram2DGenerator coverage. >>>>> STYLE: Improve the itkBayesianClassifierImageFilter style. >>>>> STYLE: Improve the itkMetaArrayWriter style. >>>>> ENH: Improve itkCovarianteImageFunction coverage. >>>>> COMP: Fix signed/unsigned int comparison warning. >>>>> DOC: Improve itkGrayscaleDilateImageFilter documentation. >>>>> DOC: Improve documentation for itkGrayscaleErodeImageFilter. >>>>> DOC: Improve ConfigureHistogram method documentation. >>>>> STYLE: Improve the itkMovingHistogramMorphologyImagefilter style. >>>>> BUG: Fix Superclass name in RTTI. >>>>> STYLE: Improve itkGaussianInterpolateImageFunction style. >>>>> ENH: Improve coverage for itkGaussianInterpolateImageFunction. >>>>> ENH: Improve itkBayesianClassifierImageFilter coverage. >>>>> ENH: Add itkBSplineControlPointImageFilter RTTI. >>>>> STYLE: Improve itkBSplinecontrolPointImageFilter style. >>>>> ENH: Improve itkBSplineControlPointImageFilter coverage. >>>>> ENH: Improve coverage for itkRegularStepGradientDescentO >>>>> ptimizerv4. >>>>> STYLE: Improve the class implementation file style. >>>>> STYLE: Improve the itkResampleImageFilter style. >>>>> DOC: Fix typo in GetMTime method doc. >>>>> STYLE: Remove out-of-body implementation doc >>>>> ENH: Improve itkResampleImageFilter coverage. >>>>> ENH: Improve itkAbsImageAdaptor and Filter coverage. >>>>> BUG: Fix itkLSMImageIO class' Superclass name. >>>>> ENH: Improve the itkInterpolateImagePointsFilter coverage. >>>>> ENH: Improve itkPowImageFilter coverage. >>>>> BUG: Fix ConvolutionImageFilter RTTI. >>>>> STYLE: Use initialization lists. >>>>> STYLE: Improve BinaryFunctorImageFilter style. >>>>> ENH: Improve itkMinimumImageFilter code coverage. >>>>> BUG: Fix Linux-x86_64-gcc4.1 warning on implicit conversion. >>>>> ENH: Improve MaximumImageFilter coverage. >>>>> BUG: Fix conversion to PixelType conversion. >>>>> COMP: Fix double to unsigned char conversion warning. >>>>> ENH: Improve coverage for itkNormalizeToConstantImageFilter. >>>>> BUG: Fix itkSquaredDifferenceErrorFunction RTTI. >>>>> ENH: Improve itkMeanImageFunctionCoverage. >>>>> ENH: Improve itkSquareImageFilter coverage. >>>>> STYLE: Improve the itkSquaredDifferenceErrorFunction style. >>>>> STYLE: Enhance style for itkNormalizeToConstantImageFilter. >>>>> STYLE: Improve itkMeanImageFunction style. >>>>> ENH: Remove unnecesary call to filter print. >>>>> ENH: Improve itkRegionOfInterestImageFilter coverage. >>>>> STYLE: Improve itkRegionOfInterestImageFilter style. >>>>> STYLE: Improve itkPasteImageFilter style. >>>>> STYLE: Improve itkJoinSeriesImageFilter style. >>>>> BUG: Fix itkPadLabelMapFilter RTTI Superclass. >>>>> COMP: Address std::cout.precision conversion warning. >>>>> ENH: Improve itkBayesianClassifiertImageFilter coverage. >>>>> ENH: Improve itkPadLabelMapFilter coverage. >>>>> ENH: Improve itkJoinSeriesImageFilter coverage. >>>>> ENH: Improve the itkPasteImageFilter coverage. >>>>> ENH: Improve MeanImageFilter coverage. >>>>> COMP: Address std::cout.precision conversion warning. >>>>> ENH: Improve TernaryMagnitudeImageFilter coverage. >>>>> ENH: Improve FFTConvolutionImageFilter coverage. >>>>> DOC: Fix class documentation in ternary magnitude filters. >>>>> ENH: Improve ConstrainedValueDifferenceImageFilter coverage. >>>>> ENH: Improve AndImageFilter coverage. >>>>> ENH: Add baseline test to itkTernaryMagnitudeImageFilter. >>>>> ENH: Use MD5 comparison framework in baseline test. >>>>> ENH: Improve itk::VectorRescaleIntensityImageFilter coverage. >>>>> STYLE: Improve the itkVectorRescaleIntensityImageFilter style. >>>>> ENH: Print missing ivar in filter PrintSelf method. >>>>> ENH: Improve itkComplexToImaginaryFilter coverage. >>>>> ENH: Improve itkComplexToPhaseImageFilter coverage. >>>>> ENH: Improve itkComplexToModulusImageFilter coverage. >>>>> ENH: Improve itkComplexToRealImageFilter coverage. >>>>> ENH: Improve itkVectorResampleImageFilter coverage. >>>>> ENH: Add GetTransform method. >>>>> ENH: Improve itkConstrainedValueAdditionImageFilter coverage. >>>>> ENH: Improve itkModulusImageFilter coverage. >>>>> ENH: Improve itkLog10ImageFilter coverage. >>>>> ENH: Imporve itkMagnitudeAndPhaseToComplexImageFilter coverage. >>>>> ENH: Improve itkLogImageFilter coverage. >>>>> ENH: Improve itkInvertIntensityImageFilter coverage. >>>>> STYLE: Improve itkInvertIntensityImageFilter style. >>>>> DOC: Add missing doc to itkInvertIntensityImageFilter. >>>>> STYLE: Improve itkIntensityWindowingImageFilter style. >>>>> STYLE: Use initialization lists. >>>>> ENH: Improve itkIntensityWindowingImageFilter coverage. >>>>> ENH: Improve itkNaryMaximumImageFilter coverage. >>>>> COMP: Fix std::precision type casting warning. >>>>> ENH: Improve itkPointSetToPointSetRegistrationMethod coverage. >>>>> STYLE: Improve the itkPointSetToPointSetImageRegistrationMethod >>>>> style. >>>>> ENH: Remove SmartPointers being explicitly initialized to null. >>>>> STYLE: Improve the itkPointSetToImageRegistrationMethod style. >>>>> ENH: Improve itkPointSetToImageRegistration coverage. >>>>> STYLE: Change the name of the itkPointSetToImageRegistrationMethod >>>>> test. >>>>> STYLE: Improve itkVectorResampleImageFilter style. >>>>> STYLE: Improve the itkAntiAliasBinaryImageFilter style. >>>>> ENH: Improve trigonometric function filters' coverage. >>>>> STYLE: Remove test names from std::out messages. >>>>> ENH: Improve Boolean Algebra ImageFilters coverage. >>>>> STYLE: Improve the EuclideanDistancePointMetric style. >>>>> ENH: Improve itkSigmoidImageFilter coverage. >>>>> STYLE: Improve itkCropImageFilter style. >>>>> ENH: Improve itkCropImageFilter coverage. >>>>> ENH: Improve RGBToLuminanceImageFilter and Adaptor coverage. >>>>> ENH: Improve itkRescaleIntensityImageFilter coverage. >>>>> ENH: Improve the itkMatrixSelectionImageFilter coverage. >>>>> ENH: Improve itkTanImageFilter and Adaptor coverage. >>>>> ENH: Increase itkSqrtImageFilter and Adaptor coverage. >>>>> ENH: Increase itkTernaryOperatorImageFilter coverage. >>>>> ENH: Increase itkSymmetricEigenAnalysisImageFilter coverage. >>>>> STYLE: Improve itkScalarImagekmeansImageFilter style. >>>>> STYLE: Conform to TEST_SET_GET_VALUE definition. >>>>> BUG: Fix uninitialized variable due to dynamic analysis defect. >>>>> BUG: Fix uninitialized variable defect reported by valgrind. >>>>> ENH: Improve the itkPointSetToPointSetRegistrationTest. >>>>> ENH: Improve the itkPointSetToImageRegistrationTest. >>>>> ENH: Increas BinaryMagnitudeImageFilter coverage. >>>>> STYLE: Remove test name from std output. >>>>> ENH: Increase MagnitudeImageFilter coverage. >>>>> BUG: Fix uninitialized variable defect reported by valgrind. >>>>> BUG: Fix Superclass name in RTTI. >>>>> STYLE: Improve itkFrustumSpatialFunction style. >>>>> STYLE: Improve the itkConicShellInteriorExteriorSpatialFunction >>>>> style. >>>>> BUG: Fix Superclass template argument list. >>>>> STYLE: Improve the itkTorusInteriorExteriorSpatialFunction style. >>>>> STYLE: Improve the itkCheckerBoardImageFilter class style. >>>>> ENH: Improve the itk::LabelVotingImageFilter coverage. >>>>> ENH: Improve itkCheckerBoardImageFilter coverage. >>>>> STYLE: Improve itk::LabelVotingImageFilter style. >>>>> STYLE: Improve the itkHoughTransform2DCirclesImageFilter style. >>>>> ENH: Add test for itk::FrustumSpatialFunction class. >>>>> ENH: Improve itkConnectedThresholdImageFilter coverage. >>>>> STYLE: Improve itkConnectedThresholdImageFilter style. >>>>> BUG: Fix FrustumSpatialFunction internal precision conversion. >>>>> COMP: Fix implicit conversion warning. >>>>> STYLE: Improve itkThresholdImageFilter style. >>>>> ENH: Add test for itk::TorusInteriorExteriorSpatialFunction. >>>>> BUG: Fix Superclass template argument list. >>>>> ENH: Improve itkUnsharpMaskingImageFilter implementation. >>>>> ENH: Improve the itkUnsharpMaskingImageFilter coverage. >>>>> ENH: Fix UnsharpMaskingImageFilter test inconsistencies. >>>>> BUG: Add missing itkTypeMacro. >>>>> DOC: Document the member variables. >>>>> BUG: Fix the itkImageSource RTTI class name, >>>>> STYLE: Improve itkLabelImageGaussianInterpolateImageFunction >>>>> style. >>>>> ENH: Finish itkGaussianInterpolateImageFunction PrintSelf. >>>>> STYLE: Improve itkLabelOverlapMeasurementImageFilter style. >>>>> >>>>> KWSys Robot (6): >>>>> KWSys 2016-06-30 (96f06c8e) >>>>> KWSys 2016-10-23 (b630d2f5) >>>>> KWSys 2016-11-03 (37306a1c) >>>>> KWSys 2016-11-08 (2b3e2b1c) >>>>> KWSys 2016-11-09 (18c65411) >>>>> KWSys 2016-11-21 (cb55cf5a) >>>>> >>>>> Maeliss Jallais (1): >>>>> BUG: Add unsigned and signed short to the wrapping of vnl_matrix >>>>> >>>>> Matthew McCormick (85): >>>>> PERF: Simplify HilbertPath numberOfPathVertices computation. >>>>> BUG: CID 1355469 NNetClassifierTest4 unintended integer division. >>>>> BUG: Update Cuberille Remote for version check fix. >>>>> ENH: Bump ITK version to 4.11.0. >>>>> BUG: Fix HDF5ImageIO type information. >>>>> BUG: Fix H5File memory leak in HDF5ImageIO. >>>>> DOC: Collect Francois Budin's contributions in .mailmap >>>>> BUG: Limit WRAP_ITK_MODULES when building externally >>>>> STYLE: Improvements to ResourceProbe report output. >>>>> ENH: Add a useTabs argument to ResourceProbe::Report. >>>>> ENH: Add standard error measure to the ResourceProbe >>>>> ENH: Add itk_python_add_test function. >>>>> BUG: Remove VNL file from subtree merge. >>>>> COMP: Fix wrapping with a space in the Python include path >>>>> BUG: Fix PermuteAxesImageFilter pipeline method visibility >>>>> BUG: Initialize PermuteOrder and FlipAxes in OrientImageFilter >>>>> BUG: ResampleImageFilter honor isInside output of the transform >>>>> method >>>>> COMP: Avoid recursive include of itkMath.h >>>>> COMP: Fix VXL header installation locations >>>>> BUG: ClampImageFilterTest for older GCC, InPlaceOn >>>>> DOC: Add CONTRIBUTING.md file to the top level. >>>>> COMP: Update VariationalRegistration to address Doxygen warnings >>>>> BUG: Compiler detections file installed into ITK build tree >>>>> location >>>>> COMP: Do not use string(TIMESTAMP. >>>>> COMP: Remove HDF5 -std=c99 for C++ files >>>>> BUG: Do not build HDF5 static library with a shared build >>>>> ENH: Add PerformanceBenchmarking Remote Module >>>>> COMP: Remove duplicate wrappings for ResampleImageFilter >>>>> BUG: Put Python test output files in the build tree >>>>> BUG: Improve HDF5ImageIO::CloseDataSet name >>>>> COMP: Use add_python_test PythonLazyLoadingImage >>>>> COMP: Address missing override it itkFactoryTestLib.cxx >>>>> BUG: Index,Size,Offset constructors present in Python with C++11 >>>>> COMP: Address missing override it itkFactoryTestLib.cxx >>>>> BUG: PerformanceBenchmarking as EXCLUDE_FROM_DEFAULT >>>>> ENH: Bump SetupForDevelopment version >>>>> BUG: Add missing ZLib deflate support to HDF5 >>>>> BUG: Address memory leak, remove NumPy build dep in BridgeNumPy >>>>> COMP: Do not set ITK_LIBRARY_BUILD_TYPE in ITKTransformFactory >>>>> COMP: Do not set ITK_LIBRARY_BUILD_TYPE in ITKTransformFactory >>>>> BUG: Check when ITK_WRAP_VECTOR_COMPONENTS doesn't include >>>>> ITK_WRAP_IMAGE_DIMS >>>>> BUG: RichardsonLucyDeconvolutionImageFilter with non-null input >>>>> Image Origin >>>>> BUG: Fix inconsistent Twister start with Initialize(seed) and >>>>> SetSeed(seed) >>>>> BUG: Do not hard code CMake scripts in HDF5 >>>>> COMP: Workaround Emscripten ITKCommon test build failure >>>>> COMP: Do embed fancy HDF5 libsettings with Emscripten >>>>> COMP: Add missing H5T_patch_vlen_file declaration >>>>> ENH: Bump CastXML to 2016-10-11 master. >>>>> COMP: Workaround Emscripten ITKCommon test build failure >>>>> BUG: Swap CastXML hashes for Mac OSX and Windows >>>>> ENH: Sync ExternalData.cmake with upstream CMake 3.6.2 >>>>> COMP: Fix VNL tests when cross-compiling >>>>> ENH: ExternalData multi-algorithm support >>>>> ENH: ExternalData support for data.kitware.com >>>>> BUG: Install missing H5pubconf.h >>>>> BUG: Use SpacePrecisionType in TileImageFilter >>>>> BUG: Use internal ExternalData_Add_Target >>>>> ENH: Run .sha512, .md5 simultaneous modification pre-commit check >>>>> BUG: Correct CastXML Windows binary >>>>> BUG: Support non-zero Index in LevelSetNeighborhoodExtractor >>>>> ENH: Add ArchiveTestingDataOnGirder.py >>>>> BUG: Correct AtanRegularizationHeavisideStepFunction derivative >>>>> ENH: Add Utilities/Maintenance/ContentLinkSynchronization.sh >>>>> BUG: Remove extra HessianToObjectness content links >>>>> ENH: Wrap SpatialFunction float types with ITK_WRAP_float >>>>> BUG: Bump PerformanceBenchmarking to 2016-11-04 >>>>> BUG: itk_python_expression_add_test too many quotes. >>>>> ENH: Wrap VectorImage with complex real pixel types >>>>> ENH: Bump PerformanceBenchmarking to 2016-11-07 >>>>> BUG: Do not assume zero Index in ReinitializeLevelSetImageFilter >>>>> ENH: Create itk_module_add_library macro >>>>> BUG: Update computeCodeCoverageLocally.sh for KWStyle addition >>>>> COMP: Install a newer version of CMake on CircleCI >>>>> ENH: Use GitHub Pages as the first ExternalData resource >>>>> ENH: Add tests to demonstrate OSX dynamic_cast failure >>>>> BUG: Use random seed with for MersenneTwisterRandomVariateGe >>>>> nerator. >>>>> BUG: Enable program global timestamp >>>>> BUG: Set random number seed in Mattes metric test >>>>> BUG: Notify builder that ITK_DYNAMIC_LOADING is required with >>>>> wrapping >>>>> BUG: Define ITK_DYNAMIC_LOADING before ITK_WRAP_PYTHON >>>>> BUG: Set random number seed mutual information metric tests >>>>> BUG: Wrap std::vector< itk.Point > >>>>> BUG: Fix wrapping of LandmarkBasedTransformInitializer >>>>> BUG: Rename UnsharpMaskingImageFilter to UnsharpMaskImageFilter >>>>> DOC: Add D?enan Zuki? to .mailmap >>>>> >>>>> Max Smolens (4): >>>>> COMP: CID-1266557 StatisticsLabelMapFilter uninitialized scalar >>>>> field >>>>> BUG: CID-1355438 QuadEdgeTest1 resource leaks >>>>> COMP: CID-1355472 MIRegistrationFunction unused value >>>>> COMP: Fix link errors for VNL template instantiations on Windows >>>>> >>>>> Mayeul Chassagnard (7): >>>>> BUG: Test added and error fixed in HDF5ImageIO >>>>> ENH: Update add_library TO itk_module_add_library >>>>> COMP: Set Policy CMP0023 target_link_libraries for >>>>> Modules/ThirdParty/VNLI... >>>>> BUG: Add ITK_TEMPLATE_EXPORT to template classes >>>>> BUG: Fix errors linked to dyn_cast merge >>>>> BUG: Restore old ITKModule_TEMPLATE_EXPORT specification for >>>>> classes >>>>> BUG: dash3win7 dashboard build error unresolved external symbol >>>>> >>>>> Michka Popoff (3): >>>>> ENH: Update UpdatepygccxmlFromUpstream.sh for v1.8.0 >>>>> ENH: Update igenerator.py for pygccxml v1.8.0 >>>>> COMP: Use pygccxml's public API for apply definitions >>>>> >>>>> Pierre Barbier de Reuille (2): >>>>> COMP: Fix function naming error when using FFTWD >>>>> COMP: Fix function naming error when using FFTWD >>>>> >>>>> Sean McBride (1): >>>>> COMP: Bypass HDF5 bugs under TSan >>>>> >>>>> Simon Rit (2): >>>>> COMP: remove C++11 compiler warning for CUDA compilations >>>>> COMP: remove C++11 compiler warning for CUDA compilations >>>>> >>>>> Somesh Kashyap (2): >>>>> BUG: Override TransformCategoryType for >>>>> AzimuthElevationToCartesianTransform >>>>> BUG: -Added test case for itkAzimuthElevationToCartesian >>>>> Transform >>>>> >>>>> Sumedha Singla (1): >>>>> ENH: Updated the git tag for ITK-Minimal-Path-Extraction remote >>>>> module >>>>> >>>>> Taylor Braun-Jones (4): >>>>> COMP: Skip path length checks if ITK_SKIP_PATH_LENGTH_CHECKS is >>>>> enabled >>>>> COMP: Fix truncation from double to float warning >>>>> DOC: Fix incorrect itkFactorylessNewMacro documentation >>>>> COMP: Only include the headers for required OpenCV modules >>>>> >>>>> Thien Nguyen (1): >>>>> PERF: SmapsFileParser unnecessary dynamic_cast >>>>> >>>>> VXL Maintainers (4): >>>>> VNL 2016-05-15 (14f97ab4) >>>>> VNL 2016-06-22 (23a93adb) >>>>> VNL 2016-06-29 (d62a2d70) >>>>> VNL 2016-07-06 (acfa62cc) >>>>> >>>>> Vladimir S. FONOV (1): >>>>> COMP: Build against GCC 5.3.1 >>>>> >>>>> Zach Williamson (2): >>>>> ENH: Update Remote Module Tags >>>>> BUG: Fix Python Wrappings in C++11 >>>>> >>>>> Ziv Yaniv (1): >>>>> BUG: Metric sampling percentage accepted values outside (0.0, >>>>> 1.0]. >>>>> >>>>> >>>>> ITK Software Guide Changes >>>>> ---------------------------------------- >>>>> >>>>> Matt McCormick (8): >>>>> DOC: Move the location for obtaining the software >>>>> DOC: Remove reference to ITKApps >>>>> ENH: Bump ITK ExternalProject version to 2016-11-02 master >>>>> DOC: Document the ITK module registry >>>>> ENH: Bump ITK ExternalProject version to v4.11rc01 master >>>>> DOC: Update CMake hyperlinks >>>>> DOC: Update minimum required CMake version to 2.8.9 >>>>> DOC: Add section on static and shared libraries. >>>>> >>>>> >>>>> ITK Sphinx Examples Changes >>>>> ------------------------------------------- >>>>> >>>>> Matt McCormick (6): >>>>> BUG: Use GDCM ITK module name >>>>> ENH: Rename ReadDICOMSeriesAndWrite3DImage >>>>> BUG: Add tests for ReadDICOMSeriesAndWrite3DImage >>>>> ENH: Bump ITK Superbuild version to 2016-09-20 master >>>>> ENH: Add Python version of ReadDICOMSeriesAndWrite3DImage >>>>> ENH: Add Python version of CreateAnRGBImage >>>>> >>>>> Michka Popoff (5): >>>>> ENH: Use same Python interpreter as ITK for wrapping tests >>>>> BUG: Fix ResampleAnImage example (Python3) >>>>> ENH: Add Python example for ApplyAFilterOnlyToASpecifiedRe >>>>> gionOfAnImage >>>>> ENH: Add 7 Python examples to Core/Common >>>>> ENH: Add BoundingBoxOfAPointSet Python example >>>>> >>>>> >>>>> ----------------------------------------------------- >>>>> Errors or omissions? Please fix them here: >>>>> >>>>> >>>>> https://docs.google.com/document/d/1UQAh7_mDjps0GZYX62biTwFr >>>>> A54KRvf__4oeT0ymzZg/edit >>>>> _______________________________________________ >>>>> Powered by www.kitware.com >>>>> >>>>> Visit other Kitware open-source projects at >>>>> http://www.kitware.com/opensource/opensource.html >>>>> >>>>> Kitware offers ITK Training Courses, for more information visit: >>>>> http://kitware.com/products/protraining.php >>>>> >>>>> Please keep messages on-topic and check the ITK FAQ at: >>>>> http://www.itk.org/Wiki/ITK_FAQ >>>>> >>>>> Follow this link to subscribe/unsubscribe: >>>>> http://public.kitware.com/mailman/listinfo/insight-developers >>>>> >>>> >>>> >>>> _____________________________________ >>>> Powered by www.kitware.com >>>> >>>> Visit other Kitware open-source projects at >>>> http://www.kitware.com/opensource/opensource.html >>>> >>>> Kitware offers ITK Training Courses, for more information visit: >>>> http://www.kitware.com/products/protraining.php >>>> >>>> Please keep messages on-topic and check the ITK FAQ at: >>>> http://www.itk.org/Wiki/ITK_FAQ >>>> >>>> Follow this link to subscribe/unsubscribe: >>>> http://public.kitware.com/mailman/listinfo/insight-users >>>> >>>> >>> >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Olivier.Commowick at inria.fr Mon Jan 23 09:11:22 2017 From: Olivier.Commowick at inria.fr (Olivier Commowick) Date: Mon, 23 Jan 2017 15:11:22 +0100 Subject: [ITK-users] ITK_COMPILED_CXX_VERSION always set to 1997 on macOS References: Message-ID: Hello, While debugging something else, I realised that the ITK_COMPILED_CXX_VERSION variable in CMake is always set to 199711L on my macOS 10.12. It sounds weird to me since I am always compiling ITK by enforcing to use CMAKE_CXX_STANDARD to 11. It appears to me that Modules/Core/Common/CMakeLists.txt does this test and probably does not account for the fact that cmake uses the 2011 standard or something else. Would someone have any idea of how to correct this or if this is important or not ? Best Olivier --- Olivier Commowick, Ph.D. Research Scientist INRIA Rennes - Bretagne Atlantique, VISAGES Team Campus de Beaulieu 35042 Rennes FRANCE Phone: +33 2 99 84 25 92 Email: Olivier.Commowick at inria.fr Web: http://olivier.commowick.org/ From blowekamp at mail.nih.gov Mon Jan 23 09:25:00 2017 From: blowekamp at mail.nih.gov (Lowekamp, Bradley (NIH/NLM/LHC) [C]) Date: Mon, 23 Jan 2017 14:25:00 +0000 Subject: [ITK-users] [ITK] ITK_COMPILED_CXX_VERSION always set to 1997 on macOS In-Reply-To: References: Message-ID: Hello, What Xcode version are you using? Can you produce a simple CMake command line configuration to reproduce the problem? If you set "CMAKE_CXX_FLAGS=-std=c++11?, does the same problem occur? Thanks! Brad > On Jan 23, 2017, at 9:11 AM, Olivier Commowick wrote: > > Hello, > > While debugging something else, I realised that the ITK_COMPILED_CXX_VERSION variable in CMake is always set to 199711L on my macOS 10.12. It sounds weird to me since I am always compiling ITK by enforcing to use CMAKE_CXX_STANDARD to 11. > > It appears to me that Modules/Core/Common/CMakeLists.txt does this test and probably does not account for the fact that cmake uses the 2011 standard or something else. Would someone have any idea of how to correct this or if this is important or not ? > > Best > Olivier > > --- > > Olivier Commowick, Ph.D. > Research Scientist > INRIA Rennes - Bretagne Atlantique, VISAGES Team > Campus de Beaulieu > 35042 Rennes > FRANCE > > Phone: +33 2 99 84 25 92 > Email: Olivier.Commowick at inria.fr > Web: http://olivier.commowick.org/ > > > > > > _____________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Kitware offers ITK Training Courses, for more information visit: > http://www.kitware.com/products/protraining.php > > Please keep messages on-topic and check the ITK FAQ at: > http://www.itk.org/Wiki/ITK_FAQ > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/insight-users > _______________________________________________ > Community mailing list > Community at itk.org > http://public.kitware.com/mailman/listinfo/community From asertyuio at yahoo.fr Tue Jan 24 10:06:26 2017 From: asertyuio at yahoo.fr (asertyuio) Date: Tue, 24 Jan 2017 16:06:26 +0100 Subject: [ITK-users] read palette image as scalar image + palette, instead of RGB image In-Reply-To: References: <6efe579a-06a0-7393-cfb0-ecb71f65bad2@yahoo.fr> Message-ID: Hi D?enan, Thanks, you gave me the right direction! I have adapted itkBPMImageIO, itkTiffImageIO, and itkPNGImageIO so that the user have the choice to expand the color palette or not, and retrive a vector of RGBPixel corresponding to this palette. I will try to submit these changes to gerrit. I'm not quite sure whether I should push a bit more so that this choice could be set directly in itkImageReader. Do you have any advice ? Thanks for your answer, Yann Le 16/01/2017 ? 15:50, D?enan Zuki? a ?crit : > Hi Yann, > > the relevant part of code for PNG format is in itkPNGImageIO.cxx, > approximately lines 365-395 (link > ). > You will need to modify that. If you modify it in a way so it can be > useful for others, please submit your patch to code review > . > > To get access to the specialized functions of the PNG reader, you > would instantiate it directly: > itk::PNGImageIO::Pointer imageIO = ... > std::vector colorTable = imageIO->GetColorTable(); //call a > function you added to PNG reader > > Hope this helps, > D?enan > > On Sun, Jan 15, 2017 at 11:07 AM, asertyuio via Insight-users > > wrote: > > Hi all, > > I want to read a palette image as a scalar image with its indexes > + a vector of RGB, corresponding to the image palette. The format > of the image is TIFF, but can be png or gif as well. > > When I'm reading such palette image, the |itk::ImageIOBase|, as > implemented here > , > tels me that the image has a RGB pixel type. > > |itk::ImageIOBase::PointerimageIO > =itk::ImageIOFactory::CreateImageIO(fileName,itk::ImageIOFactory::ReadMode);| > > Is it possible to know, *through ITK*, whether the image is > actually a palette image, /i.e./ scalar image along with a color > palette, and read this image as a scalar image + palette ? I need > have access to the index, as stored in the file as well as the > color palette used in the file. > > For now, my only solution is to use freeImagePlus to identify and > read this type of image. I haven't found any function in the class > |ImageIOBase| that could relate to that. > > Any help would be appreciated, thanks a lot ! Yann > > _____________________________________ Powered by www.kitware.com > Visit other Kitware open-source projects > at http://www.kitware.com/opensource/opensource.html > Kitware offers > ITK Training Courses, for more information visit: > http://www.kitware.com/products/protraining.php > Please keep > messages on-topic and check the ITK FAQ at: > http://www.itk.org/Wiki/ITK_FAQ > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/insight-users > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From blowekamp at mail.nih.gov Wed Jan 25 08:52:20 2017 From: blowekamp at mail.nih.gov (Lowekamp, Bradley (NIH/NLM/LHC) [C]) Date: Wed, 25 Jan 2017 13:52:20 +0000 Subject: [ITK-users] read palette image as scalar image + palette, instead of RGB image In-Reply-To: References: <6efe579a-06a0-7393-cfb0-ecb71f65bad2@yahoo.fr> Message-ID: This sounds like a great addition. I would not implement the method in ImageFileReader yet. It should be easily enough to add it later. Are you planning of exposing the palette after loading? The MetaDataDictionary could be used for this. But we don?t have any palette data structure or established conventions yet. I look forward to seeing your patch. Brad On Jan 24, 2017, at 10:06 AM, asertyuio via Insight-users > wrote: Hi D?enan, Thanks, you gave me the right direction! I have adapted itkBPMImageIO, itkTiffImageIO, and itkPNGImageIO so that the user have the choice to expand the color palette or not, and retrive a vector of RGBPixel corresponding to this palette. I will try to submit these changes to gerrit. I'm not quite sure whether I should push a bit more so that this choice could be set directly in itkImageReader. Do you have any advice ? Thanks for your answer, Yann Le 16/01/2017 ? 15:50, D?enan Zuki? a ?crit : Hi Yann, the relevant part of code for PNG format is in itkPNGImageIO.cxx, approximately lines 365-395 (link). You will need to modify that. If you modify it in a way so it can be useful for others, please submit your patch to code review. To get access to the specialized functions of the PNG reader, you would instantiate it directly: itk::PNGImageIO::Pointer imageIO = ... std::vector colorTable = imageIO->GetColorTable(); //call a function you added to PNG reader Hope this helps, D?enan On Sun, Jan 15, 2017 at 11:07 AM, asertyuio via Insight-users <insight-users at itk.org> wrote: Hi all, I want to read a palette image as a scalar image with its indexes + a vector of RGB, corresponding to the image palette. The format of the image is TIFF, but can be png or gif as well. When I'm reading such palette image, the itk::ImageIOBase, as implemented here, tels me that the image has a RGB pixel type. itk::ImageIOBase::Pointer imageIO = itk::ImageIOFactory::CreateImageIO( fileName, itk::ImageIOFactory::ReadMode); Is it possible to know, through ITK, whether the image is actually a palette image, i.e. scalar image along with a color palette, and read this image as a scalar image + palette ? I need have access to the index, as stored in the file as well as the color palette used in the file. For now, my only solution is to use freeImagePlus to identify and read this type of image. I haven't found any function in the class ImageIOBase that could relate to that. Any help would be appreciated, thanks a lot ! Yann _____________________________________ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Kitware offers ITK Training Courses, for more information visit: http://www.kitware.com/products/protraining.php Please keep messages on-topic and check the ITK FAQ at: http://www.itk.org/Wiki/ITK_FAQ Follow this link to subscribe/unsubscribe: http://public.kitware.com/mailman/listinfo/insight-users _____________________________________ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Kitware offers ITK Training Courses, for more information visit: http://www.kitware.com/products/protraining.php Please keep messages on-topic and check the ITK FAQ at: http://www.itk.org/Wiki/ITK_FAQ Follow this link to subscribe/unsubscribe: http://public.kitware.com/mailman/listinfo/insight-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From dzenanz at gmail.com Wed Jan 25 12:55:10 2017 From: dzenanz at gmail.com (=?UTF-8?B?RMW+ZW5hbiBadWtpxIc=?=) Date: Wed, 25 Jan 2017 12:55:10 -0500 Subject: [ITK-users] read palette image as scalar image + palette, instead of RGB image In-Reply-To: References: <6efe579a-06a0-7393-cfb0-ecb71f65bad2@yahoo.fr> Message-ID: Hi Yann, this would be a good addition to ITK, please submit a patch to Gerrit. I think it is more logical to keep it in itkBPMImageIO, itkTiffImageIO, and itkPNGImageIO instead of adding it to itkImageFileReader because not all formats support color palette. Whoever needs this functionality could access it through ImageIO. Regards, D?enan On Wed, Jan 25, 2017 at 8:52 AM, Lowekamp, Bradley (NIH/NLM/LHC) [C] < blowekamp at mail.nih.gov> wrote: > This sounds like a great addition. > > I would not implement the method in ImageFileReader yet. It should be > easily enough to add it later. > > Are you planning of exposing the palette after loading? The > MetaDataDictionary could be used for this. But we don?t have any palette > data structure or established conventions yet. > > I look forward to seeing your patch. > Brad > > On Jan 24, 2017, at 10:06 AM, asertyuio via Insight-users < > insight-users at itk.org> wrote: > > Hi D?enan, > > Thanks, you gave me the right direction! > > I have adapted itkBPMImageIO, itkTiffImageIO, and itkPNGImageIO so that > the user have the choice to expand the color palette or not, and retrive a > vector of RGBPixel corresponding to this palette. I will try to submit > these changes to gerrit. > > I'm not quite sure whether I should push a bit more so that this choice > could be set directly in itkImageReader. Do you have any advice ? > > Thanks for your answer, > > Yann > > Le 16/01/2017 ? 15:50, D?enan Zuki? a ?crit : > > Hi Yann, > > the relevant part of code for PNG format is in itkPNGImageIO.cxx, > approximately lines 365-395 (link > ). > You will need to modify that. If you modify it in a way so it can be useful > for others, please submit your patch to code review > . > > To get access to the specialized functions of the PNG reader, you would > instantiate it directly: > itk::PNGImageIO::Pointer imageIO = ... > std::vector colorTable = imageIO->GetColorTable(); //call a > function you added to PNG reader > > Hope this helps, > D?enan > > On Sun, Jan 15, 2017 at 11:07 AM, asertyuio via Insight-users < > insight-users at itk.org> wrote: > >> Hi all, >> >> I want to read a palette image as a scalar image with its indexes + a >> vector of RGB, corresponding to the image palette. The format of the image >> is TIFF, but can be png or gif as well. >> >> When I'm reading such palette image, the itk::ImageIOBase, as >> implemented here >> , >> tels me that the image has a RGB pixel type. >> >> itk::ImageIOBase::Pointer imageIO = >> itk::ImageIOFactory::CreateImageIO( >> fileName, itk::ImageIOFactory::ReadMode); >> >> Is it possible to know, *through ITK*, whether the image is actually a >> palette image, *i.e.* scalar image along with a color palette, and read >> this image as a scalar image + palette ? I need have access to the index, >> as stored in the file as well as the color palette used in the file. >> >> For now, my only solution is to use freeImagePlus to identify and read >> this type of image. I haven't found any function in the class ImageIOBase >> that could relate to that. >> >> Any help would be appreciated, thanks a lot ! Yann >> _____________________________________ Powered by www.kitware.com Visit >> other Kitware open-source projects at http://www.kitware.com/opensou >> rce/opensource.html Kitware offers ITK Training Courses, for more >> information visit: http://www.kitware.com/products/protraining.php >> Please keep messages on-topic and check the ITK FAQ at: >> http://www.itk.org/Wiki/ITK_FAQ Follow this link to >> subscribe/unsubscribe: http://public.kitware.com/mail >> man/listinfo/insight-users > > _____________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Kitware offers ITK Training Courses, for more information visit: > http://www.kitware.com/products/protraining.php > > Please keep messages on-topic and check the ITK FAQ at: > http://www.itk.org/Wiki/ITK_FAQ > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/insight-users > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From dobashisuguru at gmail.com Thu Jan 26 10:51:50 2017 From: dobashisuguru at gmail.com (SDobashi) Date: Thu, 26 Jan 2017 08:51:50 -0700 (MST) Subject: [ITK-users] Histogram for a double precision array Message-ID: <1485445910027-7589566.post@n2.nabble.com> Hello, everyone, I want to calculate a histogram for a double precision C-array (or std::vector). As a simple example, I tried to calculate a histogram for the data double data[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; for the range from 5 to 10 in 10 bins, and I wrote the code listed in the last part of this post. This code worked well for "unsined char" but not for "double". Could anyone suggest me why this could happen? Please tell me a proper way to calculate a histogram of the double precision array. Thanks a lot in advance,. Kind regards, # Results for "unsigned char" data and this is what I expected: Frequency = [ 1, 0, 1, 0, 1, 0, 1, 0, 1, 0 ] Frequency of 0 : (5 to 5.5) = 1 Frequency of 1 : (5.5 to 6) = 0 Frequency of 2 : (6 to 6.5) = 1 Frequency of 3 : (6.5 to 7) = 0 Frequency of 4 : (7 to 7.5) = 1 Frequency of 5 : (7.5 to 8) = 0 Frequency of 6 : (8 to 8.5) = 1 Frequency of 7 : (8.5 to 9) = 0 Frequency of 8 : (9 to 9.5) = 1 Frequency of 9 : (9.5 to 10) = 0 Total count 5 # Results for "double" precision data: Frequency = [ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ] Frequency of 0 : (0 to 0.9009) = 1 Frequency of 1 : (0.9009 to 1.8018) = 1 Frequency of 2 : (1.8018 to 2.7027) = 1 Frequency of 3 : (2.7027 to 3.6036) = 1 Frequency of 4 : (3.6036 to 4.5045) = 1 Frequency of 5 : (4.5045 to 5.4054) = 1 Frequency of 6 : (5.4054 to 6.3063) = 1 Frequency of 7 : (6.3063 to 7.2072) = 1 Frequency of 8 : (7.2072 to 8.1081) = 1 Frequency of 9 : (8.1081 to 9.009) = 1 Total count 10 # Code I wrote: #include "itkImage.h" #include "itkImportImageFilter.h" #include "itkImageToHistogramFilter.h" using namespace std; int main(int argc, char* argv[]) { //typedef unsigned char PixelType; typedef double PixelType; const int Dimension = 1; const int numElems = 10; PixelType data[numElems] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; typedef itk::Image ImageType; typedef itk::ImportImageFilter ImportFilterType; ImportFilterType::Pointer importFilter = ImportFilterType::New(); ImportFilterType::SizeType size; size[0] = numElems; ImportFilterType::IndexType start; start[0] = 0; ImportFilterType::RegionType region; region.SetIndex(start); region.SetSize(size); importFilter->SetRegion(region); importFilter->SetImportPointer(data, numElems, false); importFilter->Update(); ImageType::Pointer img = importFilter->GetOutput(); const unsigned int binsPerDimension = numElems; const unsigned int MeasurementVectorSize = 1; typedef itk::Statistics::ImageToHistogramFilter ImageToHistogramFilterType; ImageToHistogramFilterType::HistogramType::MeasurementVectorType lowerBound(binsPerDimension); lowerBound.Fill(5); ImageToHistogramFilterType::HistogramType::MeasurementVectorType upperBound(binsPerDimension); upperBound.Fill(10); ImageToHistogramFilterType::HistogramType::SizeType histSize(MeasurementVectorSize); histSize.Fill(binsPerDimension); ImageToHistogramFilterType::Pointer imageToHistogramFilter = ImageToHistogramFilterType::New(); imageToHistogramFilter->SetInput(img); imageToHistogramFilter->SetHistogramBinMinimum(lowerBound); imageToHistogramFilter->SetHistogramBinMaximum(upperBound); imageToHistogramFilter->SetHistogramSize(histSize); try { imageToHistogramFilter->Update(); } catch (itk::ExceptionObject& error) { std::cerr << "Error: " << error << std::endl; return EXIT_FAILURE; } ImageToHistogramFilterType::HistogramType* histogram = imageToHistogramFilter->GetOutput(); std::cout << "Frequency = [ "; for (unsigned int i = 0; i < histogram->GetSize()[0]; ++i) { std::cout << histogram->GetFrequency(i); if (i != histogram->GetSize()[0] - 1) { std::cout << "," << std::endl; } } std::cout << " ]" << std::endl; for (unsigned int i = 0; i < histogram->GetSize()[0]; i++) { std::cout << "Frequency of " << i << " : (" << histogram->GetBinMin(0, i) << " to " << histogram->GetBinMax(0, i) << ") = " << histogram->GetFrequency(i) << std::endl; } std::cout << "Total count " << histogram->GetTotalFrequency() << std::endl; } -- View this message in context: http://itk-insight-users.2283740.n2.nabble.com/Histogram-for-a-double-precision-array-tp7589566.html Sent from the ITK Insight Users mailing list archive at Nabble.com. From dzenanz at gmail.com Thu Jan 26 12:08:36 2017 From: dzenanz at gmail.com (=?UTF-8?B?RMW+ZW5hbiBadWtpxIc=?=) Date: Thu, 26 Jan 2017 12:08:36 -0500 Subject: [ITK-users] Histogram for a double precision array In-Reply-To: <1485445910027-7589566.post@n2.nabble.com> References: <1485445910027-7589566.post@n2.nabble.com> Message-ID: Hi Dobashi, adding this line makes the behavior independent from pixel type: imageToHistogramFilter->SetAutoMinimumMaximum(false); And this is because ImageToHistogramFilter's constructor has this: if( typeid(ValueType) == typeid(signed char) || typeid(ValueType) == typeid(unsigned char) ) { autoMinMax->Set(false); } else { autoMinMax->Set(true); } Regards, D?enan On Thu, Jan 26, 2017 at 10:51 AM, SDobashi wrote: > Hello, everyone, > > I want to calculate a histogram for a double precision C-array (or > std::vector). > > As a simple example, I tried to calculate a histogram for the data > > double data[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; > > for the range from 5 to 10 in 10 bins, and I wrote the code listed in the > last part of this post. > > This code worked well for "unsined char" but not for "double". > > Could anyone suggest me why this could happen? > Please tell me a proper way to calculate a histogram of the double > precision > array. > > Thanks a lot in advance,. > > Kind regards, > > # Results for "unsigned char" data and this is what I expected: > > Frequency = [ 1, > 0, > 1, > 0, > 1, > 0, > 1, > 0, > 1, > 0 ] > Frequency of 0 : (5 to 5.5) = 1 > Frequency of 1 : (5.5 to 6) = 0 > Frequency of 2 : (6 to 6.5) = 1 > Frequency of 3 : (6.5 to 7) = 0 > Frequency of 4 : (7 to 7.5) = 1 > Frequency of 5 : (7.5 to 8) = 0 > Frequency of 6 : (8 to 8.5) = 1 > Frequency of 7 : (8.5 to 9) = 0 > Frequency of 8 : (9 to 9.5) = 1 > Frequency of 9 : (9.5 to 10) = 0 > Total count 5 > > # Results for "double" precision data: > > Frequency = [ 1, > 1, > 1, > 1, > 1, > 1, > 1, > 1, > 1, > 1 ] > Frequency of 0 : (0 to 0.9009) = 1 > Frequency of 1 : (0.9009 to 1.8018) = 1 > Frequency of 2 : (1.8018 to 2.7027) = 1 > Frequency of 3 : (2.7027 to 3.6036) = 1 > Frequency of 4 : (3.6036 to 4.5045) = 1 > Frequency of 5 : (4.5045 to 5.4054) = 1 > Frequency of 6 : (5.4054 to 6.3063) = 1 > Frequency of 7 : (6.3063 to 7.2072) = 1 > Frequency of 8 : (7.2072 to 8.1081) = 1 > Frequency of 9 : (8.1081 to 9.009) = 1 > Total count 10 > > > # Code I wrote: > > #include "itkImage.h" > #include "itkImportImageFilter.h" > #include "itkImageToHistogramFilter.h" > > using namespace std; > > int main(int argc, char* argv[]) > { > //typedef unsigned char PixelType; > typedef double PixelType; > const int Dimension = 1; > > const int numElems = 10; > PixelType data[numElems] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; > > typedef itk::Image ImageType; > typedef itk::ImportImageFilter ImportFilterType; > > ImportFilterType::Pointer importFilter = ImportFilterType::New(); > > ImportFilterType::SizeType size; > size[0] = numElems; > > ImportFilterType::IndexType start; > start[0] = 0; > > ImportFilterType::RegionType region; > region.SetIndex(start); > region.SetSize(size); > > importFilter->SetRegion(region); > > importFilter->SetImportPointer(data, numElems, false); > > importFilter->Update(); > > ImageType::Pointer img = importFilter->GetOutput(); > > const unsigned int binsPerDimension = numElems; > > const unsigned int MeasurementVectorSize = 1; > > typedef itk::Statistics::ImageToHistogramFilter > ImageToHistogramFilterType; > > ImageToHistogramFilterType::HistogramType::MeasurementVectorType > lowerBound(binsPerDimension); > lowerBound.Fill(5); > > ImageToHistogramFilterType::HistogramType::MeasurementVectorType > upperBound(binsPerDimension); > upperBound.Fill(10); > > ImageToHistogramFilterType::HistogramType::SizeType > histSize(MeasurementVectorSize); > histSize.Fill(binsPerDimension); > > ImageToHistogramFilterType::Pointer imageToHistogramFilter = > ImageToHistogramFilterType::New(); > imageToHistogramFilter->SetInput(img); > imageToHistogramFilter->SetHistogramBinMinimum(lowerBound); > imageToHistogramFilter->SetHistogramBinMaximum(upperBound); > imageToHistogramFilter->SetHistogramSize(histSize); > > try { > imageToHistogramFilter->Update(); > } > catch (itk::ExceptionObject& error) { > std::cerr << "Error: " << error << std::endl; > return EXIT_FAILURE; > } > > ImageToHistogramFilterType::HistogramType* histogram = > imageToHistogramFilter->GetOutput(); > > std::cout << "Frequency = [ "; > for (unsigned int i = 0; i < histogram->GetSize()[0]; ++i) { > std::cout << histogram->GetFrequency(i); > > if (i != histogram->GetSize()[0] - 1) { > std::cout << "," << std::endl; > } > } > std::cout << " ]" << std::endl; > > for (unsigned int i = 0; i < histogram->GetSize()[0]; i++) { > std::cout << "Frequency of " << i << " : (" > << histogram->GetBinMin(0, i) << " to " << histogram->GetBinMax(0, > i) > << ") = " << histogram->GetFrequency(i) << std::endl; > } > > std::cout << "Total count " << histogram->GetTotalFrequency() << > std::endl; > } > > > > > -- > View this message in context: http://itk-insight-users.22837 > 40.n2.nabble.com/Histogram-for-a-double-precision-array-tp7589566.html > Sent from the ITK Insight Users mailing list archive at Nabble.com. > _____________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Kitware offers ITK Training Courses, for more information visit: > http://www.kitware.com/products/protraining.php > > Please keep messages on-topic and check the ITK FAQ at: > http://www.itk.org/Wiki/ITK_FAQ > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/insight-users > -------------- next part -------------- An HTML attachment was scrubbed... URL: From dobashisuguru at gmail.com Thu Jan 26 19:05:31 2017 From: dobashisuguru at gmail.com (SDobashi) Date: Thu, 26 Jan 2017 17:05:31 -0700 (MST) Subject: [ITK-users] Histogram for a double precision array In-Reply-To: References: <1485445910027-7589566.post@n2.nabble.com> Message-ID: <1485475531499-7589568.post@n2.nabble.com> Hi dzenanz, Thank you very much for your prompt reply. Following your comment, the code properly works for the double precision array! I really appreciate your help. Best regards, S Dobashi -- View this message in context: http://itk-insight-users.2283740.n2.nabble.com/Histogram-for-a-double-precision-array-tp7589566p7589568.html Sent from the ITK Insight Users mailing list archive at Nabble.com. From matt.mccormick at kitware.com Fri Jan 27 15:37:11 2017 From: matt.mccormick at kitware.com (Matt McCormick) Date: Fri, 27 Jan 2017 15:37:11 -0500 Subject: [ITK-users] [ANN] ITK 4.11.0 has been released! Message-ID: The Insight Segmentation and Registration Toolkit (ITK), is an open-source, cross-platform library for multidimensional image analysis. On behalf of the Insight Toolkit community, we are proud to announce that ITK 4.11.0 has been released! Links to the Sourceforge.net tarballs can be found on the download page: http://www.itk.org/ITK/resources/software.html Outline ---------- 1. Introduction 2. New Features 3. ITK Changelog 4. ITK Sphinx Examples Changelog 5. ITK Software Guide Changelog Introduction ----------------- Developed by an international community, ITK collects best-of-breed algorithms for registering, segmenting, analyzing, and quantifying n-dimensional imaging data. The high-quality library facilitates reproducible research, provides a software resource for teaching image analysis, and offers a platform for commercial product development. A few selected highlights for the 4.11 release include the following: - Remote Modules were added to: perturb mesh vertices with additive gaussian noise, accurately benchmark computational performance, perform principal components analysis of scalar, vector, and mesh vertex data, create a run-length encoded memory compression scheme for itk::Image, run N-D morphological contour interpolation, interpolate multi-label images, iterate over multiple images simultaneously, and compute inverse displacement fields. - NumPy bridge support is now enabled by default with NumPy array views of multi-component images and VNL vectors and matrices. - Internal HDF5 was updated to the latest upstream version along with a number of other third-party libraries. Congratulations and well done to the 31 contributors to this release. We would especially like to recognize new contributors: Hastings Greer, Gilles Filippini, Thien Nguyen, Caspar Goch, Mayeul Chassagnard, Somesh Kashyap, Simon Rit, Pierre Barbier de Reuille, and Maeliss Jallais This release introduces a new template class export specification macro, ITK_TEMPLATE_EXPORT. The macro should be used with templated classes to address failing dynamic_cast's and exception catching across binaries on Mac OSX. Bugs were addressed and improvements were made to how the pseudo-random number generator is used. Tests that rely on the random number generator can restore deterministic behavior by explicitly setting the global seed at start: itk::Statistics::MersenneTwisterRandomVariateGenerator::GetInstance()->SetSeed( 121212 ); However, preferred practice is to set the seed at the algorithm level. The following methods can be used for this purpose: void itk::ImageToImageMetric< ? >::ReinitializeSeed( int seed ) void itk::ImageRegistrationMethodv4< ? >::MetricSamplingReinitializeSeed( int seed ) To improve randomness, new instances of the generator start from a different seed; some minor differences in the output of algorithms that use the generator, such as the ITKv3 mutual information metrics and ImageRegistrationMethodv4?s metric sampling point set, should be expected. Additionally, output may change for registration with composite affine transforms; the v4 registration framework now uses corner sampling as opposed to random sampling to estimate their parameter scales. New Features --------------------- * Wrapping Improvements - Python GetArrayFromImage() and GetImageFromArray() from ITKBridgeNumPy are directly accessible from the Python itk namespace. - The itk package loads much faster: individual modules are loaded only when required. - Conversion of ITK images from and to NumPy array using Bridge NumPy supports RGB, RGBA, and Vector images. - VNL vectors and VNL matrices can be converted from and to NumPy objects with respectively the new couple of functions GetArrayFromVnlVector()/GetVnlVectorFromArray() and GetArrayFromVnlMatrix()/GetVnlMatrixFromArray() - The global timestamp is used across all ITK Python modules when built statically - Wrap additional classes such as KernelFunctionBase - itk_python_add_test CMake function added for Python script testing in ITK modules * New Remote Modules - DVMeshNoise - Perturbing mesh vertices with additive gaussian noise - http://hdl.handle.net/10380/3567 - PerformanceBenchmarking - Accurate benchmarking of computational performance - http://hdl.handle.net/10380/3557 - PrincipalComponentsAnalysis - Principal components analysis of scalar, vector, and mesh vertex data - http://hdl.handle.net/10380/3386 - RLEImage - Run-length encoded memory compression scheme for itk::Image - http://hdl.handle.net/10380/3562 - MorphologicalContourInterpolation - N-D morphological contour interpolation - http://hdl.handle.net/10380/3563 - GenericLabelInterpolator - A generic interpolator for multi-label images - http://hdl.handle.net/10380/3506 - MultipleImageIterator - Iterate over multiple images simultaneously - http://hdl.handle.net/10380/3455 - FixedPointInverseDisplacementField - Computes inverse displacement field - http://hdl.handle.net/10380/3222 * Core Improvements - New ITK_TEMPLATE_EXPORT for templated classes resolves cross-binary dynamic_cast on Mac OSX - New MersenneTwisterRandomVariateGenerator instances are initialized with different seeds - Use compiler feature detection in CMake for C++11 features, etc. - New CMake macro itk_module_add_library for creating libraries in ITK modules - Improved support for ccache and distcc with CMAKE__COMPILER_LAUNCHER (CMake >=3.4 required) - Support for .sha512 ExternalData content links - GitHub Pages and data.kitware.com ExternalData repositories added - GPGPU system support for C++11 - Support of new compilers: Visual Studio 15 and XCode 8.2.1 (clang-800.0.42.1) * Filtering Improvements - HessianToObjectnessMeasure moved out of the ITKReview module - New UnsharpMaskImageFilter for image edge enhancement * IO Improvements - TransformFactory class has been moved to a separate module - Spline order added to BSplineTransform identifier - Improved NIFTI orientation support * Documentation Improvements - Updates to the Software Guide, Doxygen, Wiki and Sphinx Examples * Third Party Library Updates - pygccxml updated to v1.8.0 - VNL updated to latest upstream (2016.07.06) - SWIG updated to v3.0.11 - KWSys updated to latest upstream (2016.11.21) - HDF5 updated to v1.8.17 - SCIFIO updated to latest upstream (2016.12.01) - DCMTK updated to 3.6.1_20121012 - CastXML to latest upstream (2016.01.28) * Improved Code Coverage -- we are at 85.44%! - Jon Haitz-Legarreta's extensive code coverage improvements - https://blog.kitware.com/why-should-we-spend-time-writing-tests/ * *Lots* of important bug fixes * And much more! See details in the log below. Changes from v4.11rc02 to v4.11.0 --------------------------------------------------- Bradley Lowekamp (3): BUG: Add itk prefix to TIFF files in binary directory. BUG: Remove ITK_DISALLOW_COPY_AND_ASSIGN as Doxygen private BUG: First IterationEvent is at CurrentIteration==0 Francois Budin (3): ENH: Update SCIFIO to latest revision (2017.01.17) ENH: Update SCIFIO to lastest commit (01.21.2017) BUG: Alpha value created when converted image to RGBA is not always 1 Jon Haitz Legarreta (2): BUG: Fix uninitialized variables in itkGaussianInterpolateImageFunction. BUG: Fix RTTI Superclass name in itkLabelMapMaskImageFilter. Matthew McCormick (2): BUG: Fix cat/echo in ContentLinkSynchronization.sh ENH: Add missing SHA512 content links Richard Beare (1): BUG: Fix precision issues with poly-line FlatStructuring element Stephen Aylward (1): BUG: Target file for modules moved to subdir Targets. Changes from v4.11rc01 to v4.11rc02 --------------------------------------------------- Bradley Lowekamp (5): BUG: Remove unused SimpleImageRegistrationTest baselines ENH: Expose GetNextSeed method in MersenneTwiseter Generator BUG: Add option for fixed seed or wall clock seed for sampling BUG: Use metric random seed in v3 examples BUG: Prefer setting seed at algorithm in "v4" tests. Francois Budin (3): ENH: Update BridgeNumPy to latest version on 2017.01.08 to address ITK-3511 BUG: Extra \$ in doxygen comment BUG: Binary include directory added only if enabled shared Jon Haitz Legarreta (2): DOC: Document itkLabelOverlapMeasuresImageFilter methods. DOC: Fix ITKImageNoise filters' doc TeX errors. Matthew McCormick (1): BUG: Remove invalid ImageRegistration4Test.png.sha512 Max Smolens (1): DOC: Fix itkUnsharpMaskImageFilter documentation typos Simon Rit (1): BUG: ITK-based software was crasing when thread creation failed Changes from v4.10.0 to v4.11rc01 ------------------------------------------------ Bill Lorensen (4): COMP: Restore support for clang 3.0 compiler COMP: Consistent use of ModifiedTimeType ENH: Bump WikiExamples remote module version ENH: Bump WikiExamples version Bradley Lowekamp (57): ENH: Add registered TrasformIO's to exception ENH: Use template or constant for loop stop condition ENH: Updating SWIG version to 3.0.9 COMP: Address VS9 ambiguous std::abs call in Haung calculator COMP: Fix undefined NumericTraits::Zero and One errors with mingw64 BUG: Fix segfault if ~CleanUpObjectFactory called multiple times BUG: Address itkHDF5ImageIO test failures for mingw64 BUG: demonstrate dynamic_cast failure when reading transforms BUG: Address itkHDF5ImageIO test failures for mingw64 ENH: Updating SWIG version to 3.0.10 ENH: Enable CMP0063 New behavior COMP: Enable hidden visibility property with vxl static libraries COMP: Enable hidden visibility property with HDF5 static libraries COMP: Enable hidden visibility property with HDF5 static libraries BUG: Match Add2 function to AddImageFilter documentation ENH: Improve support for std::complex with PowImageFilter ENH: Explicitly mark required files for dependent tests COMP: Bypass XCode 7.3,8 internal compilation error COMP: Address CMake configuration error with itkJPEG2000Test03 property BUG: Correct test's REQUIRED_FILES to only the input. ENH: move HessianToObjectnessMeasure filter out of Review ENH: Separate TransformFactory class into separate module DOC: Add links between similar label to rgb filters ENH: Separate data from function calls COMP: Fix changed Graft method ENH: Reduce template dependencies on CalculateRotationMatrix ENH: Add Functor Accessors to LabelMapToRGB filter BUG: Enable VirtualDomain and FixedTransform in RegMethv4 BUG: Use BSpline Order 3 for 2D in transform factory. ENH: Add spline order to BSplineTransform's string id ENH: Adding initial CircleCi configuration file COMP: Fix float to unsigned integer conversion warnings BUG: Include installed modules in ITK_MODULES_ENABLED COMP: Address CMake error that ITKGPUCommon is not in export COMP: Address wrong library types with VS and shared libraries BUG: Ensure CreateImageIO is concurrent thread safe ENH: Mark HDF5 CMake options as internal COMP: Add template export declaration for ParametricPath COMP: Correct TEMPLATE_EXPLICIT definition in Path module ENH: Factor out common code in the TrasformFactoryBase registration ENH: Add CMake variable for max transform dimension, defaults 4 ENH: Create CMake module to check for private RTTI compatibility ENH: Improving setting of default ITK_TEMPATE_VISIBILITY_DEFAULT COMP: Correct ifndef value to allow user defined ITK_TEMPLATE_EXPORT BUG: Add explicit instantiate for ObjectToObjectOptimizerBase COMP: Use add_definitions for CMake 2.8.9 compatibility COMP: Add warning suppression for distcc warning ENH: Explicitly instantiate the optimizer base over float BUG: Use IsLinear to check if transform is "affine" ENH: Remove unneeded includes of random iterator header ENH: Improve thread-safety for Generator, and unique New sequence ENH: Do not use global random generator BUG: Update v3 registration metrics to use local seed ENH: Prefer setting local seed over global in tests. ENH: Update SWIG to latest 3.0.11 release BUG: relax testing parameters for v3 translation registration BUG: Restore baseline for debug registration Caspar Goch (2): BUG: Use printable type for RGBA pixel ostream for ITK-3501 STYLE: Remove extra space for ITK-3501 Christina Rossmanith (1): DOC: Added more details to the class Doxygen documentation. Davis Vigneault (2): COMP: VCL_DEFINE_SPECIALIZATION not defined ENH: Add remote module DVMeshNoise D?enan Zuki? (27): BUG: Fixing CID-1355433 (IDENTICAL_BRANCHES) ENH: Adding MultipleImageIterator as a remote module COMP: enables TBB 4.4 back-end for VTK7's SMP COMP: enabling position independent code flag for FFTW ENH: adding configuration file for code reformatting tool clang-format ENH: Updating hooks to work with Windows/TortoiseGit/KDiff3 COMP: Fixing -fPIC flag passing with Ninja build system ENH: Adding RLEImage as a remote module ENH: Updating uncrustify configuration to current git version STYLE: better compliance with ITK style STYLE: A new option in uncrustify, updating the config file accordingly ENH: Adding MorphologicalContourInterpolation as a remote module ENH: improving documentation BUG: fixing buffer growing endlessly, as reported by Timothee Evain BUG: fixing buffer growing endlessly, as reported by Timothee Evain STYLE: default uncrustify configuration file is less aggressive COMP: Fixing warning COMP: VS15 compiler fix BUG: casting -9 to unsigned produced unwanted result BUG: Ensuring consistency between debug and release COMP: Updating LesionSizingToolkit after some recent compile fixes COMP: respect option METAIO_USE_NAMESPACE ENH: updating version of AnisotropicDiffusionLBR ENH: adding UnsharpMaskingImageFilter COMP: explicitly cast to output type BUG: double call to update would cause empty output image ENH: Updating RLEImage remote module. Change-log: Eugene Prilepin (4): ENH: Add the "ITK_USE_GPU" to ITK Config BUG: Fix API for set/get "LaplacianImageFilter" object ENH: Add support of images types with the 'CovariantVector' pixel type ENH: Add python test for the 'GradientVectorFlowImageFilter' wrap Francois Budin (52): ENH: Adding GetArrayFromImage in python itk namespace ENH: Adding GetImageFromArray in python itk namespace ENH: *_WRAP_* variable per external module BUG: ImportImageFilter not responsible of memory management ENH: New remote module GenericLabelInterpolator DOC: SetNumberOfOutputs had wrong comment BUG: lazyAttributes dictionary keys could be over-ridden BUG: lazyAttributes dictionary keys could be over-ridden BUG: Fix recent update of HDF5 (1.8.17) ENH: Update SCIFIO to latest version on 08/23/2016 ENH: Addition of the remote module FixedPointInverseDisplacementField ENH: Update SCIFIO to latest version on 08/29/2016 BUG: Path to commit was relative instead of absolute ENH: Path to SetupForDevelopment is relative, not absolute BUG: LSMImageIO write function was not checking image dimension BUG: LSMImageIO was not checking correctly image dimension BUG: Missing associated test data BUG: Missing associated test data ENH: Bump CMakeLists.txt version to 4.10.1. BUG: Quotes are not escaped in configured cmake file ENH: Improving API of Graft() in itk::Image ENH: Updating ITKGenericLabelInterpolator remote module ENH: Update ITKIOTransformDCMTK remote module BUG: Factory registration should depend on ITK_BUILD_SHARED COMP: Updating DCMTK compilation for Ninja ENH: Update version of DCMTK to 3.6.1_20121012 ENH: Update SCIFIO to latest version on 10/25/2016 BUG: Swig and PCRE do not support space in installation paths BUG: exit() call from within piped commands was not exiting the script BUG: Typo in folder creation command ENH: Only display message for transform registered multiple times in debug ENH: Image spacing must be positive BUG: Supported extensions by PNG IO were not added in constructor. DOC: Documentation in itkRBGAPixel and itkRGBPixel was incorrect. ENH: Update SCIFIO to lastest (2016.12.01) ENH: FixedPointInverseDisplacementField moved to InsightSoftwareConsortium COMP: Remove compilation warnings ENH: Improved support of ccache and distcc BUG: GPUImage regression due to API change. ENH: Update Bridge Numpy (2016.12.05) ENH: Update VariationalRegistration to remove warnings during compilation ENH: FindPythonLibs does not support both debug and release python libraries ENH: Update VariationalRegistration BUG: Missing ITK_TEMPLATE_EXPORT in forward declaration of itk::ImageBase BUG: Missing ITK_TEMPLATE_EXPORT in itkOptimizerParametersHelper BUG: Missing ITK_TEMPLATE_EXPORT in templated class BUG: Remove linkage warnings on MacOS BUG: HDF5 CMake installation directory variable had not been updated BUG: Missing include header in AnisotropicDiffusionBLR remote module hxx files COMP: Silencing unused variable warning in itkTimeStamp STYLE: Improve style checking by using module ITKKWStyleOverwrite.txt COMP: OS*Barrier functions are deprecated on MacOS 10.12 GCC-XML Upstream (1): ENH: pygccxml v1.8.0 (reduced) Gert Wollny (1): BUG: Relax vnl_complex floating point comparisons for i386 Gilles Filippini (1): BUG: Use NATIVE_HBOOL for encoding HDF5 types. HDF Group (1): ENH: hdf5 1.8.17-r30218 (reduced) Hans Johnson (23): COMP: Use cmake WriteCompilerDetectionHeader ENH: Use itk_compiler_detection versions COMP: Need ITK_NOEXCEPT_OR_THROW macro. COMP: Provide consistent granular C++11 support STYLE: Use granular ITK_COMPILER_CXX_STATIC_ASSERT STYLE: Prefer to use consistent definitions COMP: Improve robustness of identifying the compiler standard used BUG: try_compile for AlignAs were always failing STYLE: Provide a well documented macro for repeated code STYLE: Delete functions in consistent way COMP: GPU baseclass ivars need to be protected COMP: Remove unnecessary circular dependancy COMP: Add long long usage for HDF5 COMP: Add long long usage for HDF5 STYLE: Prefer static small array to dynamic array BUG: Confusing interface for FFTW wisdom files STYLE: Output dimension from OutputImageType STYLE: Code review style cleanups STYLE: Prefer to use ITK AssertOrThrow macros ENH: Add OverrideBoundaryCondition logic ENH: Provide mechanism for enhanced NIFTI support BUG: Use NIFTI sform/qform conventions correctly ENH: Remove ambiguity about sform/qform Hastings Greer (8): BUG: ITK-3448 Wrap itkQuadEdgeCellTraitsInfo more specifically BUG: make itkTriangleHelper instantiable to ease wrapping BUG: remove lsqr because of license issues ITK 1160 BUG: make itkTriangleHelper instantiable to ease wrapping BUG: initialize X to zero in lsmr Solve BUG: Labled Point Set Registration: test multiple labels BUG: Fix python wrapping of Cuberille remote module BUG: Add test demonstrating Python global timestamp issue Jean-Christophe Fillion-Robin (5): STYLE: UseITK: Set ImageIO exceptions using new convention. See #3393 STYLE: MeshIO: Moves virtual destructor into cpp files. See #3393 STYLE: Update MeshIO factories to use RegisterFactoryInternal. See #3393 STYLE: MeshIO: Move MeshFileWriterException into its own file. See #3393 STYLE: MeshIO: Remove unused include from headers. See #3393 Johan Andruejol (3): ENH: Add missing itkKernelFunctionBase wrapping ENH: Add PrincipalComponentsAnalysis remote module COMP: Override cannot be used with inline Jon Haitz Legarreta (216): ENH: Improve itkFlatStructutingElement coverage. ENH: Improve itkPathToImageFilter class coverage. ENH: Improve itkIsolatedWatershedImageFilter coverage. ENH: Improve itkLogSigmoidTransferFunction coverage. STYLE: Improve itkBSplineTransform doc style. ENH: Improve GaborKernelFunctionCoverage. PERF: Remove duplicate itkMath include STYLE: Move the PrintSelf method to the end STYLE: Improve the itkScalarToRGBColormapImageFilter style. STYLE: Delete duplicate method documentation STYLE: Remove method documentation from implementation file STYLE: Improve GACLevelSet classes' style STYLE: Improve test style ENH: Improve itkGaussianDerivativeImageFilter coverage. ENH: Improve the itkScalarToRGBColormapImageFilter coverage STYLE: Improve itkScalarToRGBColormap test style ENH: Improve GACLSImageFilter classes' coverage STYLE: Improve comment style in GACLS tests ENH: Improve itkImportImageFilter coverage ENH: Improve itkVideoFileReader coverage ENH: Improve itkVideoFileWriter coverage STYLE: Improve the itkVideoFileWriter style. STYLE: Imrpove itkVideoFileReader style. ENH: Improve the itkBSplineControlPointImageFunction coverage STYLE: Improve the itkIntensityWindowingImageFilter style STYLE: Improve the itkIntensityWindowingImageFilter test style ENH: Improve ImageToSpatialObjectRegistrationMethod coverage STYLE: Improve test style ENH: Improve MaskNeighborhoodOperatorImageFilter coverage ENH: Improve itkMeshFileWriter coverage ENH: Improve RescaleIntensityImageFilter coverage. ENH: Improve itkClampImageFilter coverage. BUG: Fix ivar type casting in PrintSelf. STYLE: Improve MRIBiasFieldCorrectionFilter style. ENH: Improve MRIBiasFieldCorrectionFilter coverage. ENH: Improve itkIntensityWindowingImageFilter coverage BUG: Fix Run-time type information in CSV module classes. ENH: Improve the itkHistogram class code coverage. DOC: Fix documentation typo. STYLE: Improve the ImproveRescaleIntensityImageFilter style. PERF: Make the itkVideoFileReader ivars private PERF: Make itkVideoFileWriter ivars private ENH: Improve coverage for itk::OrientImageFilter. STYLE: Improve itk::OrientImageFilter class style. ENH: Improve itkCSVNumericObjectFileWriter coverage. ENH: Add missing standard class typdefs. ENH: Improve itkVoronoiSegmentationImageFilter coverage. ENH: Improve itkVoronoiSegmentationImageFilter style. STYLE: Improve the MalahanobisDistanceThresholdImageFunction style. ENH: Improve coverage for itkMalahanobisDistanceThreshold. ENH: Improve itk::MinimumMaximumImageCalculator coverage. ENH: Improve itkMinimumMaximumImageCalculator style. BUG: Fix type mismatch in test. STYLE: Improve itkPolylineMaskImagefilter style. ENH: Improve itkPolylineMaskImageFilter coverage. ENH: Improve itkFileListVideoStyle. ENH: Improve itkLandmarkBasedTransformInitializer coverage. ENH: Add baseline image to itkPolylineMaskImageFilter test. ENH: Improve coverage for itkBSplineTransformInitializer. STYLE: Improve itkBSplineTransformInitializer doc style. ENH: Enhance itkBSplineTransformInitializer implementation. DOC: Fix typo in method documentation. ENH: Improve the itkRegularStepGradientDescentOptimizerv4 style. STYLE: Improve the itkSimpleContourExtractorImageFilter style. ENH: Exercise the class' Get methods. ENH: Improve coverage for itkStatisticsOpeningLabelMapFilter. ENH: Improve style for itkThresholdLabelerImageFilter. ENH: Improve itkThresholdLabelerImageFilter coverage. ENH: Get internal ImageIO via a const macro. ENH: Improve the itkSimpleContourExtractorImageFilter coverage. STYLE: Improve the itkMetaArray class style. ENH: Improve MetaArrayReader/Writer coverages. ENH: Improve the itkCovarianceImageFunction style. STYLE: Improve itkVoronoiDiagram2DGenerator style. ENH: Improve VoronoiDiagram2DGenerator coverage. STYLE: Improve the itkBayesianClassifierImageFilter style. STYLE: Improve the itkMetaArrayWriter style. ENH: Improve itkCovarianteImageFunction coverage. COMP: Fix signed/unsigned int comparison warning. DOC: Improve itkGrayscaleDilateImageFilter documentation. DOC: Improve documentation for itkGrayscaleErodeImageFilter. DOC: Improve ConfigureHistogram method documentation. STYLE: Improve the itkMovingHistogramMorphologyImagefilter style. BUG: Fix Superclass name in RTTI. STYLE: Improve itkGaussianInterpolateImageFunction style. ENH: Improve coverage for itkGaussianInterpolateImageFunction. ENH: Improve itkBayesianClassifierImageFilter coverage. ENH: Add itkBSplineControlPointImageFilter RTTI. STYLE: Improve itkBSplinecontrolPointImageFilter style. ENH: Improve itkBSplineControlPointImageFilter coverage. ENH: Improve coverage for itkRegularStepGradientDescentOptimizerv4. STYLE: Improve the class implementation file style. STYLE: Improve the itkResampleImageFilter style. DOC: Fix typo in GetMTime method doc. STYLE: Remove out-of-body implementation doc ENH: Improve itkResampleImageFilter coverage. ENH: Improve itkAbsImageAdaptor and Filter coverage. BUG: Fix itkLSMImageIO class' Superclass name. ENH: Improve the itkInterpolateImagePointsFilter coverage. ENH: Improve itkPowImageFilter coverage. BUG: Fix ConvolutionImageFilter RTTI. STYLE: Use initialization lists. STYLE: Improve BinaryFunctorImageFilter style. ENH: Improve itkMinimumImageFilter code coverage. BUG: Fix Linux-x86_64-gcc4.1 warning on implicit conversion. ENH: Improve MaximumImageFilter coverage. BUG: Fix conversion to PixelType conversion. COMP: Fix double to unsigned char conversion warning. ENH: Improve coverage for itkNormalizeToConstantImageFilter. BUG: Fix itkSquaredDifferenceErrorFunction RTTI. ENH: Improve itkMeanImageFunctionCoverage. ENH: Improve itkSquareImageFilter coverage. STYLE: Improve the itkSquaredDifferenceErrorFunction style. STYLE: Enhance style for itkNormalizeToConstantImageFilter. STYLE: Improve itkMeanImageFunction style. ENH: Remove unnecesary call to filter print. ENH: Improve itkRegionOfInterestImageFilter coverage. STYLE: Improve itkRegionOfInterestImageFilter style. STYLE: Improve itkPasteImageFilter style. STYLE: Improve itkJoinSeriesImageFilter style. BUG: Fix itkPadLabelMapFilter RTTI Superclass. COMP: Address std::cout.precision conversion warning. ENH: Improve itkBayesianClassifiertImageFilter coverage. ENH: Improve itkPadLabelMapFilter coverage. ENH: Improve itkJoinSeriesImageFilter coverage. ENH: Improve the itkPasteImageFilter coverage. ENH: Improve MeanImageFilter coverage. COMP: Address std::cout.precision conversion warning. ENH: Improve TernaryMagnitudeImageFilter coverage. ENH: Improve FFTConvolutionImageFilter coverage. DOC: Fix class documentation in ternary magnitude filters. ENH: Improve ConstrainedValueDifferenceImageFilter coverage. ENH: Improve AndImageFilter coverage. ENH: Add baseline test to itkTernaryMagnitudeImageFilter. ENH: Use MD5 comparison framework in baseline test. ENH: Improve itk::VectorRescaleIntensityImageFilter coverage. STYLE: Improve the itkVectorRescaleIntensityImageFilter style. ENH: Print missing ivar in filter PrintSelf method. ENH: Improve itkComplexToImaginaryFilter coverage. ENH: Improve itkComplexToPhaseImageFilter coverage. ENH: Improve itkComplexToModulusImageFilter coverage. ENH: Improve itkComplexToRealImageFilter coverage. ENH: Improve itkVectorResampleImageFilter coverage. ENH: Add GetTransform method. ENH: Improve itkConstrainedValueAdditionImageFilter coverage. ENH: Improve itkModulusImageFilter coverage. ENH: Improve itkLog10ImageFilter coverage. ENH: Imporve itkMagnitudeAndPhaseToComplexImageFilter coverage. ENH: Improve itkLogImageFilter coverage. ENH: Improve itkInvertIntensityImageFilter coverage. STYLE: Improve itkInvertIntensityImageFilter style. DOC: Add missing doc to itkInvertIntensityImageFilter. STYLE: Improve itkIntensityWindowingImageFilter style. STYLE: Use initialization lists. ENH: Improve itkIntensityWindowingImageFilter coverage. ENH: Improve itkNaryMaximumImageFilter coverage. COMP: Fix std::precision type casting warning. ENH: Improve itkPointSetToPointSetRegistrationMethod coverage. STYLE: Improve the itkPointSetToPointSetImageRegistrationMethod style. ENH: Remove SmartPointers being explicitly initialized to null. STYLE: Improve the itkPointSetToImageRegistrationMethod style. ENH: Improve itkPointSetToImageRegistration coverage. STYLE: Change the name of the itkPointSetToImageRegistrationMethod test. STYLE: Improve itkVectorResampleImageFilter style. STYLE: Improve the itkAntiAliasBinaryImageFilter style. ENH: Improve trigonometric function filters' coverage. STYLE: Remove test names from std::out messages. ENH: Improve Boolean Algebra ImageFilters coverage. STYLE: Improve the EuclideanDistancePointMetric style. ENH: Improve itkSigmoidImageFilter coverage. STYLE: Improve itkCropImageFilter style. ENH: Improve itkCropImageFilter coverage. ENH: Improve RGBToLuminanceImageFilter and Adaptor coverage. ENH: Improve itkRescaleIntensityImageFilter coverage. ENH: Improve the itkMatrixSelectionImageFilter coverage. ENH: Improve itkTanImageFilter and Adaptor coverage. ENH: Increase itkSqrtImageFilter and Adaptor coverage. ENH: Increase itkTernaryOperatorImageFilter coverage. ENH: Increase itkSymmetricEigenAnalysisImageFilter coverage. STYLE: Improve itkScalarImagekmeansImageFilter style. STYLE: Conform to TEST_SET_GET_VALUE definition. BUG: Fix uninitialized variable due to dynamic analysis defect. BUG: Fix uninitialized variable defect reported by valgrind. ENH: Improve the itkPointSetToPointSetRegistrationTest. ENH: Improve the itkPointSetToImageRegistrationTest. ENH: Increas BinaryMagnitudeImageFilter coverage. STYLE: Remove test name from std output. ENH: Increase MagnitudeImageFilter coverage. BUG: Fix uninitialized variable defect reported by valgrind. BUG: Fix Superclass name in RTTI. STYLE: Improve itkFrustumSpatialFunction style. STYLE: Improve the itkConicShellInteriorExteriorSpatialFunction style. BUG: Fix Superclass template argument list. STYLE: Improve the itkTorusInteriorExteriorSpatialFunction style. STYLE: Improve the itkCheckerBoardImageFilter class style. ENH: Improve the itk::LabelVotingImageFilter coverage. ENH: Improve itkCheckerBoardImageFilter coverage. STYLE: Improve itk::LabelVotingImageFilter style. STYLE: Improve the itkHoughTransform2DCirclesImageFilter style. ENH: Add test for itk::FrustumSpatialFunction class. ENH: Improve itkConnectedThresholdImageFilter coverage. STYLE: Improve itkConnectedThresholdImageFilter style. BUG: Fix FrustumSpatialFunction internal precision conversion. COMP: Fix implicit conversion warning. STYLE: Improve itkThresholdImageFilter style. ENH: Add test for itk::TorusInteriorExteriorSpatialFunction. BUG: Fix Superclass template argument list. ENH: Improve itkUnsharpMaskingImageFilter implementation. ENH: Improve the itkUnsharpMaskingImageFilter coverage. ENH: Fix UnsharpMaskingImageFilter test inconsistencies. BUG: Add missing itkTypeMacro. DOC: Document the member variables. BUG: Fix the itkImageSource RTTI class name, STYLE: Improve itkLabelImageGaussianInterpolateImageFunction style. ENH: Finish itkGaussianInterpolateImageFunction PrintSelf. STYLE: Improve itkLabelOverlapMeasurementImageFilter style. KWSys Robot (6): KWSys 2016-06-30 (96f06c8e) KWSys 2016-10-23 (b630d2f5) KWSys 2016-11-03 (37306a1c) KWSys 2016-11-08 (2b3e2b1c) KWSys 2016-11-09 (18c65411) KWSys 2016-11-21 (cb55cf5a) Maeliss Jallais (1): BUG: Add unsigned and signed short to the wrapping of vnl_matrix Matthew McCormick (85): PERF: Simplify HilbertPath numberOfPathVertices computation. BUG: CID 1355469 NNetClassifierTest4 unintended integer division. BUG: Update Cuberille Remote for version check fix. ENH: Bump ITK version to 4.11.0. BUG: Fix HDF5ImageIO type information. BUG: Fix H5File memory leak in HDF5ImageIO. DOC: Collect Francois Budin's contributions in .mailmap BUG: Limit WRAP_ITK_MODULES when building externally STYLE: Improvements to ResourceProbe report output. ENH: Add a useTabs argument to ResourceProbe::Report. ENH: Add standard error measure to the ResourceProbe ENH: Add itk_python_add_test function. BUG: Remove VNL file from subtree merge. COMP: Fix wrapping with a space in the Python include path BUG: Fix PermuteAxesImageFilter pipeline method visibility BUG: Initialize PermuteOrder and FlipAxes in OrientImageFilter BUG: ResampleImageFilter honor isInside output of the transform method COMP: Avoid recursive include of itkMath.h COMP: Fix VXL header installation locations BUG: ClampImageFilterTest for older GCC, InPlaceOn DOC: Add CONTRIBUTING.md file to the top level. COMP: Update VariationalRegistration to address Doxygen warnings BUG: Compiler detections file installed into ITK build tree location COMP: Do not use string(TIMESTAMP. COMP: Remove HDF5 -std=c99 for C++ files BUG: Do not build HDF5 static library with a shared build ENH: Add PerformanceBenchmarking Remote Module COMP: Remove duplicate wrappings for ResampleImageFilter BUG: Put Python test output files in the build tree BUG: Improve HDF5ImageIO::CloseDataSet name COMP: Use add_python_test PythonLazyLoadingImage COMP: Address missing override it itkFactoryTestLib.cxx BUG: Index,Size,Offset constructors present in Python with C++11 COMP: Address missing override it itkFactoryTestLib.cxx BUG: PerformanceBenchmarking as EXCLUDE_FROM_DEFAULT ENH: Bump SetupForDevelopment version BUG: Add missing ZLib deflate support to HDF5 BUG: Address memory leak, remove NumPy build dep in BridgeNumPy COMP: Do not set ITK_LIBRARY_BUILD_TYPE in ITKTransformFactory COMP: Do not set ITK_LIBRARY_BUILD_TYPE in ITKTransformFactory BUG: Check when ITK_WRAP_VECTOR_COMPONENTS doesn't include ITK_WRAP_IMAGE_DIMS BUG: RichardsonLucyDeconvolutionImageFilter with non-null input Image Origin BUG: Fix inconsistent Twister start with Initialize(seed) and SetSeed(seed) BUG: Do not hard code CMake scripts in HDF5 COMP: Workaround Emscripten ITKCommon test build failure COMP: Do embed fancy HDF5 libsettings with Emscripten COMP: Add missing H5T_patch_vlen_file declaration ENH: Bump CastXML to 2016-10-11 master. COMP: Workaround Emscripten ITKCommon test build failure BUG: Swap CastXML hashes for Mac OSX and Windows ENH: Sync ExternalData.cmake with upstream CMake 3.6.2 COMP: Fix VNL tests when cross-compiling ENH: ExternalData multi-algorithm support ENH: ExternalData support for data.kitware.com BUG: Install missing H5pubconf.h BUG: Use SpacePrecisionType in TileImageFilter BUG: Use internal ExternalData_Add_Target ENH: Run .sha512, .md5 simultaneous modification pre-commit check BUG: Correct CastXML Windows binary BUG: Support non-zero Index in LevelSetNeighborhoodExtractor ENH: Add ArchiveTestingDataOnGirder.py BUG: Correct AtanRegularizationHeavisideStepFunction derivative ENH: Add Utilities/Maintenance/ContentLinkSynchronization.sh BUG: Remove extra HessianToObjectness content links ENH: Wrap SpatialFunction float types with ITK_WRAP_float BUG: Bump PerformanceBenchmarking to 2016-11-04 BUG: itk_python_expression_add_test too many quotes. ENH: Wrap VectorImage with complex real pixel types ENH: Bump PerformanceBenchmarking to 2016-11-07 BUG: Do not assume zero Index in ReinitializeLevelSetImageFilter ENH: Create itk_module_add_library macro BUG: Update computeCodeCoverageLocally.sh for KWStyle addition COMP: Install a newer version of CMake on CircleCI ENH: Use GitHub Pages as the first ExternalData resource ENH: Add tests to demonstrate OSX dynamic_cast failure BUG: Use random seed with for MersenneTwisterRandomVariateGenerator. BUG: Enable program global timestamp BUG: Set random number seed in Mattes metric test BUG: Notify builder that ITK_DYNAMIC_LOADING is required with wrapping BUG: Define ITK_DYNAMIC_LOADING before ITK_WRAP_PYTHON BUG: Set random number seed mutual information metric tests BUG: Wrap std::vector< itk.Point > BUG: Fix wrapping of LandmarkBasedTransformInitializer BUG: Rename UnsharpMaskingImageFilter to UnsharpMaskImageFilter DOC: Add D?enan Zuki? to .mailmap Max Smolens (4): COMP: CID-1266557 StatisticsLabelMapFilter uninitialized scalar field BUG: CID-1355438 QuadEdgeTest1 resource leaks COMP: CID-1355472 MIRegistrationFunction unused value COMP: Fix link errors for VNL template instantiations on Windows Mayeul Chassagnard (7): BUG: Test added and error fixed in HDF5ImageIO ENH: Update add_library TO itk_module_add_library COMP: Set Policy CMP0023 target_link_libraries for Modules/ThirdParty/VNLI... BUG: Add ITK_TEMPLATE_EXPORT to template classes BUG: Fix errors linked to dyn_cast merge BUG: Restore old ITKModule_TEMPLATE_EXPORT specification for classes BUG: dash3win7 dashboard build error unresolved external symbol Michka Popoff (3): ENH: Update UpdatepygccxmlFromUpstream.sh for v1.8.0 ENH: Update igenerator.py for pygccxml v1.8.0 COMP: Use pygccxml's public API for apply definitions Pierre Barbier de Reuille (2): COMP: Fix function naming error when using FFTWD COMP: Fix function naming error when using FFTWD Sean McBride (1): COMP: Bypass HDF5 bugs under TSan Simon Rit (2): COMP: remove C++11 compiler warning for CUDA compilations COMP: remove C++11 compiler warning for CUDA compilations Somesh Kashyap (2): BUG: Override TransformCategoryType for AzimuthElevationToCartesianTransform BUG: -Added test case for itkAzimuthElevationToCartesianTransform Sumedha Singla (1): ENH: Updated the git tag for ITK-Minimal-Path-Extraction remote module Taylor Braun-Jones (4): COMP: Skip path length checks if ITK_SKIP_PATH_LENGTH_CHECKS is enabled COMP: Fix truncation from double to float warning DOC: Fix incorrect itkFactorylessNewMacro documentation COMP: Only include the headers for required OpenCV modules Thien Nguyen (1): PERF: SmapsFileParser unnecessary dynamic_cast VXL Maintainers (4): VNL 2016-05-15 (14f97ab4) VNL 2016-06-22 (23a93adb) VNL 2016-06-29 (d62a2d70) VNL 2016-07-06 (acfa62cc) Vladimir S. FONOV (1): COMP: Build against GCC 5.3.1 Zach Williamson (2): ENH: Update Remote Module Tags BUG: Fix Python Wrappings in C++11 Ziv Yaniv (1): BUG: Metric sampling percentage accepted values outside (0.0, 1.0]. ITK Sphinx Examples Changes ------------------------------------------- Matt McCormick (6): BUG: Use GDCM ITK module name ENH: Rename ReadDICOMSeriesAndWrite3DImage BUG: Add tests for ReadDICOMSeriesAndWrite3DImage ENH: Bump ITK Superbuild version to 2016-09-20 master ENH: Add Python version of ReadDICOMSeriesAndWrite3DImage ENH: Add Python version of CreateAnRGBImage Michka Popoff (5): ENH: Use same Python interpreter as ITK for wrapping tests BUG: Fix ResampleAnImage example (Python3) ENH: Add Python example for ApplyAFilterOnlyToASpecifiedRegionOfAnImage ENH: Add 7 Python examples to Core/Common ENH: Add BoundingBoxOfAPointSet Python example ITK Software Guide Changes ---------------------------------------- Matt McCormick (8): DOC: Move the location for obtaining the software DOC: Remove reference to ITKApps ENH: Bump ITK ExternalProject version to 2016-11-02 master DOC: Document the ITK module registry ENH: Bump ITK ExternalProject version to v4.11rc01 master DOC: Update CMake hyperlinks DOC: Update minimum required CMake version to 2.8.9 DOC: Add section on static and shared libraries. From dzenanz at gmail.com Sun Jan 29 16:41:08 2017 From: dzenanz at gmail.com (=?UTF-8?B?RMW+ZW5hbiBadWtpxIc=?=) Date: Sun, 29 Jan 2017 16:41:08 -0500 Subject: [ITK-users] [ITK-dev] [ANN] ITK 4.11 Release Candidate 2 is ready for testing! In-Reply-To: References: Message-ID: RC3 got released on Friday, and it builds ITK without issue! On Thu, Jan 19, 2017 at 5:00 PM, Taylor Braun-Jones wrote: > Cool, thanks D?enan! > > On Thu, Jan 19, 2017 at 2:14 PM, D?enan Zuki? wrote: > >> ... and more: >> >> Additionally, we've added ITK and VTK libraries from GitHub to our daily >> compiler testing and validations. So in short, from now on we will be >> releasing MSVC compiler versions to the public where live GitHub ITK and >> VTK sources will build clean. That's a promise :). >> >> Thanks, >> Ulzii Luvsanbat >> Visual C++ Team >> >> On Thu, Jan 19, 2017 at 1:21 PM, D?enan Zuki? wrote: >> >>> A new reply in that bug report: >>> >>> Hi, there's a lag when we, the compiler team, tags the bug resolved and >>> the fix actually gets included in the VS release. We apologize for that, >>> it's just the way how engineering works to get everything ready in VS to be >>> shipped. This specific bug has been fixed for the VS2017 RC3 release, which >>> is only days away from shipping. >>> >>> If you'd you like to validate your project before that with a private >>> Nuget package of the compiler toolset, then please send me an email here >>> (batul at Microsoft dot com), and I can get you going. >>> >>> On Thu, Jan 19, 2017 at 12:46 PM, D?enan Zuki? >>> wrote: >>> >>>> Hi Taylor, >>>> >>>> I submitted a bug >>>> >>>> report to Microsoft about it, and somebody said they will add ITK to their >>>> compiler test suite. Also, that crashing bug was supposedly fixed for >>>> "final release". >>>> >>>> Regards, >>>> D?enan >>>> >>>> On Thu, Jan 19, 2017 at 12:18 PM, Taylor Braun-Jones < >>>> taylor at braun-jones.org> wrote: >>>> >>>>> Any chance the 4.11 release could have at least some preliminary >>>>> support for VS2017? Right now it crashes the compiler: >>>>> >>>>> C:\src\itk\modules\core\common\include\itkPromoteType.h(97): fatal >>>>> error C1001: An internal error has occurred in the compiler. >>>>> (compiler file 'msc1.cpp', line 1469) >>>>> To work around this problem, try simplifying or changing the program >>>>> near the locations listed above. >>>>> Please choose the Technical Support command on the Visual C++ >>>>> Help menu, or open the Technical Support help file for more >>>>> information >>>>> Internal Compiler Error in C:\PROGRA~2\MIB055~1\2017\COMM >>>>> UN~1\VC\Tools\MSVC\1410~1.247\bin\HostX64\x64\cl.exe. You will be >>>>> prompted to send an error report to Microsoft later. >>>>> INTERNAL COMPILER ERROR in 'C:\PROGRA~2\MIB055~1\2017\COM >>>>> MUN~1\VC\Tools\MSVC\1410~1.247\bin\HostX64\x64\cl.exe' >>>>> Please choose the Technical Support command on the Visual C++ >>>>> Help menu, or open the Technical Support help file for more >>>>> information >>>>> >>>>> Taylor >>>>> >>>>> On Mon, Jan 16, 2017 at 4:18 PM, Matt McCormick < >>>>> matt.mccormick at kitware.com> wrote: >>>>> >>>>>> On behalf of the Insight Toolkit community, we are proud to announce >>>>>> that ITK 4.11 release candidate 2 has been tagged and is available for >>>>>> testing! Please take this opportunity to test the new features in the >>>>>> release candidate. >>>>>> >>>>>> >>>>>> To obtain the source code, use the links: >>>>>> >>>>>> >>>>>> https://github.com/Kitware/ITK/archive/v4.11rc02.zip >>>>>> https://github.com/Kitware/ITK/archive/v4.11rc02.tar.gz >>>>>> >>>>>> or >>>>>> >>>>>> git clone https://itk.org/ITK.git >>>>>> cd ITK >>>>>> git checkout -q --detach v4.11rc02 >>>>>> >>>>>> For more details, please see the Git documentation [1]. >>>>>> >>>>>> >>>>>> A few selected highlights for this release: >>>>>> >>>>>> - Remote Modules were added to: perturb mesh vertices with additive >>>>>> gaussian noise, accurately benchmark computational performance, >>>>>> perform principal components analysis of scalar, vector, and mesh >>>>>> vertex data, create a run-length encoded memory compression scheme for >>>>>> itk::Image, run N-D morphological contour interpolation, interpolate >>>>>> multi-label images, iterate over multiple images simultaneously, and >>>>>> compute inverse displacement fields. >>>>>> - NumPy bridge support is now enabled by default with NumPy array >>>>>> views of multi-component images and VNL vectors and matrices. >>>>>> - Internal HDF5 was updated to the latest upstream version along >>>>>> with a number of other third-party libraries. >>>>>> >>>>>> >>>>>> This release introduces a new template class export specification >>>>>> macro, ITK_TEMPLATE_EXPORT. The macro should be used with templated >>>>>> classes to address failing dynamic_cast's and exception catching >>>>>> across binaries on Mac OSX. >>>>>> >>>>>> Bugs were addressed and improvements were made to how the >>>>>> pseudo-random number generator is used. Tests that rely on the random >>>>>> number generator should explicitly set the global seed at start: >>>>>> >>>>>> itk::Statistics::MersenneTwisterRandomVariateGenerator::GetI >>>>>> nstance()->SetSeed( >>>>>> 121212 ); >>>>>> >>>>>> To improve randomness, new instances of the generator start from a >>>>>> different seed; some minor differences in the output of algorithms >>>>>> that uses the generator, like mutual information metrics, should be >>>>>> expected. >>>>>> >>>>>> Additionally, output may change for registration with composite affine >>>>>> transforms; the v4 registration framework now uses corner sampling as >>>>>> opposed to random sampling to estimate their parameter scales. >>>>>> >>>>>> >>>>>> Please test the release candidate and share your experiences on the >>>>>> mailing list, issue tracker, and Gerrit Code Review. >>>>>> >>>>>> >>>>>> An Experimental build, which demonstrates how the test suite performs >>>>>> on your local build system, can be submitted to the dashboard [2] >>>>>> with: >>>>>> >>>>>> mkdir ../ITK-build >>>>>> cd ../ITK-build >>>>>> cmake ../ITK >>>>>> ctest -j 4 -M Experimental -T Configure -T Build -T Test -T Submit >>>>>> >>>>>> Visual Studio builds must also add ?-C Release? to the ctest command. >>>>>> >>>>>> Notify the mailing list if there are any unexpected failures. Testing >>>>>> your own applications against the RC is also appreciated. >>>>>> >>>>>> >>>>>> Congratulations to the 31 contributors to this release. We would >>>>>> especially like to recognize the new contributors: Hastings Greer, >>>>>> Gilles Filippini, Thien Nguyen, Caspar Goch, Mayeul Chassagnard, >>>>>> Somesh Kashyap, Simon Rit, Pierre Barbier de Reuille, and Maeliss >>>>>> Jallais. >>>>>> >>>>>> >>>>>> The 4.11.0 final release is scheduled for January 23rd. >>>>>> >>>>>> >>>>>> [1] http://www.itk.org/Wiki/ITK/Git >>>>>> >>>>>> [2] http://open.cdash.org/index.php?project=Insight >>>>>> >>>>>> >>>>>> New Features >>>>>> ------------ >>>>>> >>>>>> * Wrapping Improvements >>>>>> - Python GetArrayFromImage() and GetImageFromArray() from >>>>>> ITKBridgeNumPy are directly accessible from the Python itk namespace. >>>>>> - The itk package loads much faster: individual modules are loaded >>>>>> only when required. >>>>>> - Conversion of ITK images from and to NumPy array using Bridge >>>>>> NumPy supports RGB, RGBA, and Vector images. >>>>>> - VNL vectors and VNL matrices can be converted from and to NumPy >>>>>> objects with respectively the new couple of functions >>>>>> GetArrayFromVnlVector()/GetVnlVectorFromArray() and >>>>>> GetArrayFromVnlMatrix()/GetVnlMatrixFromArray() >>>>>> - The global timestamp is used across all ITK Python modules when >>>>>> built statically >>>>>> - Wrap additional classes such as KernelFunctionBase >>>>>> - itk_python_add_test CMake function added for Python script testing >>>>>> in ITK modules >>>>>> >>>>>> * New Remote Modules >>>>>> - DVMeshNoise >>>>>> - Perturbing mesh vertices with additive gaussian noise >>>>>> - http://hdl.handle.net/10380/3567 >>>>>> - PerformanceBenchmarking >>>>>> - Accurate benchmarking of computational performance >>>>>> - http://hdl.handle.net/10380/3557 >>>>>> - PrincipalComponentsAnalysis >>>>>> - Principal components analysis of scalar, vector, and mesh >>>>>> vertex data >>>>>> - http://hdl.handle.net/10380/3386 >>>>>> - RLEImage >>>>>> - Run-length encoded memory compression scheme for itk::Image >>>>>> - http://hdl.handle.net/10380/3562 >>>>>> - MorphologicalContourInterpolation >>>>>> - N-D morphological contour interpolation >>>>>> - http://hdl.handle.net/10380/3563 >>>>>> - GenericLabelInterpolator >>>>>> - A generic interpolator for multi-label images >>>>>> - http://hdl.handle.net/10380/3506 >>>>>> - MultipleImageIterator >>>>>> - Iterate over multiple images simultaneously >>>>>> - http://hdl.handle.net/10380/3455 >>>>>> - FixedPointInverseDisplacementField >>>>>> - Computes inverse displacement field >>>>>> - http://hdl.handle.net/10380/3222 >>>>>> >>>>>> * Core Improvements >>>>>> - New ITK_TEMPLATE_EXPORT for templated classes resolves >>>>>> cross-binary dynamic_cast on Mac OSX >>>>>> - New MersenneTwisterRandomVariateGenerator instances are >>>>>> initialized with different seeds >>>>>> - Use compiler feature detection in CMake for C++11 features, etc. >>>>>> - New CMake macro itk_module_add_library for creating libraries in >>>>>> ITK modules >>>>>> - Improved support for ccache and distcc with >>>>>> CMAKE__COMPILER_LAUNCHER (CMake >=3.4 required) >>>>>> - Support for .sha512 ExternalData content links >>>>>> - GitHub Pages and data.kitware.com ExternalData repositories added >>>>>> - GPGPU system support for C++11 >>>>>> - Support of new compilers: Visual Studio 15 and XCode 8.2.1 >>>>>> (clang-800.0.42.1) >>>>>> >>>>>> * Filtering Improvements >>>>>> - HessianToObjectnessMeasure moved out of the ITKReview module >>>>>> - New UnsharpMaskImageFilter for image edge enhancement >>>>>> >>>>>> * IO Improvements >>>>>> - TransformFactory class has been moved to a separate module >>>>>> - Spline order added to BSplineTransform identifier >>>>>> - Improved NIFTI orientation support >>>>>> >>>>>> * Documentation Improvements >>>>>> - Updates to the Software Guide, Doxygen, Wiki and Sphinx Examples >>>>>> >>>>>> * Third Party Library Updates >>>>>> - pygccxml updated to v1.8.0 >>>>>> - VNL updated to latest upstream (2016.07.06) >>>>>> - SWIG updated to v3.0.11 >>>>>> - KWSys updated to latest upstream (2016.11.21) >>>>>> - HDF5 updated to v1.8.17 >>>>>> - SCIFIO updated to latest upstream (2016.12.01) >>>>>> - DCMTK updated to 3.6.1_20121012 >>>>>> - CastXML to latest upstream (2016.01.28) >>>>>> >>>>>> * Improved Code Coverage -- we are at 85.44%! >>>>>> - Jon Haitz-Legarreta's extensive code coverage improvements >>>>>> - https://blog.kitware.com/why-should-we-spend-time-writing-tests/ >>>>>> >>>>>> * *Lots* of important bug fixes >>>>>> >>>>>> * And much more! See details in the log below. >>>>>> >>>>>> >>>>>> Changes from v4.11rc01 to v4.11rc02 >>>>>> ----------------------------------- >>>>>> >>>>>> Bradley Lowekamp (5): >>>>>> BUG: Remove unused SimpleImageRegistrationTest baselines >>>>>> ENH: Expose GetNextSeed method in MersenneTwiseter Generator >>>>>> BUG: Add option for fixed seed or wall clock seed for sampling >>>>>> BUG: Use metric random seed in v3 examples >>>>>> BUG: Prefer setting seed at algorithm in "v4" tests. >>>>>> >>>>>> Francois Budin (3): >>>>>> ENH: Update BridgeNumPy to latest version on 2017.01.08 to >>>>>> address ITK-3511 >>>>>> BUG: Extra \$ in doxygen comment >>>>>> BUG: Binary include directory added only if enabled shared >>>>>> >>>>>> Jon Haitz Legarreta (2): >>>>>> DOC: Document itkLabelOverlapMeasuresImageFilter methods. >>>>>> DOC: Fix ITKImageNoise filters' doc TeX errors. >>>>>> >>>>>> Matthew McCormick (1): >>>>>> BUG: Remove invalid ImageRegistration4Test.png.sha512 >>>>>> >>>>>> Max Smolens (1): >>>>>> DOC: Fix itkUnsharpMaskImageFilter documentation typos >>>>>> >>>>>> Simon Rit (1): >>>>>> BUG: ITK-based software was crasing when thread creation failed >>>>>> >>>>>> >>>>>> Changes from v4.10.0 to v4.11rc01 >>>>>> --------------------------------- >>>>>> >>>>>> Bill Lorensen (4): >>>>>> COMP: Restore support for clang 3.0 compiler >>>>>> COMP: Consistent use of ModifiedTimeType >>>>>> ENH: Bump WikiExamples remote module version >>>>>> ENH: Bump WikiExamples version >>>>>> >>>>>> Bradley Lowekamp (57): >>>>>> ENH: Add registered TrasformIO's to exception >>>>>> ENH: Use template or constant for loop stop condition >>>>>> ENH: Updating SWIG version to 3.0.9 >>>>>> COMP: Address VS9 ambiguous std::abs call in Haung calculator >>>>>> COMP: Fix undefined NumericTraits::Zero and One errors with >>>>>> mingw64 >>>>>> BUG: Fix segfault if ~CleanUpObjectFactory called multiple times >>>>>> BUG: Address itkHDF5ImageIO test failures for mingw64 >>>>>> BUG: demonstrate dynamic_cast failure when reading transforms >>>>>> BUG: Address itkHDF5ImageIO test failures for mingw64 >>>>>> ENH: Updating SWIG version to 3.0.10 >>>>>> ENH: Enable CMP0063 New behavior >>>>>> COMP: Enable hidden visibility property with vxl static libraries >>>>>> COMP: Enable hidden visibility property with HDF5 static >>>>>> libraries >>>>>> COMP: Enable hidden visibility property with HDF5 static >>>>>> libraries >>>>>> BUG: Match Add2 function to AddImageFilter documentation >>>>>> ENH: Improve support for std::complex with PowImageFilter >>>>>> ENH: Explicitly mark required files for dependent tests >>>>>> COMP: Bypass XCode 7.3,8 internal compilation error >>>>>> COMP: Address CMake configuration error with itkJPEG2000Test03 >>>>>> property >>>>>> BUG: Correct test's REQUIRED_FILES to only the input. >>>>>> ENH: move HessianToObjectnessMeasure filter out of Review >>>>>> ENH: Separate TransformFactory class into separate module >>>>>> DOC: Add links between similar label to rgb filters >>>>>> ENH: Separate data from function calls >>>>>> COMP: Fix changed Graft method >>>>>> ENH: Reduce template dependencies on CalculateRotationMatrix >>>>>> ENH: Add Functor Accessors to LabelMapToRGB filter >>>>>> BUG: Enable VirtualDomain and FixedTransform in RegMethv4 >>>>>> BUG: Use BSpline Order 3 for 2D in transform factory. >>>>>> ENH: Add spline order to BSplineTransform's string id >>>>>> ENH: Adding initial CircleCi configuration file >>>>>> COMP: Fix float to unsigned integer conversion warnings >>>>>> BUG: Include installed modules in ITK_MODULES_ENABLED >>>>>> COMP: Address CMake error that ITKGPUCommon is not in export >>>>>> COMP: Address wrong library types with VS and shared libraries >>>>>> BUG: Ensure CreateImageIO is concurrent thread safe >>>>>> ENH: Mark HDF5 CMake options as internal >>>>>> COMP: Add template export declaration for ParametricPath >>>>>> COMP: Correct TEMPLATE_EXPLICIT definition in Path module >>>>>> ENH: Factor out common code in the TrasformFactoryBase >>>>>> registration >>>>>> ENH: Add CMake variable for max transform dimension, defaults 4 >>>>>> ENH: Create CMake module to check for private RTTI compatibility >>>>>> ENH: Improving setting of default ITK_TEMPATE_VISIBILITY_DEFAULT >>>>>> COMP: Correct ifndef value to allow user defined >>>>>> ITK_TEMPLATE_EXPORT >>>>>> BUG: Add explicit instantiate for ObjectToObjectOptimizerBase >>>>>> COMP: Use add_definitions for CMake 2.8.9 compatibility >>>>>> COMP: Add warning suppression for distcc warning >>>>>> ENH: Explicitly instantiate the optimizer base over float >>>>>> BUG: Use IsLinear to check if transform is "affine" >>>>>> ENH: Remove unneeded includes of random iterator header >>>>>> ENH: Improve thread-safety for Generator, and unique New sequence >>>>>> ENH: Do not use global random generator >>>>>> BUG: Update v3 registration metrics to use local seed >>>>>> ENH: Prefer setting local seed over global in tests. >>>>>> ENH: Update SWIG to latest 3.0.11 release >>>>>> BUG: relax testing parameters for v3 translation registration >>>>>> BUG: Restore baseline for debug registration >>>>>> >>>>>> Caspar Goch (2): >>>>>> BUG: Use printable type for RGBA pixel ostream for ITK-3501 >>>>>> STYLE: Remove extra space for ITK-3501 >>>>>> >>>>>> Christina Rossmanith (1): >>>>>> DOC: Added more details to the class Doxygen documentation. >>>>>> >>>>>> Davis Vigneault (2): >>>>>> COMP: VCL_DEFINE_SPECIALIZATION not defined >>>>>> ENH: Add remote module DVMeshNoise >>>>>> >>>>>> D?enan Zuki? (27): >>>>>> BUG: Fixing CID-1355433 (IDENTICAL_BRANCHES) >>>>>> ENH: Adding MultipleImageIterator as a remote module >>>>>> COMP: enables TBB 4.4 back-end for VTK7's SMP >>>>>> COMP: enabling position independent code flag for FFTW >>>>>> ENH: adding configuration file for code reformatting tool >>>>>> clang-format >>>>>> ENH: Updating hooks to work with Windows/TortoiseGit/KDiff3 >>>>>> COMP: Fixing -fPIC flag passing with Ninja build system >>>>>> ENH: Adding RLEImage as a remote module >>>>>> ENH: Updating uncrustify configuration to current git version >>>>>> STYLE: better compliance with ITK style >>>>>> STYLE: A new option in uncrustify, updating the config file >>>>>> accordingly >>>>>> ENH: Adding MorphologicalContourInterpolation as a remote module >>>>>> ENH: improving documentation >>>>>> BUG: fixing buffer growing endlessly, as reported by Timothee >>>>>> Evain >>>>>> BUG: fixing buffer growing endlessly, as reported by Timothee >>>>>> Evain >>>>>> STYLE: default uncrustify configuration file is less aggressive >>>>>> COMP: Fixing warning >>>>>> COMP: VS15 compiler fix >>>>>> BUG: casting -9 to unsigned produced unwanted result >>>>>> BUG: Ensuring consistency between debug and release >>>>>> COMP: Updating LesionSizingToolkit after some recent compile >>>>>> fixes >>>>>> COMP: respect option METAIO_USE_NAMESPACE >>>>>> ENH: updating version of AnisotropicDiffusionLBR >>>>>> ENH: adding UnsharpMaskingImageFilter >>>>>> COMP: explicitly cast to output type >>>>>> BUG: double call to update would cause empty output image >>>>>> ENH: Updating RLEImage remote module. Change-log: >>>>>> >>>>>> Eugene Prilepin (4): >>>>>> ENH: Add the "ITK_USE_GPU" to ITK Config >>>>>> BUG: Fix API for set/get "LaplacianImageFilter" object >>>>>> ENH: Add support of images types with the 'CovariantVector' >>>>>> pixel type >>>>>> ENH: Add python test for the 'GradientVectorFlowImageFilter' >>>>>> wrap >>>>>> >>>>>> Francois Budin (52): >>>>>> ENH: Adding GetArrayFromImage in python itk namespace >>>>>> ENH: Adding GetImageFromArray in python itk namespace >>>>>> ENH: *_WRAP_* variable per external module >>>>>> BUG: ImportImageFilter not responsible of memory management >>>>>> ENH: New remote module GenericLabelInterpolator >>>>>> DOC: SetNumberOfOutputs had wrong comment >>>>>> BUG: lazyAttributes dictionary keys could be over-ridden >>>>>> BUG: lazyAttributes dictionary keys could be over-ridden >>>>>> BUG: Fix recent update of HDF5 (1.8.17) >>>>>> ENH: Update SCIFIO to latest version on 08/23/2016 >>>>>> ENH: Addition of the remote module FixedPointInverseDisplacementF >>>>>> ield >>>>>> ENH: Update SCIFIO to latest version on 08/29/2016 >>>>>> BUG: Path to commit was relative instead of absolute >>>>>> ENH: Path to SetupForDevelopment is relative, not absolute >>>>>> BUG: LSMImageIO write function was not checking image dimension >>>>>> BUG: LSMImageIO was not checking correctly image dimension >>>>>> BUG: Missing associated test data >>>>>> BUG: Missing associated test data >>>>>> ENH: Bump CMakeLists.txt version to 4.10.1. >>>>>> BUG: Quotes are not escaped in configured cmake file >>>>>> ENH: Improving API of Graft() in itk::Image >>>>>> ENH: Updating ITKGenericLabelInterpolator remote module >>>>>> ENH: Update ITKIOTransformDCMTK remote module >>>>>> BUG: Factory registration should depend on ITK_BUILD_SHARED >>>>>> COMP: Updating DCMTK compilation for Ninja >>>>>> ENH: Update version of DCMTK to 3.6.1_20121012 >>>>>> ENH: Update SCIFIO to latest version on 10/25/2016 >>>>>> BUG: Swig and PCRE do not support space in installation paths >>>>>> BUG: exit() call from within piped commands was not exiting the >>>>>> script >>>>>> BUG: Typo in folder creation command >>>>>> ENH: Only display message for transform registered multiple >>>>>> times in debug >>>>>> ENH: Image spacing must be positive >>>>>> BUG: Supported extensions by PNG IO were not added in >>>>>> constructor. >>>>>> DOC: Documentation in itkRBGAPixel and itkRGBPixel was incorrect. >>>>>> ENH: Update SCIFIO to lastest (2016.12.01) >>>>>> ENH: FixedPointInverseDisplacementField moved to >>>>>> InsightSoftwareConsortium >>>>>> COMP: Remove compilation warnings >>>>>> ENH: Improved support of ccache and distcc >>>>>> BUG: GPUImage regression due to API change. >>>>>> ENH: Update Bridge Numpy (2016.12.05) >>>>>> ENH: Update VariationalRegistration to remove warnings during >>>>>> compilation >>>>>> ENH: FindPythonLibs does not support both debug and release >>>>>> python libraries >>>>>> ENH: Update VariationalRegistration >>>>>> BUG: Missing ITK_TEMPLATE_EXPORT in forward declaration of >>>>>> itk::ImageBase >>>>>> BUG: Missing ITK_TEMPLATE_EXPORT in itkOptimizerParametersHelper >>>>>> BUG: Missing ITK_TEMPLATE_EXPORT in templated class >>>>>> BUG: Remove linkage warnings on MacOS >>>>>> BUG: HDF5 CMake installation directory variable had not been >>>>>> updated >>>>>> BUG: Missing include header in AnisotropicDiffusionBLR remote >>>>>> module hxx files >>>>>> COMP: Silencing unused variable warning in itkTimeStamp >>>>>> STYLE: Improve style checking by using module >>>>>> ITKKWStyleOverwrite.txt >>>>>> COMP: OS*Barrier functions are deprecated on MacOS 10.12 >>>>>> >>>>>> GCC-XML Upstream (1): >>>>>> ENH: pygccxml v1.8.0 (reduced) >>>>>> >>>>>> Gert Wollny (1): >>>>>> BUG: Relax vnl_complex floating point comparisons for i386 >>>>>> >>>>>> Gilles Filippini (1): >>>>>> BUG: Use NATIVE_HBOOL for encoding HDF5 types. >>>>>> >>>>>> HDF Group (1): >>>>>> ENH: hdf5 1.8.17-r30218 (reduced) >>>>>> >>>>>> Hans Johnson (23): >>>>>> COMP: Use cmake WriteCompilerDetectionHeader >>>>>> ENH: Use itk_compiler_detection versions >>>>>> COMP: Need ITK_NOEXCEPT_OR_THROW macro. >>>>>> COMP: Provide consistent granular C++11 support >>>>>> STYLE: Use granular ITK_COMPILER_CXX_STATIC_ASSERT >>>>>> STYLE: Prefer to use consistent definitions >>>>>> COMP: Improve robustness of identifying the compiler standard >>>>>> used >>>>>> BUG: try_compile for AlignAs were always failing >>>>>> STYLE: Provide a well documented macro for repeated code >>>>>> STYLE: Delete functions in consistent way >>>>>> COMP: GPU baseclass ivars need to be protected >>>>>> COMP: Remove unnecessary circular dependancy >>>>>> COMP: Add long long usage for HDF5 >>>>>> COMP: Add long long usage for HDF5 >>>>>> STYLE: Prefer static small array to dynamic array >>>>>> BUG: Confusing interface for FFTW wisdom files >>>>>> STYLE: Output dimension from OutputImageType >>>>>> STYLE: Code review style cleanups >>>>>> STYLE: Prefer to use ITK AssertOrThrow macros >>>>>> ENH: Add OverrideBoundaryCondition logic >>>>>> ENH: Provide mechanism for enhanced NIFTI support >>>>>> BUG: Use NIFTI sform/qform conventions correctly >>>>>> ENH: Remove ambiguity about sform/qform >>>>>> >>>>>> Hastings Greer (8): >>>>>> BUG: ITK-3448 Wrap itkQuadEdgeCellTraitsInfo more specifically >>>>>> BUG: make itkTriangleHelper instantiable to ease wrapping >>>>>> BUG: remove lsqr because of license issues ITK 1160 >>>>>> BUG: make itkTriangleHelper instantiable to ease wrapping >>>>>> BUG: initialize X to zero in lsmr Solve >>>>>> BUG: Labled Point Set Registration: test multiple labels >>>>>> BUG: Fix python wrapping of Cuberille remote module >>>>>> BUG: Add test demonstrating Python global timestamp issue >>>>>> >>>>>> Jean-Christophe Fillion-Robin (5): >>>>>> STYLE: UseITK: Set ImageIO exceptions using new convention. See >>>>>> #3393 >>>>>> STYLE: MeshIO: Moves virtual destructor into cpp files. See #3393 >>>>>> STYLE: Update MeshIO factories to use RegisterFactoryInternal. >>>>>> See #3393 >>>>>> STYLE: MeshIO: Move MeshFileWriterException into its own file. >>>>>> See #3393 >>>>>> STYLE: MeshIO: Remove unused include from headers. See #3393 >>>>>> >>>>>> Johan Andruejol (3): >>>>>> ENH: Add missing itkKernelFunctionBase wrapping >>>>>> ENH: Add PrincipalComponentsAnalysis remote module >>>>>> COMP: Override cannot be used with inline >>>>>> >>>>>> Jon Haitz Legarreta (216): >>>>>> ENH: Improve itkFlatStructutingElement coverage. >>>>>> ENH: Improve itkPathToImageFilter class coverage. >>>>>> ENH: Improve itkIsolatedWatershedImageFilter coverage. >>>>>> ENH: Improve itkLogSigmoidTransferFunction coverage. >>>>>> STYLE: Improve itkBSplineTransform doc style. >>>>>> ENH: Improve GaborKernelFunctionCoverage. >>>>>> PERF: Remove duplicate itkMath include >>>>>> STYLE: Move the PrintSelf method to the end >>>>>> STYLE: Improve the itkScalarToRGBColormapImageFilter style. >>>>>> STYLE: Delete duplicate method documentation >>>>>> STYLE: Remove method documentation from implementation file >>>>>> STYLE: Improve GACLevelSet classes' style >>>>>> STYLE: Improve test style >>>>>> ENH: Improve itkGaussianDerivativeImageFilter coverage. >>>>>> ENH: Improve the itkScalarToRGBColormapImageFilter coverage >>>>>> STYLE: Improve itkScalarToRGBColormap test style >>>>>> ENH: Improve GACLSImageFilter classes' coverage >>>>>> STYLE: Improve comment style in GACLS tests >>>>>> ENH: Improve itkImportImageFilter coverage >>>>>> ENH: Improve itkVideoFileReader coverage >>>>>> ENH: Improve itkVideoFileWriter coverage >>>>>> STYLE: Improve the itkVideoFileWriter style. >>>>>> STYLE: Imrpove itkVideoFileReader style. >>>>>> ENH: Improve the itkBSplineControlPointImageFunction coverage >>>>>> STYLE: Improve the itkIntensityWindowingImageFilter style >>>>>> STYLE: Improve the itkIntensityWindowingImageFilter test style >>>>>> ENH: Improve ImageToSpatialObjectRegistrationMethod coverage >>>>>> STYLE: Improve test style >>>>>> ENH: Improve MaskNeighborhoodOperatorImageFilter coverage >>>>>> ENH: Improve itkMeshFileWriter coverage >>>>>> ENH: Improve RescaleIntensityImageFilter coverage. >>>>>> ENH: Improve itkClampImageFilter coverage. >>>>>> BUG: Fix ivar type casting in PrintSelf. >>>>>> STYLE: Improve MRIBiasFieldCorrectionFilter style. >>>>>> ENH: Improve MRIBiasFieldCorrectionFilter coverage. >>>>>> ENH: Improve itkIntensityWindowingImageFilter coverage >>>>>> BUG: Fix Run-time type information in CSV module classes. >>>>>> ENH: Improve the itkHistogram class code coverage. >>>>>> DOC: Fix documentation typo. >>>>>> STYLE: Improve the ImproveRescaleIntensityImageFilter style. >>>>>> PERF: Make the itkVideoFileReader ivars private >>>>>> PERF: Make itkVideoFileWriter ivars private >>>>>> ENH: Improve coverage for itk::OrientImageFilter. >>>>>> STYLE: Improve itk::OrientImageFilter class style. >>>>>> ENH: Improve itkCSVNumericObjectFileWriter coverage. >>>>>> ENH: Add missing standard class typdefs. >>>>>> ENH: Improve itkVoronoiSegmentationImageFilter coverage. >>>>>> ENH: Improve itkVoronoiSegmentationImageFilter style. >>>>>> STYLE: Improve the MalahanobisDistanceThresholdImageFunction >>>>>> style. >>>>>> ENH: Improve coverage for itkMalahanobisDistanceThreshold. >>>>>> ENH: Improve itk::MinimumMaximumImageCalculator coverage. >>>>>> ENH: Improve itkMinimumMaximumImageCalculator style. >>>>>> BUG: Fix type mismatch in test. >>>>>> STYLE: Improve itkPolylineMaskImagefilter style. >>>>>> ENH: Improve itkPolylineMaskImageFilter coverage. >>>>>> ENH: Improve itkFileListVideoStyle. >>>>>> ENH: Improve itkLandmarkBasedTransformInitializer coverage. >>>>>> ENH: Add baseline image to itkPolylineMaskImageFilter test. >>>>>> ENH: Improve coverage for itkBSplineTransformInitializer. >>>>>> STYLE: Improve itkBSplineTransformInitializer doc style. >>>>>> ENH: Enhance itkBSplineTransformInitializer implementation. >>>>>> DOC: Fix typo in method documentation. >>>>>> ENH: Improve the itkRegularStepGradientDescentOptimizerv4 style. >>>>>> STYLE: Improve the itkSimpleContourExtractorImageFilter style. >>>>>> ENH: Exercise the class' Get methods. >>>>>> ENH: Improve coverage for itkStatisticsOpeningLabelMapFilter. >>>>>> ENH: Improve style for itkThresholdLabelerImageFilter. >>>>>> ENH: Improve itkThresholdLabelerImageFilter coverage. >>>>>> ENH: Get internal ImageIO via a const macro. >>>>>> ENH: Improve the itkSimpleContourExtractorImageFilter coverage. >>>>>> STYLE: Improve the itkMetaArray class style. >>>>>> ENH: Improve MetaArrayReader/Writer coverages. >>>>>> ENH: Improve the itkCovarianceImageFunction style. >>>>>> STYLE: Improve itkVoronoiDiagram2DGenerator style. >>>>>> ENH: Improve VoronoiDiagram2DGenerator coverage. >>>>>> STYLE: Improve the itkBayesianClassifierImageFilter style. >>>>>> STYLE: Improve the itkMetaArrayWriter style. >>>>>> ENH: Improve itkCovarianteImageFunction coverage. >>>>>> COMP: Fix signed/unsigned int comparison warning. >>>>>> DOC: Improve itkGrayscaleDilateImageFilter documentation. >>>>>> DOC: Improve documentation for itkGrayscaleErodeImageFilter. >>>>>> DOC: Improve ConfigureHistogram method documentation. >>>>>> STYLE: Improve the itkMovingHistogramMorphologyImagefilter >>>>>> style. >>>>>> BUG: Fix Superclass name in RTTI. >>>>>> STYLE: Improve itkGaussianInterpolateImageFunction style. >>>>>> ENH: Improve coverage for itkGaussianInterpolateImageFunction. >>>>>> ENH: Improve itkBayesianClassifierImageFilter coverage. >>>>>> ENH: Add itkBSplineControlPointImageFilter RTTI. >>>>>> STYLE: Improve itkBSplinecontrolPointImageFilter style. >>>>>> ENH: Improve itkBSplineControlPointImageFilter coverage. >>>>>> ENH: Improve coverage for itkRegularStepGradientDescentO >>>>>> ptimizerv4. >>>>>> STYLE: Improve the class implementation file style. >>>>>> STYLE: Improve the itkResampleImageFilter style. >>>>>> DOC: Fix typo in GetMTime method doc. >>>>>> STYLE: Remove out-of-body implementation doc >>>>>> ENH: Improve itkResampleImageFilter coverage. >>>>>> ENH: Improve itkAbsImageAdaptor and Filter coverage. >>>>>> BUG: Fix itkLSMImageIO class' Superclass name. >>>>>> ENH: Improve the itkInterpolateImagePointsFilter coverage. >>>>>> ENH: Improve itkPowImageFilter coverage. >>>>>> BUG: Fix ConvolutionImageFilter RTTI. >>>>>> STYLE: Use initialization lists. >>>>>> STYLE: Improve BinaryFunctorImageFilter style. >>>>>> ENH: Improve itkMinimumImageFilter code coverage. >>>>>> BUG: Fix Linux-x86_64-gcc4.1 warning on implicit conversion. >>>>>> ENH: Improve MaximumImageFilter coverage. >>>>>> BUG: Fix conversion to PixelType conversion. >>>>>> COMP: Fix double to unsigned char conversion warning. >>>>>> ENH: Improve coverage for itkNormalizeToConstantImageFilter. >>>>>> BUG: Fix itkSquaredDifferenceErrorFunction RTTI. >>>>>> ENH: Improve itkMeanImageFunctionCoverage. >>>>>> ENH: Improve itkSquareImageFilter coverage. >>>>>> STYLE: Improve the itkSquaredDifferenceErrorFunction style. >>>>>> STYLE: Enhance style for itkNormalizeToConstantImageFilter. >>>>>> STYLE: Improve itkMeanImageFunction style. >>>>>> ENH: Remove unnecesary call to filter print. >>>>>> ENH: Improve itkRegionOfInterestImageFilter coverage. >>>>>> STYLE: Improve itkRegionOfInterestImageFilter style. >>>>>> STYLE: Improve itkPasteImageFilter style. >>>>>> STYLE: Improve itkJoinSeriesImageFilter style. >>>>>> BUG: Fix itkPadLabelMapFilter RTTI Superclass. >>>>>> COMP: Address std::cout.precision conversion warning. >>>>>> ENH: Improve itkBayesianClassifiertImageFilter coverage. >>>>>> ENH: Improve itkPadLabelMapFilter coverage. >>>>>> ENH: Improve itkJoinSeriesImageFilter coverage. >>>>>> ENH: Improve the itkPasteImageFilter coverage. >>>>>> ENH: Improve MeanImageFilter coverage. >>>>>> COMP: Address std::cout.precision conversion warning. >>>>>> ENH: Improve TernaryMagnitudeImageFilter coverage. >>>>>> ENH: Improve FFTConvolutionImageFilter coverage. >>>>>> DOC: Fix class documentation in ternary magnitude filters. >>>>>> ENH: Improve ConstrainedValueDifferenceImageFilter coverage. >>>>>> ENH: Improve AndImageFilter coverage. >>>>>> ENH: Add baseline test to itkTernaryMagnitudeImageFilter. >>>>>> ENH: Use MD5 comparison framework in baseline test. >>>>>> ENH: Improve itk::VectorRescaleIntensityImageFilter coverage. >>>>>> STYLE: Improve the itkVectorRescaleIntensityImageFilter style. >>>>>> ENH: Print missing ivar in filter PrintSelf method. >>>>>> ENH: Improve itkComplexToImaginaryFilter coverage. >>>>>> ENH: Improve itkComplexToPhaseImageFilter coverage. >>>>>> ENH: Improve itkComplexToModulusImageFilter coverage. >>>>>> ENH: Improve itkComplexToRealImageFilter coverage. >>>>>> ENH: Improve itkVectorResampleImageFilter coverage. >>>>>> ENH: Add GetTransform method. >>>>>> ENH: Improve itkConstrainedValueAdditionImageFilter coverage. >>>>>> ENH: Improve itkModulusImageFilter coverage. >>>>>> ENH: Improve itkLog10ImageFilter coverage. >>>>>> ENH: Imporve itkMagnitudeAndPhaseToComplexImageFilter coverage. >>>>>> ENH: Improve itkLogImageFilter coverage. >>>>>> ENH: Improve itkInvertIntensityImageFilter coverage. >>>>>> STYLE: Improve itkInvertIntensityImageFilter style. >>>>>> DOC: Add missing doc to itkInvertIntensityImageFilter. >>>>>> STYLE: Improve itkIntensityWindowingImageFilter style. >>>>>> STYLE: Use initialization lists. >>>>>> ENH: Improve itkIntensityWindowingImageFilter coverage. >>>>>> ENH: Improve itkNaryMaximumImageFilter coverage. >>>>>> COMP: Fix std::precision type casting warning. >>>>>> ENH: Improve itkPointSetToPointSetRegistrationMethod coverage. >>>>>> STYLE: Improve the itkPointSetToPointSetImageRegistrationMethod >>>>>> style. >>>>>> ENH: Remove SmartPointers being explicitly initialized to null. >>>>>> STYLE: Improve the itkPointSetToImageRegistrationMethod style. >>>>>> ENH: Improve itkPointSetToImageRegistration coverage. >>>>>> STYLE: Change the name of the itkPointSetToImageRegistrationMethod >>>>>> test. >>>>>> STYLE: Improve itkVectorResampleImageFilter style. >>>>>> STYLE: Improve the itkAntiAliasBinaryImageFilter style. >>>>>> ENH: Improve trigonometric function filters' coverage. >>>>>> STYLE: Remove test names from std::out messages. >>>>>> ENH: Improve Boolean Algebra ImageFilters coverage. >>>>>> STYLE: Improve the EuclideanDistancePointMetric style. >>>>>> ENH: Improve itkSigmoidImageFilter coverage. >>>>>> STYLE: Improve itkCropImageFilter style. >>>>>> ENH: Improve itkCropImageFilter coverage. >>>>>> ENH: Improve RGBToLuminanceImageFilter and Adaptor coverage. >>>>>> ENH: Improve itkRescaleIntensityImageFilter coverage. >>>>>> ENH: Improve the itkMatrixSelectionImageFilter coverage. >>>>>> ENH: Improve itkTanImageFilter and Adaptor coverage. >>>>>> ENH: Increase itkSqrtImageFilter and Adaptor coverage. >>>>>> ENH: Increase itkTernaryOperatorImageFilter coverage. >>>>>> ENH: Increase itkSymmetricEigenAnalysisImageFilter coverage. >>>>>> STYLE: Improve itkScalarImagekmeansImageFilter style. >>>>>> STYLE: Conform to TEST_SET_GET_VALUE definition. >>>>>> BUG: Fix uninitialized variable due to dynamic analysis defect. >>>>>> BUG: Fix uninitialized variable defect reported by valgrind. >>>>>> ENH: Improve the itkPointSetToPointSetRegistrationTest. >>>>>> ENH: Improve the itkPointSetToImageRegistrationTest. >>>>>> ENH: Increas BinaryMagnitudeImageFilter coverage. >>>>>> STYLE: Remove test name from std output. >>>>>> ENH: Increase MagnitudeImageFilter coverage. >>>>>> BUG: Fix uninitialized variable defect reported by valgrind. >>>>>> BUG: Fix Superclass name in RTTI. >>>>>> STYLE: Improve itkFrustumSpatialFunction style. >>>>>> STYLE: Improve the itkConicShellInteriorExteriorSpatialFunction >>>>>> style. >>>>>> BUG: Fix Superclass template argument list. >>>>>> STYLE: Improve the itkTorusInteriorExteriorSpatialFunction >>>>>> style. >>>>>> STYLE: Improve the itkCheckerBoardImageFilter class style. >>>>>> ENH: Improve the itk::LabelVotingImageFilter coverage. >>>>>> ENH: Improve itkCheckerBoardImageFilter coverage. >>>>>> STYLE: Improve itk::LabelVotingImageFilter style. >>>>>> STYLE: Improve the itkHoughTransform2DCirclesImageFilter style. >>>>>> ENH: Add test for itk::FrustumSpatialFunction class. >>>>>> ENH: Improve itkConnectedThresholdImageFilter coverage. >>>>>> STYLE: Improve itkConnectedThresholdImageFilter style. >>>>>> BUG: Fix FrustumSpatialFunction internal precision conversion. >>>>>> COMP: Fix implicit conversion warning. >>>>>> STYLE: Improve itkThresholdImageFilter style. >>>>>> ENH: Add test for itk::TorusInteriorExteriorSpatialFunction. >>>>>> BUG: Fix Superclass template argument list. >>>>>> ENH: Improve itkUnsharpMaskingImageFilter implementation. >>>>>> ENH: Improve the itkUnsharpMaskingImageFilter coverage. >>>>>> ENH: Fix UnsharpMaskingImageFilter test inconsistencies. >>>>>> BUG: Add missing itkTypeMacro. >>>>>> DOC: Document the member variables. >>>>>> BUG: Fix the itkImageSource RTTI class name, >>>>>> STYLE: Improve itkLabelImageGaussianInterpolateImageFunction >>>>>> style. >>>>>> ENH: Finish itkGaussianInterpolateImageFunction PrintSelf. >>>>>> STYLE: Improve itkLabelOverlapMeasurementImageFilter style. >>>>>> >>>>>> KWSys Robot (6): >>>>>> KWSys 2016-06-30 (96f06c8e) >>>>>> KWSys 2016-10-23 (b630d2f5) >>>>>> KWSys 2016-11-03 (37306a1c) >>>>>> KWSys 2016-11-08 (2b3e2b1c) >>>>>> KWSys 2016-11-09 (18c65411) >>>>>> KWSys 2016-11-21 (cb55cf5a) >>>>>> >>>>>> Maeliss Jallais (1): >>>>>> BUG: Add unsigned and signed short to the wrapping of vnl_matrix >>>>>> >>>>>> Matthew McCormick (85): >>>>>> PERF: Simplify HilbertPath numberOfPathVertices computation. >>>>>> BUG: CID 1355469 NNetClassifierTest4 unintended integer division. >>>>>> BUG: Update Cuberille Remote for version check fix. >>>>>> ENH: Bump ITK version to 4.11.0. >>>>>> BUG: Fix HDF5ImageIO type information. >>>>>> BUG: Fix H5File memory leak in HDF5ImageIO. >>>>>> DOC: Collect Francois Budin's contributions in .mailmap >>>>>> BUG: Limit WRAP_ITK_MODULES when building externally >>>>>> STYLE: Improvements to ResourceProbe report output. >>>>>> ENH: Add a useTabs argument to ResourceProbe::Report. >>>>>> ENH: Add standard error measure to the ResourceProbe >>>>>> ENH: Add itk_python_add_test function. >>>>>> BUG: Remove VNL file from subtree merge. >>>>>> COMP: Fix wrapping with a space in the Python include path >>>>>> BUG: Fix PermuteAxesImageFilter pipeline method visibility >>>>>> BUG: Initialize PermuteOrder and FlipAxes in OrientImageFilter >>>>>> BUG: ResampleImageFilter honor isInside output of the transform >>>>>> method >>>>>> COMP: Avoid recursive include of itkMath.h >>>>>> COMP: Fix VXL header installation locations >>>>>> BUG: ClampImageFilterTest for older GCC, InPlaceOn >>>>>> DOC: Add CONTRIBUTING.md file to the top level. >>>>>> COMP: Update VariationalRegistration to address Doxygen warnings >>>>>> BUG: Compiler detections file installed into ITK build tree >>>>>> location >>>>>> COMP: Do not use string(TIMESTAMP. >>>>>> COMP: Remove HDF5 -std=c99 for C++ files >>>>>> BUG: Do not build HDF5 static library with a shared build >>>>>> ENH: Add PerformanceBenchmarking Remote Module >>>>>> COMP: Remove duplicate wrappings for ResampleImageFilter >>>>>> BUG: Put Python test output files in the build tree >>>>>> BUG: Improve HDF5ImageIO::CloseDataSet name >>>>>> COMP: Use add_python_test PythonLazyLoadingImage >>>>>> COMP: Address missing override it itkFactoryTestLib.cxx >>>>>> BUG: Index,Size,Offset constructors present in Python with C++11 >>>>>> COMP: Address missing override it itkFactoryTestLib.cxx >>>>>> BUG: PerformanceBenchmarking as EXCLUDE_FROM_DEFAULT >>>>>> ENH: Bump SetupForDevelopment version >>>>>> BUG: Add missing ZLib deflate support to HDF5 >>>>>> BUG: Address memory leak, remove NumPy build dep in BridgeNumPy >>>>>> COMP: Do not set ITK_LIBRARY_BUILD_TYPE in ITKTransformFactory >>>>>> COMP: Do not set ITK_LIBRARY_BUILD_TYPE in ITKTransformFactory >>>>>> BUG: Check when ITK_WRAP_VECTOR_COMPONENTS doesn't include >>>>>> ITK_WRAP_IMAGE_DIMS >>>>>> BUG: RichardsonLucyDeconvolutionImageFilter with non-null input >>>>>> Image Origin >>>>>> BUG: Fix inconsistent Twister start with Initialize(seed) and >>>>>> SetSeed(seed) >>>>>> BUG: Do not hard code CMake scripts in HDF5 >>>>>> COMP: Workaround Emscripten ITKCommon test build failure >>>>>> COMP: Do embed fancy HDF5 libsettings with Emscripten >>>>>> COMP: Add missing H5T_patch_vlen_file declaration >>>>>> ENH: Bump CastXML to 2016-10-11 master. >>>>>> COMP: Workaround Emscripten ITKCommon test build failure >>>>>> BUG: Swap CastXML hashes for Mac OSX and Windows >>>>>> ENH: Sync ExternalData.cmake with upstream CMake 3.6.2 >>>>>> COMP: Fix VNL tests when cross-compiling >>>>>> ENH: ExternalData multi-algorithm support >>>>>> ENH: ExternalData support for data.kitware.com >>>>>> BUG: Install missing H5pubconf.h >>>>>> BUG: Use SpacePrecisionType in TileImageFilter >>>>>> BUG: Use internal ExternalData_Add_Target >>>>>> ENH: Run .sha512, .md5 simultaneous modification pre-commit check >>>>>> BUG: Correct CastXML Windows binary >>>>>> BUG: Support non-zero Index in LevelSetNeighborhoodExtractor >>>>>> ENH: Add ArchiveTestingDataOnGirder.py >>>>>> BUG: Correct AtanRegularizationHeavisideStepFunction derivative >>>>>> ENH: Add Utilities/Maintenance/ContentLinkSynchronization.sh >>>>>> BUG: Remove extra HessianToObjectness content links >>>>>> ENH: Wrap SpatialFunction float types with ITK_WRAP_float >>>>>> BUG: Bump PerformanceBenchmarking to 2016-11-04 >>>>>> BUG: itk_python_expression_add_test too many quotes. >>>>>> ENH: Wrap VectorImage with complex real pixel types >>>>>> ENH: Bump PerformanceBenchmarking to 2016-11-07 >>>>>> BUG: Do not assume zero Index in ReinitializeLevelSetImageFilter >>>>>> ENH: Create itk_module_add_library macro >>>>>> BUG: Update computeCodeCoverageLocally.sh for KWStyle addition >>>>>> COMP: Install a newer version of CMake on CircleCI >>>>>> ENH: Use GitHub Pages as the first ExternalData resource >>>>>> ENH: Add tests to demonstrate OSX dynamic_cast failure >>>>>> BUG: Use random seed with for MersenneTwisterRandomVariateGe >>>>>> nerator. >>>>>> BUG: Enable program global timestamp >>>>>> BUG: Set random number seed in Mattes metric test >>>>>> BUG: Notify builder that ITK_DYNAMIC_LOADING is required with >>>>>> wrapping >>>>>> BUG: Define ITK_DYNAMIC_LOADING before ITK_WRAP_PYTHON >>>>>> BUG: Set random number seed mutual information metric tests >>>>>> BUG: Wrap std::vector< itk.Point > >>>>>> BUG: Fix wrapping of LandmarkBasedTransformInitializer >>>>>> BUG: Rename UnsharpMaskingImageFilter to UnsharpMaskImageFilter >>>>>> DOC: Add D?enan Zuki? to .mailmap >>>>>> >>>>>> Max Smolens (4): >>>>>> COMP: CID-1266557 StatisticsLabelMapFilter uninitialized scalar >>>>>> field >>>>>> BUG: CID-1355438 QuadEdgeTest1 resource leaks >>>>>> COMP: CID-1355472 MIRegistrationFunction unused value >>>>>> COMP: Fix link errors for VNL template instantiations on Windows >>>>>> >>>>>> Mayeul Chassagnard (7): >>>>>> BUG: Test added and error fixed in HDF5ImageIO >>>>>> ENH: Update add_library TO itk_module_add_library >>>>>> COMP: Set Policy CMP0023 target_link_libraries for >>>>>> Modules/ThirdParty/VNLI... >>>>>> BUG: Add ITK_TEMPLATE_EXPORT to template classes >>>>>> BUG: Fix errors linked to dyn_cast merge >>>>>> BUG: Restore old ITKModule_TEMPLATE_EXPORT specification for >>>>>> classes >>>>>> BUG: dash3win7 dashboard build error unresolved external symbol >>>>>> >>>>>> Michka Popoff (3): >>>>>> ENH: Update UpdatepygccxmlFromUpstream.sh for v1.8.0 >>>>>> ENH: Update igenerator.py for pygccxml v1.8.0 >>>>>> COMP: Use pygccxml's public API for apply definitions >>>>>> >>>>>> Pierre Barbier de Reuille (2): >>>>>> COMP: Fix function naming error when using FFTWD >>>>>> COMP: Fix function naming error when using FFTWD >>>>>> >>>>>> Sean McBride (1): >>>>>> COMP: Bypass HDF5 bugs under TSan >>>>>> >>>>>> Simon Rit (2): >>>>>> COMP: remove C++11 compiler warning for CUDA compilations >>>>>> COMP: remove C++11 compiler warning for CUDA compilations >>>>>> >>>>>> Somesh Kashyap (2): >>>>>> BUG: Override TransformCategoryType for >>>>>> AzimuthElevationToCartesianTransform >>>>>> BUG: -Added test case for itkAzimuthElevationToCartesian >>>>>> Transform >>>>>> >>>>>> Sumedha Singla (1): >>>>>> ENH: Updated the git tag for ITK-Minimal-Path-Extraction remote >>>>>> module >>>>>> >>>>>> Taylor Braun-Jones (4): >>>>>> COMP: Skip path length checks if ITK_SKIP_PATH_LENGTH_CHECKS is >>>>>> enabled >>>>>> COMP: Fix truncation from double to float warning >>>>>> DOC: Fix incorrect itkFactorylessNewMacro documentation >>>>>> COMP: Only include the headers for required OpenCV modules >>>>>> >>>>>> Thien Nguyen (1): >>>>>> PERF: SmapsFileParser unnecessary dynamic_cast >>>>>> >>>>>> VXL Maintainers (4): >>>>>> VNL 2016-05-15 (14f97ab4) >>>>>> VNL 2016-06-22 (23a93adb) >>>>>> VNL 2016-06-29 (d62a2d70) >>>>>> VNL 2016-07-06 (acfa62cc) >>>>>> >>>>>> Vladimir S. FONOV (1): >>>>>> COMP: Build against GCC 5.3.1 >>>>>> >>>>>> Zach Williamson (2): >>>>>> ENH: Update Remote Module Tags >>>>>> BUG: Fix Python Wrappings in C++11 >>>>>> >>>>>> Ziv Yaniv (1): >>>>>> BUG: Metric sampling percentage accepted values outside (0.0, >>>>>> 1.0]. >>>>>> >>>>>> >>>>>> ITK Software Guide Changes >>>>>> ---------------------------------------- >>>>>> >>>>>> Matt McCormick (8): >>>>>> DOC: Move the location for obtaining the software >>>>>> DOC: Remove reference to ITKApps >>>>>> ENH: Bump ITK ExternalProject version to 2016-11-02 master >>>>>> DOC: Document the ITK module registry >>>>>> ENH: Bump ITK ExternalProject version to v4.11rc01 master >>>>>> DOC: Update CMake hyperlinks >>>>>> DOC: Update minimum required CMake version to 2.8.9 >>>>>> DOC: Add section on static and shared libraries. >>>>>> >>>>>> >>>>>> ITK Sphinx Examples Changes >>>>>> ------------------------------------------- >>>>>> >>>>>> Matt McCormick (6): >>>>>> BUG: Use GDCM ITK module name >>>>>> ENH: Rename ReadDICOMSeriesAndWrite3DImage >>>>>> BUG: Add tests for ReadDICOMSeriesAndWrite3DImage >>>>>> ENH: Bump ITK Superbuild version to 2016-09-20 master >>>>>> ENH: Add Python version of ReadDICOMSeriesAndWrite3DImage >>>>>> ENH: Add Python version of CreateAnRGBImage >>>>>> >>>>>> Michka Popoff (5): >>>>>> ENH: Use same Python interpreter as ITK for wrapping tests >>>>>> BUG: Fix ResampleAnImage example (Python3) >>>>>> ENH: Add Python example for ApplyAFilterOnlyToASpecifiedRe >>>>>> gionOfAnImage >>>>>> ENH: Add 7 Python examples to Core/Common >>>>>> ENH: Add BoundingBoxOfAPointSet Python example >>>>>> >>>>>> >>>>>> ----------------------------------------------------- >>>>>> Errors or omissions? Please fix them here: >>>>>> >>>>>> >>>>>> https://docs.google.com/document/d/1UQAh7_mDjps0GZYX62biTwFr >>>>>> A54KRvf__4oeT0ymzZg/edit >>>>>> _______________________________________________ >>>>>> Powered by www.kitware.com >>>>>> >>>>>> Visit other Kitware open-source projects at >>>>>> http://www.kitware.com/opensource/opensource.html >>>>>> >>>>>> Kitware offers ITK Training Courses, for more information visit: >>>>>> http://kitware.com/products/protraining.php >>>>>> >>>>>> Please keep messages on-topic and check the ITK FAQ at: >>>>>> http://www.itk.org/Wiki/ITK_FAQ >>>>>> >>>>>> Follow this link to subscribe/unsubscribe: >>>>>> http://public.kitware.com/mailman/listinfo/insight-developers >>>>>> >>>>> >>>>> >>>>> _____________________________________ >>>>> Powered by www.kitware.com >>>>> >>>>> Visit other Kitware open-source projects at >>>>> http://www.kitware.com/opensource/opensource.html >>>>> >>>>> Kitware offers ITK Training Courses, for more information visit: >>>>> http://www.kitware.com/products/protraining.php >>>>> >>>>> Please keep messages on-topic and check the ITK FAQ at: >>>>> http://www.itk.org/Wiki/ITK_FAQ >>>>> >>>>> Follow this link to subscribe/unsubscribe: >>>>> http://public.kitware.com/mailman/listinfo/insight-users >>>>> >>>>> >>>> >>> >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From taylor at braun-jones.org Mon Jan 30 14:21:02 2017 From: taylor at braun-jones.org (Taylor Braun-Jones) Date: Mon, 30 Jan 2017 14:21:02 -0500 Subject: [ITK-users] [ITK-dev] [ANN] ITK 4.11 Release Candidate 2 is ready for testing! In-Reply-To: References: Message-ID: Confirmed on my end as well. Thanks for following up. On Sun, Jan 29, 2017 at 4:41 PM, D?enan Zuki? wrote: > RC3 got released on Friday, and it builds ITK without issue! > > On Thu, Jan 19, 2017 at 5:00 PM, Taylor Braun-Jones < > taylor at braun-jones.org> wrote: > >> Cool, thanks D?enan! >> >> On Thu, Jan 19, 2017 at 2:14 PM, D?enan Zuki? wrote: >> >>> ... and more: >>> >>> Additionally, we've added ITK and VTK libraries from GitHub to our daily >>> compiler testing and validations. So in short, from now on we will be >>> releasing MSVC compiler versions to the public where live GitHub ITK and >>> VTK sources will build clean. That's a promise :). >>> >>> Thanks, >>> Ulzii Luvsanbat >>> Visual C++ Team >>> >>> On Thu, Jan 19, 2017 at 1:21 PM, D?enan Zuki? wrote: >>> >>>> A new reply in that bug report: >>>> >>>> Hi, there's a lag when we, the compiler team, tags the bug resolved and >>>> the fix actually gets included in the VS release. We apologize for that, >>>> it's just the way how engineering works to get everything ready in VS to be >>>> shipped. This specific bug has been fixed for the VS2017 RC3 release, which >>>> is only days away from shipping. >>>> >>>> If you'd you like to validate your project before that with a private >>>> Nuget package of the compiler toolset, then please send me an email here >>>> (batul at Microsoft dot com), and I can get you going. >>>> >>>> On Thu, Jan 19, 2017 at 12:46 PM, D?enan Zuki? >>>> wrote: >>>> >>>>> Hi Taylor, >>>>> >>>>> I submitted a bug >>>>> >>>>> report to Microsoft about it, and somebody said they will add ITK to their >>>>> compiler test suite. Also, that crashing bug was supposedly fixed for >>>>> "final release". >>>>> >>>>> Regards, >>>>> D?enan >>>>> >>>>> On Thu, Jan 19, 2017 at 12:18 PM, Taylor Braun-Jones < >>>>> taylor at braun-jones.org> wrote: >>>>> >>>>>> Any chance the 4.11 release could have at least some preliminary >>>>>> support for VS2017? Right now it crashes the compiler: >>>>>> >>>>>> C:\src\itk\modules\core\common\include\itkPromoteType.h(97): fatal >>>>>> error C1001: An internal error has occurred in the compiler. >>>>>> (compiler file 'msc1.cpp', line 1469) >>>>>> To work around this problem, try simplifying or changing the program >>>>>> near the locations listed above. >>>>>> Please choose the Technical Support command on the Visual C++ >>>>>> Help menu, or open the Technical Support help file for more >>>>>> information >>>>>> Internal Compiler Error in C:\PROGRA~2\MIB055~1\2017\COMM >>>>>> UN~1\VC\Tools\MSVC\1410~1.247\bin\HostX64\x64\cl.exe. You will be >>>>>> prompted to send an error report to Microsoft later. >>>>>> INTERNAL COMPILER ERROR in 'C:\PROGRA~2\MIB055~1\2017\COM >>>>>> MUN~1\VC\Tools\MSVC\1410~1.247\bin\HostX64\x64\cl.exe' >>>>>> Please choose the Technical Support command on the Visual C++ >>>>>> Help menu, or open the Technical Support help file for more >>>>>> information >>>>>> >>>>>> Taylor >>>>>> >>>>>> On Mon, Jan 16, 2017 at 4:18 PM, Matt McCormick < >>>>>> matt.mccormick at kitware.com> wrote: >>>>>> >>>>>>> On behalf of the Insight Toolkit community, we are proud to announce >>>>>>> that ITK 4.11 release candidate 2 has been tagged and is available >>>>>>> for >>>>>>> testing! Please take this opportunity to test the new features in the >>>>>>> release candidate. >>>>>>> >>>>>>> >>>>>>> To obtain the source code, use the links: >>>>>>> >>>>>>> >>>>>>> https://github.com/Kitware/ITK/archive/v4.11rc02.zip >>>>>>> https://github.com/Kitware/ITK/archive/v4.11rc02.tar.gz >>>>>>> >>>>>>> or >>>>>>> >>>>>>> git clone https://itk.org/ITK.git >>>>>>> cd ITK >>>>>>> git checkout -q --detach v4.11rc02 >>>>>>> >>>>>>> For more details, please see the Git documentation [1]. >>>>>>> >>>>>>> >>>>>>> A few selected highlights for this release: >>>>>>> >>>>>>> - Remote Modules were added to: perturb mesh vertices with additive >>>>>>> gaussian noise, accurately benchmark computational performance, >>>>>>> perform principal components analysis of scalar, vector, and mesh >>>>>>> vertex data, create a run-length encoded memory compression scheme >>>>>>> for >>>>>>> itk::Image, run N-D morphological contour interpolation, interpolate >>>>>>> multi-label images, iterate over multiple images simultaneously, and >>>>>>> compute inverse displacement fields. >>>>>>> - NumPy bridge support is now enabled by default with NumPy array >>>>>>> views of multi-component images and VNL vectors and matrices. >>>>>>> - Internal HDF5 was updated to the latest upstream version along >>>>>>> with a number of other third-party libraries. >>>>>>> >>>>>>> >>>>>>> This release introduces a new template class export specification >>>>>>> macro, ITK_TEMPLATE_EXPORT. The macro should be used with templated >>>>>>> classes to address failing dynamic_cast's and exception catching >>>>>>> across binaries on Mac OSX. >>>>>>> >>>>>>> Bugs were addressed and improvements were made to how the >>>>>>> pseudo-random number generator is used. Tests that rely on the random >>>>>>> number generator should explicitly set the global seed at start: >>>>>>> >>>>>>> itk::Statistics::MersenneTwisterRandomVariateGenerator::GetI >>>>>>> nstance()->SetSeed( >>>>>>> 121212 ); >>>>>>> >>>>>>> To improve randomness, new instances of the generator start from a >>>>>>> different seed; some minor differences in the output of algorithms >>>>>>> that uses the generator, like mutual information metrics, should be >>>>>>> expected. >>>>>>> >>>>>>> Additionally, output may change for registration with composite >>>>>>> affine >>>>>>> transforms; the v4 registration framework now uses corner sampling as >>>>>>> opposed to random sampling to estimate their parameter scales. >>>>>>> >>>>>>> >>>>>>> Please test the release candidate and share your experiences on the >>>>>>> mailing list, issue tracker, and Gerrit Code Review. >>>>>>> >>>>>>> >>>>>>> An Experimental build, which demonstrates how the test suite performs >>>>>>> on your local build system, can be submitted to the dashboard [2] >>>>>>> with: >>>>>>> >>>>>>> mkdir ../ITK-build >>>>>>> cd ../ITK-build >>>>>>> cmake ../ITK >>>>>>> ctest -j 4 -M Experimental -T Configure -T Build -T Test -T Submit >>>>>>> >>>>>>> Visual Studio builds must also add ?-C Release? to the ctest command. >>>>>>> >>>>>>> Notify the mailing list if there are any unexpected failures. >>>>>>> Testing >>>>>>> your own applications against the RC is also appreciated. >>>>>>> >>>>>>> >>>>>>> Congratulations to the 31 contributors to this release. We would >>>>>>> especially like to recognize the new contributors: Hastings Greer, >>>>>>> Gilles Filippini, Thien Nguyen, Caspar Goch, Mayeul Chassagnard, >>>>>>> Somesh Kashyap, Simon Rit, Pierre Barbier de Reuille, and Maeliss >>>>>>> Jallais. >>>>>>> >>>>>>> >>>>>>> The 4.11.0 final release is scheduled for January 23rd. >>>>>>> >>>>>>> >>>>>>> [1] http://www.itk.org/Wiki/ITK/Git >>>>>>> >>>>>>> [2] http://open.cdash.org/index.php?project=Insight >>>>>>> >>>>>>> >>>>>>> New Features >>>>>>> ------------ >>>>>>> >>>>>>> * Wrapping Improvements >>>>>>> - Python GetArrayFromImage() and GetImageFromArray() from >>>>>>> ITKBridgeNumPy are directly accessible from the Python itk namespace. >>>>>>> - The itk package loads much faster: individual modules are loaded >>>>>>> only when required. >>>>>>> - Conversion of ITK images from and to NumPy array using Bridge >>>>>>> NumPy supports RGB, RGBA, and Vector images. >>>>>>> - VNL vectors and VNL matrices can be converted from and to NumPy >>>>>>> objects with respectively the new couple of functions >>>>>>> GetArrayFromVnlVector()/GetVnlVectorFromArray() and >>>>>>> GetArrayFromVnlMatrix()/GetVnlMatrixFromArray() >>>>>>> - The global timestamp is used across all ITK Python modules when >>>>>>> built statically >>>>>>> - Wrap additional classes such as KernelFunctionBase >>>>>>> - itk_python_add_test CMake function added for Python script >>>>>>> testing >>>>>>> in ITK modules >>>>>>> >>>>>>> * New Remote Modules >>>>>>> - DVMeshNoise >>>>>>> - Perturbing mesh vertices with additive gaussian noise >>>>>>> - http://hdl.handle.net/10380/3567 >>>>>>> - PerformanceBenchmarking >>>>>>> - Accurate benchmarking of computational performance >>>>>>> - http://hdl.handle.net/10380/3557 >>>>>>> - PrincipalComponentsAnalysis >>>>>>> - Principal components analysis of scalar, vector, and mesh >>>>>>> vertex data >>>>>>> - http://hdl.handle.net/10380/3386 >>>>>>> - RLEImage >>>>>>> - Run-length encoded memory compression scheme for itk::Image >>>>>>> - http://hdl.handle.net/10380/3562 >>>>>>> - MorphologicalContourInterpolation >>>>>>> - N-D morphological contour interpolation >>>>>>> - http://hdl.handle.net/10380/3563 >>>>>>> - GenericLabelInterpolator >>>>>>> - A generic interpolator for multi-label images >>>>>>> - http://hdl.handle.net/10380/3506 >>>>>>> - MultipleImageIterator >>>>>>> - Iterate over multiple images simultaneously >>>>>>> - http://hdl.handle.net/10380/3455 >>>>>>> - FixedPointInverseDisplacementField >>>>>>> - Computes inverse displacement field >>>>>>> - http://hdl.handle.net/10380/3222 >>>>>>> >>>>>>> * Core Improvements >>>>>>> - New ITK_TEMPLATE_EXPORT for templated classes resolves >>>>>>> cross-binary dynamic_cast on Mac OSX >>>>>>> - New MersenneTwisterRandomVariateGenerator instances are >>>>>>> initialized with different seeds >>>>>>> - Use compiler feature detection in CMake for C++11 features, etc. >>>>>>> - New CMake macro itk_module_add_library for creating libraries in >>>>>>> ITK modules >>>>>>> - Improved support for ccache and distcc with >>>>>>> CMAKE__COMPILER_LAUNCHER (CMake >=3.4 required) >>>>>>> - Support for .sha512 ExternalData content links >>>>>>> - GitHub Pages and data.kitware.com ExternalData repositories >>>>>>> added >>>>>>> - GPGPU system support for C++11 >>>>>>> - Support of new compilers: Visual Studio 15 and XCode 8.2.1 >>>>>>> (clang-800.0.42.1) >>>>>>> >>>>>>> * Filtering Improvements >>>>>>> - HessianToObjectnessMeasure moved out of the ITKReview module >>>>>>> - New UnsharpMaskImageFilter for image edge enhancement >>>>>>> >>>>>>> * IO Improvements >>>>>>> - TransformFactory class has been moved to a separate module >>>>>>> - Spline order added to BSplineTransform identifier >>>>>>> - Improved NIFTI orientation support >>>>>>> >>>>>>> * Documentation Improvements >>>>>>> - Updates to the Software Guide, Doxygen, Wiki and Sphinx Examples >>>>>>> >>>>>>> * Third Party Library Updates >>>>>>> - pygccxml updated to v1.8.0 >>>>>>> - VNL updated to latest upstream (2016.07.06) >>>>>>> - SWIG updated to v3.0.11 >>>>>>> - KWSys updated to latest upstream (2016.11.21) >>>>>>> - HDF5 updated to v1.8.17 >>>>>>> - SCIFIO updated to latest upstream (2016.12.01) >>>>>>> - DCMTK updated to 3.6.1_20121012 >>>>>>> - CastXML to latest upstream (2016.01.28) >>>>>>> >>>>>>> * Improved Code Coverage -- we are at 85.44%! >>>>>>> - Jon Haitz-Legarreta's extensive code coverage improvements >>>>>>> - https://blog.kitware.com/why-should-we-spend-time-writing-tests/ >>>>>>> >>>>>>> * *Lots* of important bug fixes >>>>>>> >>>>>>> * And much more! See details in the log below. >>>>>>> >>>>>>> >>>>>>> Changes from v4.11rc01 to v4.11rc02 >>>>>>> ----------------------------------- >>>>>>> >>>>>>> Bradley Lowekamp (5): >>>>>>> BUG: Remove unused SimpleImageRegistrationTest baselines >>>>>>> ENH: Expose GetNextSeed method in MersenneTwiseter Generator >>>>>>> BUG: Add option for fixed seed or wall clock seed for sampling >>>>>>> BUG: Use metric random seed in v3 examples >>>>>>> BUG: Prefer setting seed at algorithm in "v4" tests. >>>>>>> >>>>>>> Francois Budin (3): >>>>>>> ENH: Update BridgeNumPy to latest version on 2017.01.08 to >>>>>>> address ITK-3511 >>>>>>> BUG: Extra \$ in doxygen comment >>>>>>> BUG: Binary include directory added only if enabled shared >>>>>>> >>>>>>> Jon Haitz Legarreta (2): >>>>>>> DOC: Document itkLabelOverlapMeasuresImageFilter methods. >>>>>>> DOC: Fix ITKImageNoise filters' doc TeX errors. >>>>>>> >>>>>>> Matthew McCormick (1): >>>>>>> BUG: Remove invalid ImageRegistration4Test.png.sha512 >>>>>>> >>>>>>> Max Smolens (1): >>>>>>> DOC: Fix itkUnsharpMaskImageFilter documentation typos >>>>>>> >>>>>>> Simon Rit (1): >>>>>>> BUG: ITK-based software was crasing when thread creation failed >>>>>>> >>>>>>> >>>>>>> Changes from v4.10.0 to v4.11rc01 >>>>>>> --------------------------------- >>>>>>> >>>>>>> Bill Lorensen (4): >>>>>>> COMP: Restore support for clang 3.0 compiler >>>>>>> COMP: Consistent use of ModifiedTimeType >>>>>>> ENH: Bump WikiExamples remote module version >>>>>>> ENH: Bump WikiExamples version >>>>>>> >>>>>>> Bradley Lowekamp (57): >>>>>>> ENH: Add registered TrasformIO's to exception >>>>>>> ENH: Use template or constant for loop stop condition >>>>>>> ENH: Updating SWIG version to 3.0.9 >>>>>>> COMP: Address VS9 ambiguous std::abs call in Haung calculator >>>>>>> COMP: Fix undefined NumericTraits::Zero and One errors with >>>>>>> mingw64 >>>>>>> BUG: Fix segfault if ~CleanUpObjectFactory called multiple times >>>>>>> BUG: Address itkHDF5ImageIO test failures for mingw64 >>>>>>> BUG: demonstrate dynamic_cast failure when reading transforms >>>>>>> BUG: Address itkHDF5ImageIO test failures for mingw64 >>>>>>> ENH: Updating SWIG version to 3.0.10 >>>>>>> ENH: Enable CMP0063 New behavior >>>>>>> COMP: Enable hidden visibility property with vxl static >>>>>>> libraries >>>>>>> COMP: Enable hidden visibility property with HDF5 static >>>>>>> libraries >>>>>>> COMP: Enable hidden visibility property with HDF5 static >>>>>>> libraries >>>>>>> BUG: Match Add2 function to AddImageFilter documentation >>>>>>> ENH: Improve support for std::complex with PowImageFilter >>>>>>> ENH: Explicitly mark required files for dependent tests >>>>>>> COMP: Bypass XCode 7.3,8 internal compilation error >>>>>>> COMP: Address CMake configuration error with itkJPEG2000Test03 >>>>>>> property >>>>>>> BUG: Correct test's REQUIRED_FILES to only the input. >>>>>>> ENH: move HessianToObjectnessMeasure filter out of Review >>>>>>> ENH: Separate TransformFactory class into separate module >>>>>>> DOC: Add links between similar label to rgb filters >>>>>>> ENH: Separate data from function calls >>>>>>> COMP: Fix changed Graft method >>>>>>> ENH: Reduce template dependencies on CalculateRotationMatrix >>>>>>> ENH: Add Functor Accessors to LabelMapToRGB filter >>>>>>> BUG: Enable VirtualDomain and FixedTransform in RegMethv4 >>>>>>> BUG: Use BSpline Order 3 for 2D in transform factory. >>>>>>> ENH: Add spline order to BSplineTransform's string id >>>>>>> ENH: Adding initial CircleCi configuration file >>>>>>> COMP: Fix float to unsigned integer conversion warnings >>>>>>> BUG: Include installed modules in ITK_MODULES_ENABLED >>>>>>> COMP: Address CMake error that ITKGPUCommon is not in export >>>>>>> COMP: Address wrong library types with VS and shared libraries >>>>>>> BUG: Ensure CreateImageIO is concurrent thread safe >>>>>>> ENH: Mark HDF5 CMake options as internal >>>>>>> COMP: Add template export declaration for ParametricPath >>>>>>> COMP: Correct TEMPLATE_EXPLICIT definition in Path module >>>>>>> ENH: Factor out common code in the TrasformFactoryBase >>>>>>> registration >>>>>>> ENH: Add CMake variable for max transform dimension, defaults 4 >>>>>>> ENH: Create CMake module to check for private RTTI compatibility >>>>>>> ENH: Improving setting of default ITK_TEMPATE_VISIBILITY_DEFAULT >>>>>>> COMP: Correct ifndef value to allow user defined >>>>>>> ITK_TEMPLATE_EXPORT >>>>>>> BUG: Add explicit instantiate for ObjectToObjectOptimizerBase >>>>>>> COMP: Use add_definitions for CMake 2.8.9 compatibility >>>>>>> COMP: Add warning suppression for distcc warning >>>>>>> ENH: Explicitly instantiate the optimizer base over float >>>>>>> BUG: Use IsLinear to check if transform is "affine" >>>>>>> ENH: Remove unneeded includes of random iterator header >>>>>>> ENH: Improve thread-safety for Generator, and unique New >>>>>>> sequence >>>>>>> ENH: Do not use global random generator >>>>>>> BUG: Update v3 registration metrics to use local seed >>>>>>> ENH: Prefer setting local seed over global in tests. >>>>>>> ENH: Update SWIG to latest 3.0.11 release >>>>>>> BUG: relax testing parameters for v3 translation registration >>>>>>> BUG: Restore baseline for debug registration >>>>>>> >>>>>>> Caspar Goch (2): >>>>>>> BUG: Use printable type for RGBA pixel ostream for ITK-3501 >>>>>>> STYLE: Remove extra space for ITK-3501 >>>>>>> >>>>>>> Christina Rossmanith (1): >>>>>>> DOC: Added more details to the class Doxygen documentation. >>>>>>> >>>>>>> Davis Vigneault (2): >>>>>>> COMP: VCL_DEFINE_SPECIALIZATION not defined >>>>>>> ENH: Add remote module DVMeshNoise >>>>>>> >>>>>>> D?enan Zuki? (27): >>>>>>> BUG: Fixing CID-1355433 (IDENTICAL_BRANCHES) >>>>>>> ENH: Adding MultipleImageIterator as a remote module >>>>>>> COMP: enables TBB 4.4 back-end for VTK7's SMP >>>>>>> COMP: enabling position independent code flag for FFTW >>>>>>> ENH: adding configuration file for code reformatting tool >>>>>>> clang-format >>>>>>> ENH: Updating hooks to work with Windows/TortoiseGit/KDiff3 >>>>>>> COMP: Fixing -fPIC flag passing with Ninja build system >>>>>>> ENH: Adding RLEImage as a remote module >>>>>>> ENH: Updating uncrustify configuration to current git version >>>>>>> STYLE: better compliance with ITK style >>>>>>> STYLE: A new option in uncrustify, updating the config file >>>>>>> accordingly >>>>>>> ENH: Adding MorphologicalContourInterpolation as a remote >>>>>>> module >>>>>>> ENH: improving documentation >>>>>>> BUG: fixing buffer growing endlessly, as reported by Timothee >>>>>>> Evain >>>>>>> BUG: fixing buffer growing endlessly, as reported by Timothee >>>>>>> Evain >>>>>>> STYLE: default uncrustify configuration file is less aggressive >>>>>>> COMP: Fixing warning >>>>>>> COMP: VS15 compiler fix >>>>>>> BUG: casting -9 to unsigned produced unwanted result >>>>>>> BUG: Ensuring consistency between debug and release >>>>>>> COMP: Updating LesionSizingToolkit after some recent compile >>>>>>> fixes >>>>>>> COMP: respect option METAIO_USE_NAMESPACE >>>>>>> ENH: updating version of AnisotropicDiffusionLBR >>>>>>> ENH: adding UnsharpMaskingImageFilter >>>>>>> COMP: explicitly cast to output type >>>>>>> BUG: double call to update would cause empty output image >>>>>>> ENH: Updating RLEImage remote module. Change-log: >>>>>>> >>>>>>> Eugene Prilepin (4): >>>>>>> ENH: Add the "ITK_USE_GPU" to ITK Config >>>>>>> BUG: Fix API for set/get "LaplacianImageFilter" object >>>>>>> ENH: Add support of images types with the 'CovariantVector' >>>>>>> pixel type >>>>>>> ENH: Add python test for the 'GradientVectorFlowImageFilter' >>>>>>> wrap >>>>>>> >>>>>>> Francois Budin (52): >>>>>>> ENH: Adding GetArrayFromImage in python itk namespace >>>>>>> ENH: Adding GetImageFromArray in python itk namespace >>>>>>> ENH: *_WRAP_* variable per external module >>>>>>> BUG: ImportImageFilter not responsible of memory management >>>>>>> ENH: New remote module GenericLabelInterpolator >>>>>>> DOC: SetNumberOfOutputs had wrong comment >>>>>>> BUG: lazyAttributes dictionary keys could be over-ridden >>>>>>> BUG: lazyAttributes dictionary keys could be over-ridden >>>>>>> BUG: Fix recent update of HDF5 (1.8.17) >>>>>>> ENH: Update SCIFIO to latest version on 08/23/2016 >>>>>>> ENH: Addition of the remote module >>>>>>> FixedPointInverseDisplacementField >>>>>>> ENH: Update SCIFIO to latest version on 08/29/2016 >>>>>>> BUG: Path to commit was relative instead of absolute >>>>>>> ENH: Path to SetupForDevelopment is relative, not absolute >>>>>>> BUG: LSMImageIO write function was not checking image dimension >>>>>>> BUG: LSMImageIO was not checking correctly image dimension >>>>>>> BUG: Missing associated test data >>>>>>> BUG: Missing associated test data >>>>>>> ENH: Bump CMakeLists.txt version to 4.10.1. >>>>>>> BUG: Quotes are not escaped in configured cmake file >>>>>>> ENH: Improving API of Graft() in itk::Image >>>>>>> ENH: Updating ITKGenericLabelInterpolator remote module >>>>>>> ENH: Update ITKIOTransformDCMTK remote module >>>>>>> BUG: Factory registration should depend on ITK_BUILD_SHARED >>>>>>> COMP: Updating DCMTK compilation for Ninja >>>>>>> ENH: Update version of DCMTK to 3.6.1_20121012 >>>>>>> ENH: Update SCIFIO to latest version on 10/25/2016 >>>>>>> BUG: Swig and PCRE do not support space in installation paths >>>>>>> BUG: exit() call from within piped commands was not exiting the >>>>>>> script >>>>>>> BUG: Typo in folder creation command >>>>>>> ENH: Only display message for transform registered multiple >>>>>>> times in debug >>>>>>> ENH: Image spacing must be positive >>>>>>> BUG: Supported extensions by PNG IO were not added in >>>>>>> constructor. >>>>>>> DOC: Documentation in itkRBGAPixel and itkRGBPixel was >>>>>>> incorrect. >>>>>>> ENH: Update SCIFIO to lastest (2016.12.01) >>>>>>> ENH: FixedPointInverseDisplacementField moved to >>>>>>> InsightSoftwareConsortium >>>>>>> COMP: Remove compilation warnings >>>>>>> ENH: Improved support of ccache and distcc >>>>>>> BUG: GPUImage regression due to API change. >>>>>>> ENH: Update Bridge Numpy (2016.12.05) >>>>>>> ENH: Update VariationalRegistration to remove warnings during >>>>>>> compilation >>>>>>> ENH: FindPythonLibs does not support both debug and release >>>>>>> python libraries >>>>>>> ENH: Update VariationalRegistration >>>>>>> BUG: Missing ITK_TEMPLATE_EXPORT in forward declaration of >>>>>>> itk::ImageBase >>>>>>> BUG: Missing ITK_TEMPLATE_EXPORT in itkOptimizerParametersHelper >>>>>>> BUG: Missing ITK_TEMPLATE_EXPORT in templated class >>>>>>> BUG: Remove linkage warnings on MacOS >>>>>>> BUG: HDF5 CMake installation directory variable had not been >>>>>>> updated >>>>>>> BUG: Missing include header in AnisotropicDiffusionBLR remote >>>>>>> module hxx files >>>>>>> COMP: Silencing unused variable warning in itkTimeStamp >>>>>>> STYLE: Improve style checking by using module >>>>>>> ITKKWStyleOverwrite.txt >>>>>>> COMP: OS*Barrier functions are deprecated on MacOS 10.12 >>>>>>> >>>>>>> GCC-XML Upstream (1): >>>>>>> ENH: pygccxml v1.8.0 (reduced) >>>>>>> >>>>>>> Gert Wollny (1): >>>>>>> BUG: Relax vnl_complex floating point comparisons for i386 >>>>>>> >>>>>>> Gilles Filippini (1): >>>>>>> BUG: Use NATIVE_HBOOL for encoding HDF5 types. >>>>>>> >>>>>>> HDF Group (1): >>>>>>> ENH: hdf5 1.8.17-r30218 (reduced) >>>>>>> >>>>>>> Hans Johnson (23): >>>>>>> COMP: Use cmake WriteCompilerDetectionHeader >>>>>>> ENH: Use itk_compiler_detection versions >>>>>>> COMP: Need ITK_NOEXCEPT_OR_THROW macro. >>>>>>> COMP: Provide consistent granular C++11 support >>>>>>> STYLE: Use granular ITK_COMPILER_CXX_STATIC_ASSERT >>>>>>> STYLE: Prefer to use consistent definitions >>>>>>> COMP: Improve robustness of identifying the compiler standard >>>>>>> used >>>>>>> BUG: try_compile for AlignAs were always failing >>>>>>> STYLE: Provide a well documented macro for repeated code >>>>>>> STYLE: Delete functions in consistent way >>>>>>> COMP: GPU baseclass ivars need to be protected >>>>>>> COMP: Remove unnecessary circular dependancy >>>>>>> COMP: Add long long usage for HDF5 >>>>>>> COMP: Add long long usage for HDF5 >>>>>>> STYLE: Prefer static small array to dynamic array >>>>>>> BUG: Confusing interface for FFTW wisdom files >>>>>>> STYLE: Output dimension from OutputImageType >>>>>>> STYLE: Code review style cleanups >>>>>>> STYLE: Prefer to use ITK AssertOrThrow macros >>>>>>> ENH: Add OverrideBoundaryCondition logic >>>>>>> ENH: Provide mechanism for enhanced NIFTI support >>>>>>> BUG: Use NIFTI sform/qform conventions correctly >>>>>>> ENH: Remove ambiguity about sform/qform >>>>>>> >>>>>>> Hastings Greer (8): >>>>>>> BUG: ITK-3448 Wrap itkQuadEdgeCellTraitsInfo more specifically >>>>>>> BUG: make itkTriangleHelper instantiable to ease wrapping >>>>>>> BUG: remove lsqr because of license issues ITK 1160 >>>>>>> BUG: make itkTriangleHelper instantiable to ease wrapping >>>>>>> BUG: initialize X to zero in lsmr Solve >>>>>>> BUG: Labled Point Set Registration: test multiple labels >>>>>>> BUG: Fix python wrapping of Cuberille remote module >>>>>>> BUG: Add test demonstrating Python global timestamp issue >>>>>>> >>>>>>> Jean-Christophe Fillion-Robin (5): >>>>>>> STYLE: UseITK: Set ImageIO exceptions using new convention. See >>>>>>> #3393 >>>>>>> STYLE: MeshIO: Moves virtual destructor into cpp files. See >>>>>>> #3393 >>>>>>> STYLE: Update MeshIO factories to use RegisterFactoryInternal. >>>>>>> See #3393 >>>>>>> STYLE: MeshIO: Move MeshFileWriterException into its own file. >>>>>>> See #3393 >>>>>>> STYLE: MeshIO: Remove unused include from headers. See #3393 >>>>>>> >>>>>>> Johan Andruejol (3): >>>>>>> ENH: Add missing itkKernelFunctionBase wrapping >>>>>>> ENH: Add PrincipalComponentsAnalysis remote module >>>>>>> COMP: Override cannot be used with inline >>>>>>> >>>>>>> Jon Haitz Legarreta (216): >>>>>>> ENH: Improve itkFlatStructutingElement coverage. >>>>>>> ENH: Improve itkPathToImageFilter class coverage. >>>>>>> ENH: Improve itkIsolatedWatershedImageFilter coverage. >>>>>>> ENH: Improve itkLogSigmoidTransferFunction coverage. >>>>>>> STYLE: Improve itkBSplineTransform doc style. >>>>>>> ENH: Improve GaborKernelFunctionCoverage. >>>>>>> PERF: Remove duplicate itkMath include >>>>>>> STYLE: Move the PrintSelf method to the end >>>>>>> STYLE: Improve the itkScalarToRGBColormapImageFilter style. >>>>>>> STYLE: Delete duplicate method documentation >>>>>>> STYLE: Remove method documentation from implementation file >>>>>>> STYLE: Improve GACLevelSet classes' style >>>>>>> STYLE: Improve test style >>>>>>> ENH: Improve itkGaussianDerivativeImageFilter coverage. >>>>>>> ENH: Improve the itkScalarToRGBColormapImageFilter coverage >>>>>>> STYLE: Improve itkScalarToRGBColormap test style >>>>>>> ENH: Improve GACLSImageFilter classes' coverage >>>>>>> STYLE: Improve comment style in GACLS tests >>>>>>> ENH: Improve itkImportImageFilter coverage >>>>>>> ENH: Improve itkVideoFileReader coverage >>>>>>> ENH: Improve itkVideoFileWriter coverage >>>>>>> STYLE: Improve the itkVideoFileWriter style. >>>>>>> STYLE: Imrpove itkVideoFileReader style. >>>>>>> ENH: Improve the itkBSplineControlPointImageFunction coverage >>>>>>> STYLE: Improve the itkIntensityWindowingImageFilter style >>>>>>> STYLE: Improve the itkIntensityWindowingImageFilter test style >>>>>>> ENH: Improve ImageToSpatialObjectRegistrationMethod coverage >>>>>>> STYLE: Improve test style >>>>>>> ENH: Improve MaskNeighborhoodOperatorImageFilter coverage >>>>>>> ENH: Improve itkMeshFileWriter coverage >>>>>>> ENH: Improve RescaleIntensityImageFilter coverage. >>>>>>> ENH: Improve itkClampImageFilter coverage. >>>>>>> BUG: Fix ivar type casting in PrintSelf. >>>>>>> STYLE: Improve MRIBiasFieldCorrectionFilter style. >>>>>>> ENH: Improve MRIBiasFieldCorrectionFilter coverage. >>>>>>> ENH: Improve itkIntensityWindowingImageFilter coverage >>>>>>> BUG: Fix Run-time type information in CSV module classes. >>>>>>> ENH: Improve the itkHistogram class code coverage. >>>>>>> DOC: Fix documentation typo. >>>>>>> STYLE: Improve the ImproveRescaleIntensityImageFilter style. >>>>>>> PERF: Make the itkVideoFileReader ivars private >>>>>>> PERF: Make itkVideoFileWriter ivars private >>>>>>> ENH: Improve coverage for itk::OrientImageFilter. >>>>>>> STYLE: Improve itk::OrientImageFilter class style. >>>>>>> ENH: Improve itkCSVNumericObjectFileWriter coverage. >>>>>>> ENH: Add missing standard class typdefs. >>>>>>> ENH: Improve itkVoronoiSegmentationImageFilter coverage. >>>>>>> ENH: Improve itkVoronoiSegmentationImageFilter style. >>>>>>> STYLE: Improve the MalahanobisDistanceThresholdImageFunction >>>>>>> style. >>>>>>> ENH: Improve coverage for itkMalahanobisDistanceThreshold. >>>>>>> ENH: Improve itk::MinimumMaximumImageCalculator coverage. >>>>>>> ENH: Improve itkMinimumMaximumImageCalculator style. >>>>>>> BUG: Fix type mismatch in test. >>>>>>> STYLE: Improve itkPolylineMaskImagefilter style. >>>>>>> ENH: Improve itkPolylineMaskImageFilter coverage. >>>>>>> ENH: Improve itkFileListVideoStyle. >>>>>>> ENH: Improve itkLandmarkBasedTransformInitializer coverage. >>>>>>> ENH: Add baseline image to itkPolylineMaskImageFilter test. >>>>>>> ENH: Improve coverage for itkBSplineTransformInitializer. >>>>>>> STYLE: Improve itkBSplineTransformInitializer doc style. >>>>>>> ENH: Enhance itkBSplineTransformInitializer implementation. >>>>>>> DOC: Fix typo in method documentation. >>>>>>> ENH: Improve the itkRegularStepGradientDescentOptimizerv4 >>>>>>> style. >>>>>>> STYLE: Improve the itkSimpleContourExtractorImageFilter style. >>>>>>> ENH: Exercise the class' Get methods. >>>>>>> ENH: Improve coverage for itkStatisticsOpeningLabelMapFilter. >>>>>>> ENH: Improve style for itkThresholdLabelerImageFilter. >>>>>>> ENH: Improve itkThresholdLabelerImageFilter coverage. >>>>>>> ENH: Get internal ImageIO via a const macro. >>>>>>> ENH: Improve the itkSimpleContourExtractorImageFilter coverage. >>>>>>> STYLE: Improve the itkMetaArray class style. >>>>>>> ENH: Improve MetaArrayReader/Writer coverages. >>>>>>> ENH: Improve the itkCovarianceImageFunction style. >>>>>>> STYLE: Improve itkVoronoiDiagram2DGenerator style. >>>>>>> ENH: Improve VoronoiDiagram2DGenerator coverage. >>>>>>> STYLE: Improve the itkBayesianClassifierImageFilter style. >>>>>>> STYLE: Improve the itkMetaArrayWriter style. >>>>>>> ENH: Improve itkCovarianteImageFunction coverage. >>>>>>> COMP: Fix signed/unsigned int comparison warning. >>>>>>> DOC: Improve itkGrayscaleDilateImageFilter documentation. >>>>>>> DOC: Improve documentation for itkGrayscaleErodeImageFilter. >>>>>>> DOC: Improve ConfigureHistogram method documentation. >>>>>>> STYLE: Improve the itkMovingHistogramMorphologyImagefilter >>>>>>> style. >>>>>>> BUG: Fix Superclass name in RTTI. >>>>>>> STYLE: Improve itkGaussianInterpolateImageFunction style. >>>>>>> ENH: Improve coverage for itkGaussianInterpolateImageFunction. >>>>>>> ENH: Improve itkBayesianClassifierImageFilter coverage. >>>>>>> ENH: Add itkBSplineControlPointImageFilter RTTI. >>>>>>> STYLE: Improve itkBSplinecontrolPointImageFilter style. >>>>>>> ENH: Improve itkBSplineControlPointImageFilter coverage. >>>>>>> ENH: Improve coverage for itkRegularStepGradientDescentO >>>>>>> ptimizerv4. >>>>>>> STYLE: Improve the class implementation file style. >>>>>>> STYLE: Improve the itkResampleImageFilter style. >>>>>>> DOC: Fix typo in GetMTime method doc. >>>>>>> STYLE: Remove out-of-body implementation doc >>>>>>> ENH: Improve itkResampleImageFilter coverage. >>>>>>> ENH: Improve itkAbsImageAdaptor and Filter coverage. >>>>>>> BUG: Fix itkLSMImageIO class' Superclass name. >>>>>>> ENH: Improve the itkInterpolateImagePointsFilter coverage. >>>>>>> ENH: Improve itkPowImageFilter coverage. >>>>>>> BUG: Fix ConvolutionImageFilter RTTI. >>>>>>> STYLE: Use initialization lists. >>>>>>> STYLE: Improve BinaryFunctorImageFilter style. >>>>>>> ENH: Improve itkMinimumImageFilter code coverage. >>>>>>> BUG: Fix Linux-x86_64-gcc4.1 warning on implicit conversion. >>>>>>> ENH: Improve MaximumImageFilter coverage. >>>>>>> BUG: Fix conversion to PixelType conversion. >>>>>>> COMP: Fix double to unsigned char conversion warning. >>>>>>> ENH: Improve coverage for itkNormalizeToConstantImageFilter. >>>>>>> BUG: Fix itkSquaredDifferenceErrorFunction RTTI. >>>>>>> ENH: Improve itkMeanImageFunctionCoverage. >>>>>>> ENH: Improve itkSquareImageFilter coverage. >>>>>>> STYLE: Improve the itkSquaredDifferenceErrorFunction style. >>>>>>> STYLE: Enhance style for itkNormalizeToConstantImageFilter. >>>>>>> STYLE: Improve itkMeanImageFunction style. >>>>>>> ENH: Remove unnecesary call to filter print. >>>>>>> ENH: Improve itkRegionOfInterestImageFilter coverage. >>>>>>> STYLE: Improve itkRegionOfInterestImageFilter style. >>>>>>> STYLE: Improve itkPasteImageFilter style. >>>>>>> STYLE: Improve itkJoinSeriesImageFilter style. >>>>>>> BUG: Fix itkPadLabelMapFilter RTTI Superclass. >>>>>>> COMP: Address std::cout.precision conversion warning. >>>>>>> ENH: Improve itkBayesianClassifiertImageFilter coverage. >>>>>>> ENH: Improve itkPadLabelMapFilter coverage. >>>>>>> ENH: Improve itkJoinSeriesImageFilter coverage. >>>>>>> ENH: Improve the itkPasteImageFilter coverage. >>>>>>> ENH: Improve MeanImageFilter coverage. >>>>>>> COMP: Address std::cout.precision conversion warning. >>>>>>> ENH: Improve TernaryMagnitudeImageFilter coverage. >>>>>>> ENH: Improve FFTConvolutionImageFilter coverage. >>>>>>> DOC: Fix class documentation in ternary magnitude filters. >>>>>>> ENH: Improve ConstrainedValueDifferenceImageFilter coverage. >>>>>>> ENH: Improve AndImageFilter coverage. >>>>>>> ENH: Add baseline test to itkTernaryMagnitudeImageFilter. >>>>>>> ENH: Use MD5 comparison framework in baseline test. >>>>>>> ENH: Improve itk::VectorRescaleIntensityImageFilter coverage. >>>>>>> STYLE: Improve the itkVectorRescaleIntensityImageFilter style. >>>>>>> ENH: Print missing ivar in filter PrintSelf method. >>>>>>> ENH: Improve itkComplexToImaginaryFilter coverage. >>>>>>> ENH: Improve itkComplexToPhaseImageFilter coverage. >>>>>>> ENH: Improve itkComplexToModulusImageFilter coverage. >>>>>>> ENH: Improve itkComplexToRealImageFilter coverage. >>>>>>> ENH: Improve itkVectorResampleImageFilter coverage. >>>>>>> ENH: Add GetTransform method. >>>>>>> ENH: Improve itkConstrainedValueAdditionImageFilter coverage. >>>>>>> ENH: Improve itkModulusImageFilter coverage. >>>>>>> ENH: Improve itkLog10ImageFilter coverage. >>>>>>> ENH: Imporve itkMagnitudeAndPhaseToComplexImageFilter coverage. >>>>>>> ENH: Improve itkLogImageFilter coverage. >>>>>>> ENH: Improve itkInvertIntensityImageFilter coverage. >>>>>>> STYLE: Improve itkInvertIntensityImageFilter style. >>>>>>> DOC: Add missing doc to itkInvertIntensityImageFilter. >>>>>>> STYLE: Improve itkIntensityWindowingImageFilter style. >>>>>>> STYLE: Use initialization lists. >>>>>>> ENH: Improve itkIntensityWindowingImageFilter coverage. >>>>>>> ENH: Improve itkNaryMaximumImageFilter coverage. >>>>>>> COMP: Fix std::precision type casting warning. >>>>>>> ENH: Improve itkPointSetToPointSetRegistrationMethod coverage. >>>>>>> STYLE: Improve the itkPointSetToPointSetImageRegistrationMethod >>>>>>> style. >>>>>>> ENH: Remove SmartPointers being explicitly initialized to null. >>>>>>> STYLE: Improve the itkPointSetToImageRegistrationMethod style. >>>>>>> ENH: Improve itkPointSetToImageRegistration coverage. >>>>>>> STYLE: Change the name of the itkPointSetToImageRegistrationMethod >>>>>>> test. >>>>>>> STYLE: Improve itkVectorResampleImageFilter style. >>>>>>> STYLE: Improve the itkAntiAliasBinaryImageFilter style. >>>>>>> ENH: Improve trigonometric function filters' coverage. >>>>>>> STYLE: Remove test names from std::out messages. >>>>>>> ENH: Improve Boolean Algebra ImageFilters coverage. >>>>>>> STYLE: Improve the EuclideanDistancePointMetric style. >>>>>>> ENH: Improve itkSigmoidImageFilter coverage. >>>>>>> STYLE: Improve itkCropImageFilter style. >>>>>>> ENH: Improve itkCropImageFilter coverage. >>>>>>> ENH: Improve RGBToLuminanceImageFilter and Adaptor coverage. >>>>>>> ENH: Improve itkRescaleIntensityImageFilter coverage. >>>>>>> ENH: Improve the itkMatrixSelectionImageFilter coverage. >>>>>>> ENH: Improve itkTanImageFilter and Adaptor coverage. >>>>>>> ENH: Increase itkSqrtImageFilter and Adaptor coverage. >>>>>>> ENH: Increase itkTernaryOperatorImageFilter coverage. >>>>>>> ENH: Increase itkSymmetricEigenAnalysisImageFilter coverage. >>>>>>> STYLE: Improve itkScalarImagekmeansImageFilter style. >>>>>>> STYLE: Conform to TEST_SET_GET_VALUE definition. >>>>>>> BUG: Fix uninitialized variable due to dynamic analysis defect. >>>>>>> BUG: Fix uninitialized variable defect reported by valgrind. >>>>>>> ENH: Improve the itkPointSetToPointSetRegistrationTest. >>>>>>> ENH: Improve the itkPointSetToImageRegistrationTest. >>>>>>> ENH: Increas BinaryMagnitudeImageFilter coverage. >>>>>>> STYLE: Remove test name from std output. >>>>>>> ENH: Increase MagnitudeImageFilter coverage. >>>>>>> BUG: Fix uninitialized variable defect reported by valgrind. >>>>>>> BUG: Fix Superclass name in RTTI. >>>>>>> STYLE: Improve itkFrustumSpatialFunction style. >>>>>>> STYLE: Improve the itkConicShellInteriorExteriorSpatialFunction >>>>>>> style. >>>>>>> BUG: Fix Superclass template argument list. >>>>>>> STYLE: Improve the itkTorusInteriorExteriorSpatialFunction >>>>>>> style. >>>>>>> STYLE: Improve the itkCheckerBoardImageFilter class style. >>>>>>> ENH: Improve the itk::LabelVotingImageFilter coverage. >>>>>>> ENH: Improve itkCheckerBoardImageFilter coverage. >>>>>>> STYLE: Improve itk::LabelVotingImageFilter style. >>>>>>> STYLE: Improve the itkHoughTransform2DCirclesImageFilter style. >>>>>>> ENH: Add test for itk::FrustumSpatialFunction class. >>>>>>> ENH: Improve itkConnectedThresholdImageFilter coverage. >>>>>>> STYLE: Improve itkConnectedThresholdImageFilter style. >>>>>>> BUG: Fix FrustumSpatialFunction internal precision conversion. >>>>>>> COMP: Fix implicit conversion warning. >>>>>>> STYLE: Improve itkThresholdImageFilter style. >>>>>>> ENH: Add test for itk::TorusInteriorExteriorSpatialFunction. >>>>>>> BUG: Fix Superclass template argument list. >>>>>>> ENH: Improve itkUnsharpMaskingImageFilter implementation. >>>>>>> ENH: Improve the itkUnsharpMaskingImageFilter coverage. >>>>>>> ENH: Fix UnsharpMaskingImageFilter test inconsistencies. >>>>>>> BUG: Add missing itkTypeMacro. >>>>>>> DOC: Document the member variables. >>>>>>> BUG: Fix the itkImageSource RTTI class name, >>>>>>> STYLE: Improve itkLabelImageGaussianInterpolateImageFunction >>>>>>> style. >>>>>>> ENH: Finish itkGaussianInterpolateImageFunction PrintSelf. >>>>>>> STYLE: Improve itkLabelOverlapMeasurementImageFilter style. >>>>>>> >>>>>>> KWSys Robot (6): >>>>>>> KWSys 2016-06-30 (96f06c8e) >>>>>>> KWSys 2016-10-23 (b630d2f5) >>>>>>> KWSys 2016-11-03 (37306a1c) >>>>>>> KWSys 2016-11-08 (2b3e2b1c) >>>>>>> KWSys 2016-11-09 (18c65411) >>>>>>> KWSys 2016-11-21 (cb55cf5a) >>>>>>> >>>>>>> Maeliss Jallais (1): >>>>>>> BUG: Add unsigned and signed short to the wrapping of vnl_matrix >>>>>>> >>>>>>> Matthew McCormick (85): >>>>>>> PERF: Simplify HilbertPath numberOfPathVertices computation. >>>>>>> BUG: CID 1355469 NNetClassifierTest4 unintended integer >>>>>>> division. >>>>>>> BUG: Update Cuberille Remote for version check fix. >>>>>>> ENH: Bump ITK version to 4.11.0. >>>>>>> BUG: Fix HDF5ImageIO type information. >>>>>>> BUG: Fix H5File memory leak in HDF5ImageIO. >>>>>>> DOC: Collect Francois Budin's contributions in .mailmap >>>>>>> BUG: Limit WRAP_ITK_MODULES when building externally >>>>>>> STYLE: Improvements to ResourceProbe report output. >>>>>>> ENH: Add a useTabs argument to ResourceProbe::Report. >>>>>>> ENH: Add standard error measure to the ResourceProbe >>>>>>> ENH: Add itk_python_add_test function. >>>>>>> BUG: Remove VNL file from subtree merge. >>>>>>> COMP: Fix wrapping with a space in the Python include path >>>>>>> BUG: Fix PermuteAxesImageFilter pipeline method visibility >>>>>>> BUG: Initialize PermuteOrder and FlipAxes in OrientImageFilter >>>>>>> BUG: ResampleImageFilter honor isInside output of the transform >>>>>>> method >>>>>>> COMP: Avoid recursive include of itkMath.h >>>>>>> COMP: Fix VXL header installation locations >>>>>>> BUG: ClampImageFilterTest for older GCC, InPlaceOn >>>>>>> DOC: Add CONTRIBUTING.md file to the top level. >>>>>>> COMP: Update VariationalRegistration to address Doxygen warnings >>>>>>> BUG: Compiler detections file installed into ITK build tree >>>>>>> location >>>>>>> COMP: Do not use string(TIMESTAMP. >>>>>>> COMP: Remove HDF5 -std=c99 for C++ files >>>>>>> BUG: Do not build HDF5 static library with a shared build >>>>>>> ENH: Add PerformanceBenchmarking Remote Module >>>>>>> COMP: Remove duplicate wrappings for ResampleImageFilter >>>>>>> BUG: Put Python test output files in the build tree >>>>>>> BUG: Improve HDF5ImageIO::CloseDataSet name >>>>>>> COMP: Use add_python_test PythonLazyLoadingImage >>>>>>> COMP: Address missing override it itkFactoryTestLib.cxx >>>>>>> BUG: Index,Size,Offset constructors present in Python with C++11 >>>>>>> COMP: Address missing override it itkFactoryTestLib.cxx >>>>>>> BUG: PerformanceBenchmarking as EXCLUDE_FROM_DEFAULT >>>>>>> ENH: Bump SetupForDevelopment version >>>>>>> BUG: Add missing ZLib deflate support to HDF5 >>>>>>> BUG: Address memory leak, remove NumPy build dep in BridgeNumPy >>>>>>> COMP: Do not set ITK_LIBRARY_BUILD_TYPE in ITKTransformFactory >>>>>>> COMP: Do not set ITK_LIBRARY_BUILD_TYPE in ITKTransformFactory >>>>>>> BUG: Check when ITK_WRAP_VECTOR_COMPONENTS doesn't include >>>>>>> ITK_WRAP_IMAGE_DIMS >>>>>>> BUG: RichardsonLucyDeconvolutionImageFilter with non-null input >>>>>>> Image Origin >>>>>>> BUG: Fix inconsistent Twister start with Initialize(seed) and >>>>>>> SetSeed(seed) >>>>>>> BUG: Do not hard code CMake scripts in HDF5 >>>>>>> COMP: Workaround Emscripten ITKCommon test build failure >>>>>>> COMP: Do embed fancy HDF5 libsettings with Emscripten >>>>>>> COMP: Add missing H5T_patch_vlen_file declaration >>>>>>> ENH: Bump CastXML to 2016-10-11 master. >>>>>>> COMP: Workaround Emscripten ITKCommon test build failure >>>>>>> BUG: Swap CastXML hashes for Mac OSX and Windows >>>>>>> ENH: Sync ExternalData.cmake with upstream CMake 3.6.2 >>>>>>> COMP: Fix VNL tests when cross-compiling >>>>>>> ENH: ExternalData multi-algorithm support >>>>>>> ENH: ExternalData support for data.kitware.com >>>>>>> BUG: Install missing H5pubconf.h >>>>>>> BUG: Use SpacePrecisionType in TileImageFilter >>>>>>> BUG: Use internal ExternalData_Add_Target >>>>>>> ENH: Run .sha512, .md5 simultaneous modification pre-commit >>>>>>> check >>>>>>> BUG: Correct CastXML Windows binary >>>>>>> BUG: Support non-zero Index in LevelSetNeighborhoodExtractor >>>>>>> ENH: Add ArchiveTestingDataOnGirder.py >>>>>>> BUG: Correct AtanRegularizationHeavisideStepFunction derivative >>>>>>> ENH: Add Utilities/Maintenance/ContentLinkSynchronization.sh >>>>>>> BUG: Remove extra HessianToObjectness content links >>>>>>> ENH: Wrap SpatialFunction float types with ITK_WRAP_float >>>>>>> BUG: Bump PerformanceBenchmarking to 2016-11-04 >>>>>>> BUG: itk_python_expression_add_test too many quotes. >>>>>>> ENH: Wrap VectorImage with complex real pixel types >>>>>>> ENH: Bump PerformanceBenchmarking to 2016-11-07 >>>>>>> BUG: Do not assume zero Index in ReinitializeLevelSetImageFilte >>>>>>> r >>>>>>> ENH: Create itk_module_add_library macro >>>>>>> BUG: Update computeCodeCoverageLocally.sh for KWStyle addition >>>>>>> COMP: Install a newer version of CMake on CircleCI >>>>>>> ENH: Use GitHub Pages as the first ExternalData resource >>>>>>> ENH: Add tests to demonstrate OSX dynamic_cast failure >>>>>>> BUG: Use random seed with for MersenneTwisterRandomVariateGe >>>>>>> nerator. >>>>>>> BUG: Enable program global timestamp >>>>>>> BUG: Set random number seed in Mattes metric test >>>>>>> BUG: Notify builder that ITK_DYNAMIC_LOADING is required with >>>>>>> wrapping >>>>>>> BUG: Define ITK_DYNAMIC_LOADING before ITK_WRAP_PYTHON >>>>>>> BUG: Set random number seed mutual information metric tests >>>>>>> BUG: Wrap std::vector< itk.Point > >>>>>>> BUG: Fix wrapping of LandmarkBasedTransformInitializer >>>>>>> BUG: Rename UnsharpMaskingImageFilter to UnsharpMaskImageFilter >>>>>>> DOC: Add D?enan Zuki? to .mailmap >>>>>>> >>>>>>> Max Smolens (4): >>>>>>> COMP: CID-1266557 StatisticsLabelMapFilter uninitialized scalar >>>>>>> field >>>>>>> BUG: CID-1355438 QuadEdgeTest1 resource leaks >>>>>>> COMP: CID-1355472 MIRegistrationFunction unused value >>>>>>> COMP: Fix link errors for VNL template instantiations on Windows >>>>>>> >>>>>>> Mayeul Chassagnard (7): >>>>>>> BUG: Test added and error fixed in HDF5ImageIO >>>>>>> ENH: Update add_library TO itk_module_add_library >>>>>>> COMP: Set Policy CMP0023 target_link_libraries for >>>>>>> Modules/ThirdParty/VNLI... >>>>>>> BUG: Add ITK_TEMPLATE_EXPORT to template classes >>>>>>> BUG: Fix errors linked to dyn_cast merge >>>>>>> BUG: Restore old ITKModule_TEMPLATE_EXPORT specification for >>>>>>> classes >>>>>>> BUG: dash3win7 dashboard build error unresolved external symbol >>>>>>> >>>>>>> Michka Popoff (3): >>>>>>> ENH: Update UpdatepygccxmlFromUpstream.sh for v1.8.0 >>>>>>> ENH: Update igenerator.py for pygccxml v1.8.0 >>>>>>> COMP: Use pygccxml's public API for apply definitions >>>>>>> >>>>>>> Pierre Barbier de Reuille (2): >>>>>>> COMP: Fix function naming error when using FFTWD >>>>>>> COMP: Fix function naming error when using FFTWD >>>>>>> >>>>>>> Sean McBride (1): >>>>>>> COMP: Bypass HDF5 bugs under TSan >>>>>>> >>>>>>> Simon Rit (2): >>>>>>> COMP: remove C++11 compiler warning for CUDA compilations >>>>>>> COMP: remove C++11 compiler warning for CUDA compilations >>>>>>> >>>>>>> Somesh Kashyap (2): >>>>>>> BUG: Override TransformCategoryType for >>>>>>> AzimuthElevationToCartesianTransform >>>>>>> BUG: -Added test case for itkAzimuthElevationToCartesian >>>>>>> Transform >>>>>>> >>>>>>> Sumedha Singla (1): >>>>>>> ENH: Updated the git tag for ITK-Minimal-Path-Extraction remote >>>>>>> module >>>>>>> >>>>>>> Taylor Braun-Jones (4): >>>>>>> COMP: Skip path length checks if ITK_SKIP_PATH_LENGTH_CHECKS is >>>>>>> enabled >>>>>>> COMP: Fix truncation from double to float warning >>>>>>> DOC: Fix incorrect itkFactorylessNewMacro documentation >>>>>>> COMP: Only include the headers for required OpenCV modules >>>>>>> >>>>>>> Thien Nguyen (1): >>>>>>> PERF: SmapsFileParser unnecessary dynamic_cast >>>>>>> >>>>>>> VXL Maintainers (4): >>>>>>> VNL 2016-05-15 (14f97ab4) >>>>>>> VNL 2016-06-22 (23a93adb) >>>>>>> VNL 2016-06-29 (d62a2d70) >>>>>>> VNL 2016-07-06 (acfa62cc) >>>>>>> >>>>>>> Vladimir S. FONOV (1): >>>>>>> COMP: Build against GCC 5.3.1 >>>>>>> >>>>>>> Zach Williamson (2): >>>>>>> ENH: Update Remote Module Tags >>>>>>> BUG: Fix Python Wrappings in C++11 >>>>>>> >>>>>>> Ziv Yaniv (1): >>>>>>> BUG: Metric sampling percentage accepted values outside (0.0, >>>>>>> 1.0]. >>>>>>> >>>>>>> >>>>>>> ITK Software Guide Changes >>>>>>> ---------------------------------------- >>>>>>> >>>>>>> Matt McCormick (8): >>>>>>> DOC: Move the location for obtaining the software >>>>>>> DOC: Remove reference to ITKApps >>>>>>> ENH: Bump ITK ExternalProject version to 2016-11-02 master >>>>>>> DOC: Document the ITK module registry >>>>>>> ENH: Bump ITK ExternalProject version to v4.11rc01 master >>>>>>> DOC: Update CMake hyperlinks >>>>>>> DOC: Update minimum required CMake version to 2.8.9 >>>>>>> DOC: Add section on static and shared libraries. >>>>>>> >>>>>>> >>>>>>> ITK Sphinx Examples Changes >>>>>>> ------------------------------------------- >>>>>>> >>>>>>> Matt McCormick (6): >>>>>>> BUG: Use GDCM ITK module name >>>>>>> ENH: Rename ReadDICOMSeriesAndWrite3DImage >>>>>>> BUG: Add tests for ReadDICOMSeriesAndWrite3DImage >>>>>>> ENH: Bump ITK Superbuild version to 2016-09-20 master >>>>>>> ENH: Add Python version of ReadDICOMSeriesAndWrite3DImage >>>>>>> ENH: Add Python version of CreateAnRGBImage >>>>>>> >>>>>>> Michka Popoff (5): >>>>>>> ENH: Use same Python interpreter as ITK for wrapping tests >>>>>>> BUG: Fix ResampleAnImage example (Python3) >>>>>>> ENH: Add Python example for ApplyAFilterOnlyToASpecifiedRe >>>>>>> gionOfAnImage >>>>>>> ENH: Add 7 Python examples to Core/Common >>>>>>> ENH: Add BoundingBoxOfAPointSet Python example >>>>>>> >>>>>>> >>>>>>> ----------------------------------------------------- >>>>>>> Errors or omissions? Please fix them here: >>>>>>> >>>>>>> >>>>>>> https://docs.google.com/document/d/1UQAh7_mDjps0GZYX62biTwFr >>>>>>> A54KRvf__4oeT0ymzZg/edit >>>>>>> _______________________________________________ >>>>>>> Powered by www.kitware.com >>>>>>> >>>>>>> Visit other Kitware open-source projects at >>>>>>> http://www.kitware.com/opensource/opensource.html >>>>>>> >>>>>>> Kitware offers ITK Training Courses, for more information visit: >>>>>>> http://kitware.com/products/protraining.php >>>>>>> >>>>>>> Please keep messages on-topic and check the ITK FAQ at: >>>>>>> http://www.itk.org/Wiki/ITK_FAQ >>>>>>> >>>>>>> Follow this link to subscribe/unsubscribe: >>>>>>> http://public.kitware.com/mailman/listinfo/insight-developers >>>>>>> >>>>>> >>>>>> >>>>>> _____________________________________ >>>>>> Powered by www.kitware.com >>>>>> >>>>>> Visit other Kitware open-source projects at >>>>>> http://www.kitware.com/opensource/opensource.html >>>>>> >>>>>> Kitware offers ITK Training Courses, for more information visit: >>>>>> http://www.kitware.com/products/protraining.php >>>>>> >>>>>> Please keep messages on-topic and check the ITK FAQ at: >>>>>> http://www.itk.org/Wiki/ITK_FAQ >>>>>> >>>>>> Follow this link to subscribe/unsubscribe: >>>>>> http://public.kitware.com/mailman/listinfo/insight-users >>>>>> >>>>>> >>>>> >>>> >>> >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Olivier.Commowick at inria.fr Tue Jan 31 05:02:32 2017 From: Olivier.Commowick at inria.fr (Olivier Commowick) Date: Tue, 31 Jan 2017 11:02:32 +0100 Subject: [ITK-users] [ITK] ITK_COMPILED_CXX_VERSION always set to 1997 on macOS In-Reply-To: References: Message-ID: Hello Thanks for your answer. I am running into this with Xcode 8.2.1, on a macOS 10.12, cmake version 3.6.2, and it happens already when compiling ITK itself. I did not put the flag you mentioned. I could try but it seems to me that the VXL part of ITK has the same kind of test and it works. I mean by this that there is a VXL_COMPILED_CXX_STANDARD_VERSION set up in the file Modules/ThirdParty/VNL/src/vxl/config/cmake/config/VXLIntrospectionConfig.cmake . And this one is automatically set to 201103L without needing the flags you mentioned. May be there is something in this cmake file that should be ported back to the ITK equivalent (that?s just a thought of course). Thanks Olivier > On 23 Jan 2017, at 15:25, Lowekamp, Bradley (NIH/NLM/LHC) [C] wrote: > > Hello, > > What Xcode version are you using? Can you produce a simple CMake command line configuration to reproduce the problem? > > If you set "CMAKE_CXX_FLAGS=-std=c++11?, does the same problem occur? > > Thanks! > Brad > >> On Jan 23, 2017, at 9:11 AM, Olivier Commowick wrote: >> >> Hello, >> >> While debugging something else, I realised that the ITK_COMPILED_CXX_VERSION variable in CMake is always set to 199711L on my macOS 10.12. It sounds weird to me since I am always compiling ITK by enforcing to use CMAKE_CXX_STANDARD to 11. >> >> It appears to me that Modules/Core/Common/CMakeLists.txt does this test and probably does not account for the fact that cmake uses the 2011 standard or something else. Would someone have any idea of how to correct this or if this is important or not ? >> >> Best >> Olivier >> >> --- >> >> Olivier Commowick, Ph.D. >> Research Scientist >> INRIA Rennes - Bretagne Atlantique, VISAGES Team >> Campus de Beaulieu >> 35042 Rennes >> FRANCE >> >> Phone: +33 2 99 84 25 92 >> Email: Olivier.Commowick at inria.fr >> Web: http://olivier.commowick.org/ >> >> >> >> >> >> _____________________________________ >> Powered by www.kitware.com >> >> Visit other Kitware open-source projects at >> http://www.kitware.com/opensource/opensource.html >> >> Kitware offers ITK Training Courses, for more information visit: >> http://www.kitware.com/products/protraining.php >> >> Please keep messages on-topic and check the ITK FAQ at: >> http://www.itk.org/Wiki/ITK_FAQ >> >> Follow this link to subscribe/unsubscribe: >> http://public.kitware.com/mailman/listinfo/insight-users >> _______________________________________________ >> Community mailing list >> Community at itk.org >> http://public.kitware.com/mailman/listinfo/community > --- Olivier Commowick, Ph.D. Research Scientist INRIA Rennes - Bretagne Atlantique, VISAGES Team Campus de Beaulieu 35042 Rennes FRANCE Phone: +33 2 99 84 25 92 Email: Olivier.Commowick at inria.fr Web: http://olivier.commowick.org/ From Olivier.Commowick at inria.fr Tue Jan 31 11:24:11 2017 From: Olivier.Commowick at inria.fr (Olivier Commowick) Date: Tue, 31 Jan 2017 17:24:11 +0100 Subject: [ITK-users] Problem with ITK eigensystem In-Reply-To: <242A16CD-79C1-4427-94DB-3AFCD1A33851@inria.fr> References: <2444669A-4CBE-4C72-BB82-B3538C4513B1@inria.fr> <242A16CD-79C1-4427-94DB-3AFCD1A33851@inria.fr> Message-ID: <96DC429F-7F78-49D7-A026-930012074F27@inria.fr> Hello, I think I have found a bug in the behaviour of ITK?s symmetric eigensystem. In the attached link (http://olivier.commowick.org/tmp/Test.zip ) you will find an example code and matrix that fails with it and not with VNL?s symmetric eigensystem (run on macOS 10.12, Xcode 8.2.1). It seems to me that there are subtle differences in between ITK and VNL versions, VNL being more robust (and the same as what Matlab gives, I didn?t test python). Here is what I have found so far : - the hypothenuse function (hypot for ITK and pythag for VNL) do not get always the exact same result up to a very far away decimal - some loop indices were wrong I think in the ITK eigensystem. Some do vary in the VNL version, not in ITK?s equivalent In the patch file attached, I have made a set of corrections that make things in ITK eigensystem closer to VNL but still the ITK version fails. I have to say I am getting completely lost here so I am calling upon the community for help. If anyone knows this enough, could you try the test attached and see if you have any ideas of what is going on. That would help us a lot. The test attached can be compiled with cmake and run with the text file included : ./test_eigensystem data.txt Thanks in advance Olivier --- Olivier Commowick, Ph.D. Research Scientist INRIA Rennes - Bretagne Atlantique, VISAGES Team Campus de Beaulieu 35042 Rennes FRANCE Phone: +33 2 99 84 25 92 Email: Olivier.Commowick at inria.fr Web: http://olivier.commowick.org/ -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: itk-eigen.patch Type: application/octet-stream Size: 2253 bytes Desc: not available URL: -------------- next part -------------- An HTML attachment was scrubbed... URL: