Roel van Dijk
Roel van Dijk
We just copy+pasted that module into our project: https://github.com/LumiGuide/haskell-opencv/blob/master/doc/Language/Haskell/Meta/Syntax/Translate.hs It has received some patches in the last 3 years. Feel free to use it for inspiration, or just copy+paste it...
Did you follow the instructions in the [readme](https://github.com/LumiGuide/haskell-opencv/blob/master/README.md#development-using-stacks-docker-integration) regarding docker builds? Specifically: > Build the image using: > > docker build -t stack-build:lts-10.1-opencv -f Dockerfile.stack-opencv . > > Uncomment the...
It look likes you found a bug in the JuicyPixels conversion function `OpenCV.Juicy.fromImage`! Until we can fix that bug I suggest you use `OpenCV.ImgCodecs.imdecode`. Your program with `imdecode` (untested): ```haskell...
I added some tests for Depth marshalling: 16f8fe75e5350ee892ad143c8ec9595f186ab7f2 Coverage can easily be improved if we have tests for _all_ marshalling operations.
Why is this check necessary? There is already a guard against `progressDone progress
It is not a trivial question. I think this is the exact issue mentioned in #16. It is definitely a bug in the numerals package. Can you tell me which...
The imports should be fixed in 62184c2b22a3b674df6f16ac8eac5859ba3931f7. Next I'll look into following @hvr's guide on multi-ghc-travis. Should prevent similar problems in the future.
I just uploaded version 0.4.1 which should build. Can you verify if this solves your problem?
Thank you for mentioning these issues. There was a large refactoring and evidently I missed some things, mainly everything not checked by the typechecker... Pull requests are very welcome!
I can be convinced! I have no experience with stack. I use nix for all development. But nix already uses stackage releases, so I don't expect any version problems. ZuriHac...