name: cv-combinators
version: 0.1.3
license: GPL-2
license-file: LICENSE
maintainer: Noam Lewis <jones.noamle@gmail.com>
bug-reports: mailto:jones.noamle@gmail.com
category: AI, Graphics
synopsis: Functional Combinators for Computer Vision
description:
Initial version; using the "HOpenCV" package as a backend.
.
Provides a functional combinator library for computer vision, based on the "allocated-processor" package.
.
Online documentation, if not built below, can be found at <http://www.ee.bgu.ac.il/~noamle/>.
.
Read the module docs for more information.
See the test program (@src/Test.hs@) for example usage.
.
build-type: Simple
cabal-version: >= 1.6
Tested-With: GHC == 6.10.4
flag Demos
description: Enable building demos
default: False
library
exposed-modules: AI.CV.ImageProcessors
hs-Source-Dirs: src
build-depends: base >=4 && <5, HOpenCV >= 0.3, allocated-processor >= 0.0.2, vector-space
ghc-options: -Wall
Ghc-Prof-Options: -Wall
executable test-cv-combinators
if flag(Demos)
Buildable: True
hs-source-dirs: src
Build-Depends: base >=4 && <5, HOpenCV >= 0.3, allocated-processor >= 0.0.2, vector-space
main-is: Test.hs
ghc-options: -Wall
Ghc-Prof-Options: -Wall
other-modules: AI.CV.ImageProcessors
-- executable test-cv-combinators2
-- if flag(NoDemos)
-- Buildable: False
-- hs-source-dirs: src
-- Build-Depends: base >=4 && <5, HOpenCV >= 0.1.2.1, allocated-processor >= 0.0.2, SDL, graphics-drawingcombinators, vector-space
-- main-is: IntegratedTest.hs
-- Ghc-Options: -Wall
-- Ghc-Prof-Options: -prof -auto-all
-- other-modules: AI.CV.ImageProcessors, Graphics.GraphicsProcessors
source-repository head
type: git
location: git://github.com/sinelaw/cv-combinators.git