This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-09-21
Channels
- # announcements (12)
- # architecture (26)
- # beginners (165)
- # biff (19)
- # calva (25)
- # circleci (2)
- # clj-kondo (25)
- # clojure (70)
- # clojure-dev (17)
- # clojure-europe (37)
- # clojure-nl (1)
- # clojure-norway (22)
- # clojure-spec (10)
- # clojure-sweden (1)
- # clojure-uk (24)
- # clojurescript (10)
- # clr (9)
- # cursive (17)
- # data-science (2)
- # datahike (1)
- # deps-new (1)
- # dev-tooling (3)
- # emacs (3)
- # events (7)
- # helix (10)
- # honeysql (1)
- # hugsql (3)
- # humbleui (3)
- # hyperfiddle (30)
- # introduce-yourself (3)
- # jobs (1)
- # malli (4)
- # music (1)
- # off-topic (3)
- # pathom (3)
- # polylith (6)
- # portal (7)
- # re-frame (16)
- # reitit (3)
- # releases (3)
- # remote-jobs (1)
- # shadow-cljs (23)
- # xtdb (14)
Hi, I am trying to interface with OpenCvSharp. Specifically I want to construct a Mat class. This class has overloaded constructors, some with the same number of arguments.
And I can't get the code in a form that it selects the right one.
I.e. it seems to select the first option, and then complain about types.
to be clear: We have `Mat(Size, MatType)` and `Mat(String, ImreadModes)`
and it selects the second one
With code like:
(let [^Size x (Size. 4 5)
^MatType y MatType/CV_64F]
(Mat. x y)))
I get "expected String, got Size"
I've tried to put the type meta's everywhere, but simply cannot get it to work.
Any hints?