Timothee Cour
Timothee Cour
PRs welcome; I wrote this before D allowed for markdown in doc
i thought i mentioned it already; PR accepted. 1 issue with inim is its not a true repl, as entire code is reexecuted (under the hood) after each line
PR very welcome to clarify/update this; no bias was intended at the time I wrote this; since then, there have been some updates wrt wasm, see relevant links: * https://forum.nim-lang.org/t/4309#26813...
btw, do you have the reddit link? i wasn't the one who put it up
thanks! PR's welcome to incorporate your points so they don't get lost!
added https://github.com/timotheecour/D_vs_nim/commit/208b717c49fe452672df5074eb597f71f2aac61f to address some points above (marking them as checked)
/cc @mratsim > D cannot disable (?) the GC at specific point. what do you mean? see https://dlang.org/library/core/memory/gc.disable.html
I agree with @9il , this is one of my biggest gripes with opencv: the `cv::Mat` all over their API's (instead of typesafe `cv::Mat_`) has following implications: * unclear from...
maybe it's better to discuss this with a concrete example, say detectMultiScale from http://docs.opencv.org/2.4/modules/objdetect/doc/cascade_classification.html?highlight=detectmultiscale#cascadeclassifier-detectmultiscale ``` C++: class CascadeClassifier{ void detectMultiScale(const Mat& image, vector& objects, double scaleFactor=1.1, int minNeighbors=3, int flags=0,...
swig EDIT: actually I remembered wrong, looks like custom tooling instead: http://answers.opencv.org/question/6618/how-python-api-is-generated/ however, it's possible to wrap opencv via swig; I did that at some point (for whatever functions from...