-
Notifications
You must be signed in to change notification settings - Fork 13
/
CV.cabal
189 lines (182 loc) · 8.38 KB
/
CV.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
Name: CV
Version: 0.4.0.0
Description: OpenCV Bindings
License: BSD3
License-file: LICENSE
Category: AI, Graphics, Machine Vision
Synopsis: OpenCV based machine vision library
Homepage: http://aleator.github.com/CV/
Description: This is a machine vision package that wraps some functionality
of OpenCV library. This package has been developed for personal use and
is not meant to be a complete wrapper. It also includes some things not
in OpenCV.
.
Currently this package is quite dirty and requires much work on documentation
and code clean-up, but is somewhat tested.
.
(The scarce) Documentation is available at
<http://aleator.github.com/CV/>
.
Changelog.
0.3.6.0 - Critical referential transparency bug fix.
.
0.3.5.4 - Bug fixes and preliminary compatability with opencv 2.4
.
0.3.5 - Many new wrappers, clean ups and other fixes.
.
0.3.4 - Pixelwise operations, bug fixes and additional documentation
.
0.3.3.0 - Improvements, including compatablity with opencv 2.3.1 and removal of
dependency with deprecated JYU.Utils
.
Changelog.
0.3.2.0 - Improvements, including fancier pixel-wise manipulations
.
Changelog.
0.3.0.2 - Workaround for compiling with OS X 10.6 & fixed errors about M_PI
.
Author: Ville Tirronen
Maintainer: [email protected]
Build-Type: Simple
Cabal-Version: >=1.8
Extra-Source-Files:
examples/*.hs
examples/shapes/*.png
examples/shapePhoto.jpg
examples/chess.png
examples/fuse1.png
examples/fuse2.png
examples/smallLena.jpg
examples/elaine.jpg
Flag gpu
Description: Include OpenCV GPU modules
Default: False
Library
Build-Tools: c2hs >= 0.16.3
Include-dirs: cbits/
Includes: opencv/cv.h,
opencv/cxcore.h,
opencv/highgui.h,
cbits/cvWrapLEO.h,
cbits/cvWrapCore.h,
cbits/cvWrapCalib.h,
cbits/wrapImgProc.h,
cbits/cvIterators.h,
cbits/cvProjection.h,
cbits/cvFiles.h
c-sources: cbits/cvWrapLEO.c,
cbits/cvWrapCore.c,
cbits/cvWrapCalib.c,
cbits/wrapImgProc.c,
cbits/cvIterators.c,
cbits/cvProjection.c,
cbits/cvFiles.c
install-includes: cbits/cvWrapLEO.h,
cbits/cvWrapCore.h,
cbits/wrapImgProc.h,
cbits/cvIterators.h,
cbits/cvProjection.h,
cbits/cvFiles.h
cpp-options: -U__BLOCKS__
cc-options: -std=gnu99 -U__BLOCKS__
if flag(gpu)
extra-libraries: opencv_gpu
extra-libraries: opencv_calib3d,
opencv_contrib,
opencv_core,
opencv_features2d,
opencv_flann,
opencv_highgui,
opencv_imgproc,
opencv_legacy,
opencv_ml,
opencv_objdetect,
opencv_video
Build-Depends: base >= 4 && < 6,
parallel > 3.1,
array >= 0.2.0.0,
directory >= 1 && < 2,
mtl >= 1.1.0,
lens >= 3.7.0,
carray >= 0.1.5,
QuickCheck >= 2.1,
containers >= 0.2,
storable-complex,
binary >= 0.5,
deepseq >= 1.1,
bindings-DSL >= 1.0.14 && < 1.1,
vector >= 0.10.0.0 && < 1.1,
lazysmallcheck >= 0.5 && < 1,
parallel-io >= 0.3.2 && < 0.3.4,
storable-tuple >= 0.0.2 && <= 1,
mwc-random >= 0.12.0.0,
primitive >= 0.4.1,
filepath >= 1.3.0.0 && < 1.4.1.0
Exposed-modules: CV.Image
,CV.Arbitrary
,CV.Binary
,CV.Bindings.Types
,CV.Calibration
,CV.ColourUtils
,CV.ConnectedComponents
,CV.Conversions
,CV.DFT
,CV.Corners
,CV.DrawableInstances
,CV.Drawing
,CV.Edges
,CV.Features
,CV.Filters
,CV.Fitting
,CV.FunnyStatistics
,CV.Gabor
,CV.HighGUI
,CV.Histogram
,CV.HoughTransform
,CV.ImageMath CV.Sampling
,CV.ImageMathOp
,CV.ImageOp
,CV.Iterators
,CV.LightBalance
,CV.Marking
,CV.Matrix
,CV.Morphology
,CV.MultiresolutionSpline
,CV.Operations
,CV.Pixelwise
,CV.TemplateMatching
,CV.Textures
,CV.Thresholding
,CV.Tracking
,CV.Transforms
,CV.Video
,CV.Projection
,CV.Files
,Utils.DrawingClass
,Utils.Function
,Utils.GeometryClass
,Utils.List
,Utils.Point
,Utils.Pointer
,Utils.Rectangle
,Utils.Stream
,Utils.ConvexHull
Other-modules: CV.Bindings.Matrix,
CV.Bindings.Calibrate,
CV.Bindings.Fittings,
CV.Bindings.Core,
CV.Bindings.ImgProc,
CV.Bindings.Tracking,
CV.Bindings.Drawing,
CV.Bindings.Error,
CV.Bindings.Features,
CV.Bindings.Iterators,
CV.Bindings.Projection,
CV.Bindings.Files
Extensions: CPP
source-repository head
type: git
location: http://github.com/aleator/CV
source-repository head
type: git
location: http://yousource.it.jyu.fi/cv