Skip to content
forked from RWTHmediTEC/Carna

Real-time 3D visualization of biomedical data and beyond

License

BSD-3-Clause, Unknown licenses found

Licenses found

BSD-3-Clause
LICENSE
Unknown
LICENSE-glew
Notifications You must be signed in to change notification settings

kostrykin/Carna

 
 

Repository files navigation

Carna

Carna provides classes for simple and fast visualization of CT data. It is named after the greek god of organs (yup, they really did have even one for organs). It is based on OpenGL 3.3 and Eigen 3.

Go to: Library Documentation


Contents


1. Dependencies

  • Eigen ≥ 3.0.5
  • OpenGL 3.3
  • GLEW ≥ 1.7

Compilation process has been tested with following tool chains:

  • GCC 7.5: is known to be fully supported.

2. Build instructions

On Linux you can run the linux_build.sh script.


3. Including in your project

Add a find_package directive to your project's CMakeLists.txt file, e.g.:

find_package( Carna REQUIRED )
include_directories( ${CARNA_INCLUDE_DIR} )

If you need to put a constraint on the version, use find_package(Carna 3.1.0 REQUIRED) to pick a package with a version compatible to 3.1.0, or use find_package(Carna 3.1.0 EXACT REQUIRED) to pick a package by the exact version.

You also need to add the headers (usually only the headers) from Eigen:

find_package( Eigen3 REQUIRED )
include_directories( ${EIGEN3_INCLUDE_DIR} )

Finally add Carna to the linking stage:

target_link_libraries( ${TARGET_NAME} ${SOME_OTHER_LIBRARIES} ${CARNA_LIBRARIES} )

4. See also

  • The additional CarnaQt module provides auxiliary classes for using Carna ≥3.0.0 with Qt ≥4.8.
  • The CarnaDICOM module provides classes for loading DICOM datasets with Carna ≥3.0.1.
  • CarnaPy provides Python bindings.

About

Real-time 3D visualization of biomedical data and beyond

Topics

Resources

License

BSD-3-Clause, Unknown licenses found

Licenses found

BSD-3-Clause
LICENSE
Unknown
LICENSE-glew

Stars

Watchers

Forks

Languages

  • C 73.7%
  • C++ 24.7%
  • CMake 1.1%
  • GLSL 0.5%
  • Shell 0.0%
  • HTML 0.0%