CV
CV copied to clipboard
Haskell wrappers and utilities for OpenCV machine vision library
Hi, Could the current HEAD of CV, which is at version 0.4.0.0, be uploaded to hackage please?
suppose we have a piece of code like below, ``` haskell test = do setCatch image do let err = show (e :: CvException) print "catched" return ()) print "safe...
There is an ambiguity of `deep` in `CV.Image` because Control.Lens exports `deep`. It can be resolved with: ``` - getSize (Mutable i) = evaluate (deep (getSize i)) + getSize (Mutable...
Those getting `CV_CAP_PROP_WHITE_BALANCE_BLUE...` error during compilation should refer to [this](https://github.com/Itseez/opencv/pull/3433) merge into opencv (for those usingOpenCV2.4.11-1). Apparently those macros have been renamed.
Building the current master branch does not work when using `-fopencv24` for the current master build. However it does get past the issue from #10 if setting the default OpenCV...
Hi there. I run ghc 7.6.3 and cv-0.3.7. Some of the examples fail to compile, e.g. `channels.hs, Chessboard.hs, Histograms.hs, Hough.hs, surf.hs`. Probably some more, i haven't tested them all. Some...
This library looks nice, and I tried to install CV-0.3.7 from cabal, but CV/Transforms.chs caused a compile error. I specified --extra-include-dirs=/usr/local/include, there was no problem with include files. My environment...
Using the OpenCV Python API I was able to get the floodfilled area as the return value of floodfill (http://docs.opencv.org/modules/imgproc/doc/miscellaneous_transformations.html#floodfill) This is not the case with the Haskell CV bindings....
I've been using this library on and off for the last year and a half or so, and sadly never contributed anything back. I'm hoping to change that now. For...
Some ImageMath functions have type issues that are revealed by haddock documents. Like, findMinMaxMask uses BareImage. It is also dubious which images can (or should) be called with D8 images....