[Insight-developers] Announcement: ITK 4.0 being ported to CMake

Luis Ibanez luis.ibanez at kitware.com
Thu Apr 1 15:46:34 EDT 2010


Here is the first cut:


PROJECT( ITKCMAKE )


FUNCTION( GAUSSIAN INPUTIMAGE OUTPUTIMAGE SIGMA)

  FOREACH( PIXEL_INDEX  IN  ${INPUTIMAGE})

     SET(OUTPUTPIXELVALUE
         GAUSSIAN_FUNCTION( ${PIXEL_INDEX} )

     SET_PIXEL( ${OUTPUT_IMAGE}  ${PIXEL_INDEX} ${OUTPUTPIXELVALUE} )

  ENDFOREACH()

ENDFUNCTION()


#
#  Test
#
READ_IMAGE( ${INPUTIMAGE}  ${FILENAME} )
GAUSSIAN( ${INPUTIMAGE} ${OUTPUTIMAGE}  1.5)
WRITE_IMAGE( ${OUTPUTIMAGE} ${OUTFILENAME} )


----

Dan,

Thanks for volunteering to help with the translation
of gdcm and the DICOM readers to CMake 2.9.        :-)


      Luis


----------------------------------------------------------------------------
On Thu, Apr 1, 2010 at 9:18 AM, Daniel Blezek <Blezek.Daniel at mayo.edu> wrote:
> Dear ITK developers,
>
>   Fresh on the heels of CMake’s switch to RCCS
> (http://www.cmake.org/pipermail/cmake/2010-April/036231.html), I’m happy to
> announce the upcoming roadmap for ITK 4.0.  Because the CMake configuration
> language has proved itself to be wildly capable of supporting any and all
> development platforms running on every conceivable device, the ITK
> development team has unanimously decided to port ITK to the CMake language
> for release as ITK 4.0.
>
>   The decision was greeted with wild enthusiasm by longtime ITK developers.
>  It a tweet, one developer commented “The CMake language has proved itself
> over and over as a great language for high performance medical imaging,
> about time we moved off of C++!”.
>
>   The port from C++ to CMake will occur in a one day marathon of coding,
> effective today.
>
> Cheers,
> -dan
>
> --
> Daniel Blezek, PhD
> Medical Imaging Informatics Innovation Center
>
> P 127 or (77) 8 8886
> T 507 538 8886
> E blezek.daniel at mayo.edu
>
> Mayo Clinic
> 200 First St. S.W.
> Harwick SL-44
> Rochester, MN 55905
> mayoclinic.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://kitware.com/products/protraining.html
>
> 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://www.itk.org/mailman/listinfo/insight-developers
>
>


More information about the Insight-developers mailing list