Ask Your Question

robbyetor's profile - activity

2014-11-02 14:11:02 -0600 answered a question How to draw 3D objects in camerabridgeviewbase for Augmented Reality (Android + Opencv + Opengl)

From what I understand you can' t draw with openGL on an opencv Mat. You may draw in opengl and somehow put the openCV image as a background (and i don' t really know enough openGL to suggest how to do it) but the other way around seems not so plausible : a 3d canvas such openGL may embed a 2d canvas such as the openCv Mat datastructure but not the other way around.

2014-11-02 14:01:55 -0600 asked a question openCV python tooling to wrap code outside opencv project

There are various ways to wrap c++ code to access it in Python. Still openCV uses its own parser and wrapper generator and it seems to work great with the codebase. The process is described on this question and on this tutorial . So the question now is : how can i make it work to wrap other opencv based projects? So how to use the header parser and the wrap generator (gen2.py as I understand) to wrap some other code? Is there anyone doing something similar?