-
Notifications
You must be signed in to change notification settings - Fork 0
/
hs-cvsu.cabal
99 lines (97 loc) · 2.5 KB
/
hs-cvsu.cabal
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
Name: hs-cvsu
Version: 0.1.0
Synopsis: Haskell bindings for the cvsu library.
Description: This library contains bindings to the c code in cvsu
library, based on bindings-dsl, haskell types wrapped
around them, and many functions for utilizing the scene
understanding features of cvsu.
Homepage: http://github.org/amnipar/hs-cvsu
License: BSD3
License-file: LICENSE
Author: Matti Johannes Eskelinen
Maintainer: [email protected]
Stability: Experimental
Category: AI, Graphics, Machine Vision
Build-type: Simple
Extra-source-files: README
Cabal-version: >=1.8
Library
Exposed-modules:
CVSU.Types
CVSU.C.Types
CVSU.List
CVSU.PixelImage
CVSU.ConnectedComponents
CVSU.Integral
CVSU.Edges
CVSU.QuadForest
CVSU.TemporalForest
CVSU.Moments
Other-Modules:
CVSU.Bindings.Types
CVSU.Bindings.List
CVSU.Bindings.PixelImage
CVSU.Bindings.ConnectedComponents
CVSU.Bindings.Integral
CVSU.Bindings.Edges
CVSU.Bindings.QuadForest
CVSU.Bindings.TemporalForest
Extensions:
ForeignFunctionInterface
Build-Depends:
base >= 3 && < 5,
bindings-DSL >= 1.0.7 && < 1.1,
parallel >= 3.2.0.0,
deepseq >= 1.1.0.2
Include-dirs:
c
cc-options:
--std=c99
Extra-libraries:
m
Includes:
c/cvsu_config.h,
c/cvsu_macros.h,
c/cvsu_memory.h,
c/cvsu_output.h,
c/cvsu_types.h,
c/cvsu_list.h,
c/cvsu_pixel_image.h,
c/cvsu_connected_components.h,
c/cvsu_filter.h,
c/cvsu_integral.h,
c/cvsu_edges.h,
c/cvsu_quad_forest.h,
c/cvsu_background_forest.h,
c/cvsu_temporal_forest.h
Install-includes:
c/cvsu_config.h,
c/cvsu_macros.h,
c/cvsu_memory.h,
c/cvsu_output.h,
c/cvsu_types.h,
c/cvsu_list.h,
c/cvsu_pixel_image.h,
c/cvsu_connected_components.h,
c/cvsu_filter.h,
c/cvsu_integral.h,
c/cvsu_edges.h,
c/cvsu_quad_forest.h,
c/cvsu_background_forest.h,
c/cvsu_temporal_forest.h
C-sources:
c/cvsu_memory.c,
c/cvsu_output.c,
c/cvsu_types.c,
c/cvsu_list.c,
c/cvsu_pixel_image.c,
c/cvsu_connected_components.c,
c/cvsu_filter.c,
c/cvsu_integral.c,
c/cvsu_edges.c,
c/cvsu_quad_forest.c,
c/cvsu_background_forest.c,
c/cvsu_temporal_forest.c
source-repository head
type: git
location: [email protected]:amnipar/hs-cvsu.git