forked from BRL-CAD/brlcad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathicv.h
54 lines (49 loc) · 1.29 KB
/
icv.h
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
/* I C V . H
* BRL-CAD
*
* Copyright (c) 2011-2023 United States Government as represented by
* the U.S. Army Research Laboratory.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* version 2.1 as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this file; see the file named COPYING for more
* information.
*/
/** @addtogroup libicv
*
* Functions provided by the LIBICV image processing library.
*
*/
/** @{ */
/** @file include/icv.h */
#ifndef ICV_H
#define ICV_H
#include "common.h"
__BEGIN_DECLS
#include "icv/defines.h"
#include "icv/colorspace.h"
#include "icv/crop.h"
#include "icv/filters.h"
#include "icv/io.h"
#include "icv/ops.h"
#include "icv/stat.h"
__END_DECLS
#endif /* ICV_H */
/** @} */
/*
* Local Variables:
* tab-width: 8
* mode: C
* indent-tabs-mode: t
* c-file-style: "stroustrup"
* End:
* ex: shiftwidth=4 tabstop=8
*/