<br><br><div class="gmail_quote">On Mon, Oct 12, 2009 at 3:41 PM, Darren Weber <span dir="ltr">&lt;<a href="mailto:darren.weber.lists@gmail.com">darren.weber.lists@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div><div></div><div class="h5"><br><br><div class="gmail_quote">On Mon, Oct 12, 2009 at 3:37 PM, Darren Weber <span dir="ltr">&lt;<a href="mailto:darren.weber.lists@gmail.com" target="_blank">darren.weber.lists@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<br>Are there any classes or methods for handling file names in ITK?<br><br>Is it common to use Boost.Filesystem for handling files in an ITK project?<br><a href="http://www.boost.org/doc/libs/1_40_0/libs/filesystem/doc/index.htm" target="_blank">http://www.boost.org/doc/libs/1_40_0/libs/filesystem/doc/index.htm</a><br>


<br>The main problem before me is to extract and change a file extension, like substitute .tif to .xfm, and to output a spatial transform into the .xfm file with the same path and filename as the .tif file.  (The actual file extension may be any image file type, not specifically .tif).<br>


<br>Thanks,<br><font color="#888888">Darren<br><br>
</font></blockquote></div><br></div></div>P.S.,  If the Boost.Filesystem lib is used, how is it included in CMakeLists.txt?<br><br>
</blockquote></div><br>P.P.S.  This is informative:<br><pre>cmake --help-module FindBoost<br><br><br>eg:<br><br>FIND_PACKAGE(Boost 1.40 COMPONENTS filesystem system)<br>IF(Boost_FOUND)<br>    INCLUDE_DIRECTORIES(${Boost_INCLUDE_DIRS})<br>
    LINK_DIRECTORIES(${Boost_LIBRARY_DIRS})<br><br>    ADD_EXECUTABLE(itkImageAffineCoregistration itkImageAffineCoregistration.cxx)<br>    TARGET_LINK_LIBRARIES(itkImageAffineCoregistration ITKIO ITKNumerics ${Boost_LIBRARIES})<br>
ENDIF()<br><br></pre>