packages feed

cv-combinators-0.1.1: cv-combinators.cabal

name: cv-combinators
version: 0.1.1
license: BSD3
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, naturally expressed as Arrow instances (but also Category, Functor and Applicative). 
   .
   Read the module docs for more information.
   See the test program (@src/Test.hs@) for example usage.
   .

build-type: Simple
cabal-version:  >= 1.2
Tested-With:   GHC == 6.10.4

library
   exposed-modules: AI.CV.Processor,
                    AI.CV.ImageProcessors
   hs-Source-Dirs: src
   build-depends: base >= 3 && < 5, HOpenCV
   ghc-options: -Wall

executable test-cv-combinators
  hs-source-dirs:  src
  Build-Depends: base >= 4
  main-is: Test.hs
  Ghc-Options: -Wall 
  Ghc-Prof-Options:  -prof -auto-all 
  other-modules: AI.CV.Processor, AI.CV.ImageProcessors


-- source-repository head
--  type: git
--  location: git://github.com/sinelaw/cv-combinators.git