Re: New and Unofficial OpenCV binding for D programming language

2019-04-12 Thread Ferhat Kurtulmuş via Digitalmars-d-announce
On Wednesday, 10 April 2019 at 14:44:49 UTC, Andrea Fontana wrote: On Tuesday, 9 April 2019 at 17:22:12 UTC, Ferhat Kurtulmuş wrote: Since I could build the library on Windows 10 in addition to Ubuntu, I have decided to put it on code.dlang.org: https://code.dlang.org/packages/opencvd. It

Re: New and Unofficial OpenCV binding for D programming language

2019-04-10 Thread Andrea Fontana via Digitalmars-d-announce
On Tuesday, 9 April 2019 at 17:22:12 UTC, Ferhat Kurtulmuş wrote: Since I could build the library on Windows 10 in addition to Ubuntu, I have decided to put it on code.dlang.org: https://code.dlang.org/packages/opencvd. It sounds interesting. I think you should make those examples compilable

Re: New and Unofficial OpenCV binding for D programming language

2019-04-09 Thread Ferhat Kurtulmuş via Digitalmars-d-announce
On Thursday, 4 April 2019 at 23:08:21 UTC, Ferhat Kurtulmuş wrote: Hi folks! D is awesome, but it is a shame that there is no any opencv bindings for d yet. Actually we have it now :) Although I am a new dlang learner, I dared to do it: https://github.com/aferust/opencvd. C interface was

Re: New and Unofficial OpenCV binding for D programming language

2019-04-06 Thread Nicholas Wilson via Digitalmars-d-announce
On Friday, 5 April 2019 at 15:52:42 UTC, Paolo Invernizzi wrote: Until we have copy ctors, D can't have structures with internal pointers, as they can be moved... that's something similar in C++ string, if I remember well, and that was the blocker that leaded to the copy ctors DIP... That

Re: New and Unofficial OpenCV binding for D programming language

2019-04-05 Thread Arun Chandrasekaran via Digitalmars-d-announce
On Friday, 5 April 2019 at 15:52:42 UTC, Paolo Invernizzi wrote: On Friday, 5 April 2019 at 13:19:22 UTC, Ferhat Kurtulmuş wrote: On Friday, 5 April 2019 at 07:56:42 UTC, Paolo Invernizzi wrote: On Thursday, 4 April 2019 at 23:08:21 UTC, Ferhat Kurtulmuş wrote: [...] Nice! Version 3.x has

Re: New and Unofficial OpenCV binding for D programming language

2019-04-05 Thread Paolo Invernizzi via Digitalmars-d-announce
On Friday, 5 April 2019 at 13:19:22 UTC, Ferhat Kurtulmuş wrote: On Friday, 5 April 2019 at 07:56:42 UTC, Paolo Invernizzi wrote: On Thursday, 4 April 2019 at 23:08:21 UTC, Ferhat Kurtulmuş wrote: Hi folks! D is awesome, but it is a shame that there is no any opencv bindings for d yet.

Re: New and Unofficial OpenCV binding for D programming language

2019-04-05 Thread Ferhat Kurtulmuş via Digitalmars-d-announce
On Friday, 5 April 2019 at 07:56:42 UTC, Paolo Invernizzi wrote: On Thursday, 4 April 2019 at 23:08:21 UTC, Ferhat Kurtulmuş wrote: Hi folks! D is awesome, but it is a shame that there is no any opencv bindings for d yet. Actually we have it now :) Although I am a new dlang learner, I dared

Re: New and Unofficial OpenCV binding for D programming language

2019-04-05 Thread Russel Winder via Digitalmars-d-announce
To add to the pool of OpenCV activity, it is worth pointing out that GStreamer supports OpenCV and D has a binding to GStreamer via GStreamerD which is a part of GtkD. On Thu, 2019-04-04 at 23:08 +, Ferhat Kurtulmuş via Digitalmars-d-announce wrote: > Hi folks! > > D is awesome, but it is

Re: New and Unofficial OpenCV binding for D programming language

2019-04-05 Thread Paolo Invernizzi via Digitalmars-d-announce
On Thursday, 4 April 2019 at 23:08:21 UTC, Ferhat Kurtulmuş wrote: Hi folks! D is awesome, but it is a shame that there is no any opencv bindings for d yet. Actually we have it now :) Although I am a new dlang learner, I dared to do it: https://github.com/aferust/opencvd. C interface was

Re: New and Unofficial OpenCV binding for D programming language

2019-04-05 Thread Ferhat Kurtulmuş via Digitalmars-d-announce
On Thursday, 4 April 2019 at 23:53:08 UTC, Arun Chandrasekaran wrote: On Thursday, 4 April 2019 at 23:08:21 UTC, Ferhat Kurtulmuş wrote: Hi folks! D is awesome, but it is a shame that there is no any opencv bindings for d yet. Actually we have it now :) Although I am a new dlang learner, I

Re: New and Unofficial OpenCV binding for D programming language

2019-04-04 Thread Arun Chandrasekaran via Digitalmars-d-announce
On Thursday, 4 April 2019 at 23:08:21 UTC, Ferhat Kurtulmuş wrote: Hi folks! D is awesome, but it is a shame that there is no any opencv bindings for d yet. Actually we have it now :) Although I am a new dlang learner, I dared to do it: https://github.com/aferust/opencvd. C interface was

New and Unofficial OpenCV binding for D programming language

2019-04-04 Thread Ferhat Kurtulmuş via Digitalmars-d-announce
Hi folks! D is awesome, but it is a shame that there is no any opencv bindings for d yet. Actually we have it now :) Although I am a new dlang learner, I dared to do it: https://github.com/aferust/opencvd. C interface was taken from gocv, and the implementation has been highly influenced by