-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathINSTALL
70 lines (49 loc) · 3.11 KB
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
------------------------------------------------------------
Development Enviroment
------------------------------------------------------------
SSI is developed under Windows x64 using Visual Studio 2015
------------------------------------------------------------
Installation
------------------------------------------------------------
https://rawgit.com/hcmlab/ssi/master/docs/index.html#installation
------------------------------------------------------------
Getting started
------------------------------------------------------------
The pipes\ folder contains a bunch of example pipelines.
You can run them by opening a console in that folder and typing:
_RUN.bat <name of pipeline>
or by double clicking the according file (the latter requires
to run 'setup.exe' and set an association)
------------------------------------------------------------
Python
------------------------------------------------------------
Python is already embedded in SSI, to install packages with pip do the following:
1. Open a console and navigate to current bin folder (e.g. \bin\x64\vc140\)
2. Run 'python get-pip.py'
3. Change to 'Scripts' folder and install dependencies using 'pip.exe'
------------------------------------------------------------
Documentation
------------------------------------------------------------
pipes\ contains example pipelines
docs\api\ contains reference html files for available components
docs\tutorial\ contains a comprehensive tutorial (tutorial.pdf) and sample code (tutorial.sln)
docs\ui\ contains documentation for the graphical training interface
docs\xml\ contains documentation on how to build xml pipelines
------------------------------------------------------------
Troubleshooting
------------------------------------------------------------
* There seems to be an issue with Avira Antivir and VC++ debugging. If you ever encounter the error
message: "NtClose was called on a handle that was protected from close via NtSetInformationObject"
please refer to the following articel:
http://www.codeproject.com/Messages/3694402/VCplusplus-debugging-with-latest-Avira-Antivir.aspx
* Sometimes it seems that the x64 configuration causes problems on x86 machines. If you ever get the
message that "MSVCR90D.dll was not found" when running a ssi application out of visual studio delete
the x64 configuration and try again.
* When running Windows 8 & Visual Studio 2013, some test projects of plugins that use external libraries might crash by default (Debugger stops in ThreadFun). To fix this problem go to test: right click: project->properties->linker->all options and set random base address to No (/DYNAMICBASE:NO).
------------------------------------------------------------
Bugs or questions?
------------------------------------------------------------
We encourage user to use the issue tracker on Github:
https://github.com/hcmlab/ssi/issues
You can mail us on: [email protected]
------------------------------------------------------------