cisst-saw
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
svlConfig.h
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /* ex: set filetype=cpp softtabstop=4 shiftwidth=4 tabstop=4 cindent expandtab: */
3 
4 /*
5  $Id$
6 
7  Author(s): Anton Deguet
8  Created on: 2009-01-27
9 
10  (C) Copyright 2004-2014 Johns Hopkins University (JHU), All Rights Reserved.
11 
12 --- begin cisst license - do not edit ---
13 
14 This software is provided "as is" under an open source license, with
15 no warranty. The complete license can be found in license.txt and
16 http://www.cisst.org/cisst/license.txt.
17 
18 --- end cisst license ---
19 
20 */
21 
22 #ifndef _svlConfig_h
23 #define _svlConfig_h
24 
25 #include <cisstConfig.h>
26 
27 // Using OpenCV for optimized image processing
28 #define CISST_SVL_HAS_OPENCV2 1
29 
30 // for backward compatibilities
31 #define CISST_SVL_HAS_OPENCV CISST_SVL_HAS_OPENCV2
32 
33 // Using ZLIB for optimized image processing
34 #define CISST_SVL_HAS_ZLIB 1
35 
36 // Support for Videre Design SVS
37 #define CISST_SVL_HAS_SVS 0
38 
39 // Support for DirectShow
40 #define CISST_SVL_HAS_DIRECTSHOW 0
41 
42 // Support for libDC1394
43 #define CISST_SVL_HAS_DC1394 1
44 
45 // Support for IEEE1394B switch on Darwin
46 #define CISST_SVL_DC1394_ENABLE_800Mbps 1
47 
48 // Support for FFMPEG
49 #define CISST_SVL_HAS_FFMPEG 1
50 
51 // Support for video4linux2
52 #define CISST_SVL_HAS_VIDEO4LINUX2 1
53 
54 // Support for video4linux2
55 #define CISST_SVL_HAS_MIL 0
56 
57 // Support for X11
58 #define CISST_SVL_HAS_X11 1
59 
60 // Support for Xvideo
61 #define CISST_SVL_HAS_XV 0
62 
63 // Support for JPEG
64 #define CISST_SVL_HAS_JPEG 1
65 
66 // Support for PNG
67 #define CISST_SVL_HAS_PNG 1
68 
69 // Support for CUDA
70 #define CISST_SVL_HAS_CUDA 0
71 
72 // Support for BLACKMAGIC DECKLINK
73 #define CISST_SVL_HAS_BM_DECKLINK 0
74 
75 // Whether or not to use cisstNetlib
76 #define CISST_SVL_HAS_CISSTNETLIB 1
77 
78 #endif // _svlConfig_h
79 
80