]> Creatis software - clitk.git/blob - README.md
Update README with installation instructions
[clitk.git] / README.md
1
2
3 VV, a 4D image viewer, see : [creatis](http://vv.creatis.insa-lyon.fr)
4
5 ### Status
6 [![Build Status](https://travis-ci.org/open-vv/vv.svg?branch=master)](https://travis-ci.org/open-vv/vv)
7
8 ### Download
9 You can download the binaries here:
10  - [Linux 64bits](https://www.creatis.insa-lyon.fr/rio/vv?action=AttachFile&do=get&target=vv-1.4Qt4-linux64)
11  - [Windows 32bits](https://www.creatis.insa-lyon.fr/rio/vv?action=AttachFile&do=get&target=vv-1.4Qt4-win32.zip)
12  - [Windows 64bits](https://www.creatis.insa-lyon.fr/rio/vv?action=AttachFile&do=get&target=vv-1.4Qt4-win64.zip)
13
14 ### Installation
15 To install vv with Linux (e.g.: OpenSuse 42.2), follow the instructions:
16
17 #### Qt
18 Install Qt5-devel and widget development library (Designer, Xml, Tools, Gui, Network, OpenGL, ...) with your package manager (e.g.: Yast)
19
20 #### VTK
21 mkdir vtk  
22 cd vtk  
23 mkdir src  
24 git clone https://github.com/Kitware/VTK.git src  
25 cd src  
26 git checkout tags/v7.0.0  
27 cd ..  
28 mkdir bin  
29 cd bin  
30 ccmake ../src (use t to toggle, c to configure and g to generate)  
31 Be sure to set (in toogle mode):
32   - Module_vtkGUISuppotQt to ON
33   - Module_vtkGUISuppotQtOpenGL to ON
34   - Module_vtkRenderingQt to ON
35   - Module_vtkViewQt to ON
36   - VTK_QT_VERSION to 5
37   - VTK_RENDERING_BACKEND to OpenGL
38   - All Qt5... DIR to /usr/local/Qt-5.../lib/cmake/QT5...  
39 make  
40 cd ../..  
41
42 #### ITK
43 mkdir itk  
44 cd itk  
45 mkdir src  
46 git clone https://github.com/InsightSoftwareConsortium/ITK.git src  
47 mkdir bin  
48 ccmake ../src  
49 Be sure to set (in toogle mode):
50   - Module_ITKReview to ON
51   - Module_ITKVtkGlue to ON
52   - BUILD_SHARED_LIBS to ON  
53 make  
54 cd ../..  
55
56 #### vv
57 mkdir vv  
58 cd vv  
59 mkdir src  
60 git clone https://github.com/open-vv/vv.git src  
61 mkdir bin  
62 ccmake ../src  
63 Be sure to set (the correct paths to Qt5 and ITK)  
64 make  
65 cd ../..