ITK/Examples/Math/CovariantVector: Difference between revisions
From KitwarePublic
Jump to navigationJump to search
Daviddoria (talk | contribs) (Created page with "==CovariantVector.cxx== <source lang="cpp"> #include <itkCovariantVector.h> int main(int, char*[]) { typedef itk::CovariantVector<double, 3> VectorType; VectorType v; v[0]...") |
Daviddoria (talk | contribs) |
(No difference)
|
Revision as of 17:56, 9 November 2010
CovariantVector.cxx
<source lang="cpp">
- include <itkCovariantVector.h>
int main(int, char*[]) {
typedef itk::CovariantVector<double, 3> VectorType; VectorType v; v[0] = 1.0; v[1] = 2.0; v[2] = 3.0; std::cout << "v: " << v << std::endl; return EXIT_SUCCESS;
}
</source>
CMakeLists.txt
<source lang="cmake"> cmake_minimum_required(VERSION 2.6)
PROJECT(CovariantVector)
FIND_PACKAGE(ITK REQUIRED) INCLUDE(${ITK_USE_FILE})
ADD_EXECUTABLE(CovariantVector CovariantVector.cxx) TARGET_LINK_LIBRARIES(CovariantVector ITKCommon) </source>