<div dir="ltr">Hi Elena,<div><br></div><div>I use OpenCV and ITK together. The general procedure is to build OpenCV from source using CMake, and then build ITK from source using CMake, checking the "Module_ITKVideoBridgeOpenCV" option so that it is built. During both the builds you generally do not have to modify the CMakeLists.txt</div><div><br></div><div>For a project which uses the libraries, the CMakeLists.txt would simply look like -</div><div><br></div><div>----</div><div><div>cmake_minimum_required(VERSION 2.8)</div><div><br></div><div>project(myProject)</div><div><br></div><div>find_package(ITK REQUIRED)</div><div>find_package(OpenCV REQUIRED)</div><div><br></div><div>include(${ITK_USE_FILE})</div><div><br></div><div>add_executable(myProject test.cpp)</div><div><br></div><div>target_link_libraries(myProject ${ITK_LIBRARIES} ${OpenCV_LIBS})</div></div><div>----</div><div><br></div><div>Is there a specific problem you are facing while trying this? <br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Sep 26, 2014 at 3:23 PM, elena bresciani <span dir="ltr"><<a href="mailto:elena.bresciani87@gmail.com" target="_blank">elena.bresciani87@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hello to everybody,<div><br></div><div>for the project I'm working on I need to integrate ITK and OpenCV. </div><div>I've read the dedicated tutorial <a href="http://www.na-mic.org/Wiki/images/4/4a/ITKOpenCVBridgeTutorial.pdf" target="_blank">here</a>, but I can't find informations on how the CmakeList.txt file should be created or if I have to change some kind of building configuration of ITK and/or OpenCV.</div><div><br></div><div>Can you please explain me what I have to do? </div><div><br></div><div>Cheers</div><span class="HOEnZb"><font color="#888888"><div>Elena</div></font></span></div>
<br>_____________________________________<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at<br>
<a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Kitware offers ITK Training Courses, for more information visit:<br>
<a href="http://www.kitware.com/products/protraining.php" target="_blank">http://www.kitware.com/products/protraining.php</a><br>
<br>
Please keep messages on-topic and check the ITK FAQ at:<br>
<a href="http://www.itk.org/Wiki/ITK_FAQ" target="_blank">http://www.itk.org/Wiki/ITK_FAQ</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://public.kitware.com/mailman/listinfo/insight-users" target="_blank">http://public.kitware.com/mailman/listinfo/insight-users</a><br>
<br></blockquote></div><br><br clear="all"><div><br></div>-- <br><div dir="ltr">Regards,<br>Girish</div>
</div>