Hi All,
We are trying to draw a LINE on the image using opengl APIs. Below is the code snipet we have tried but it seems the APIs(glVertex3f,glBegin,glColor3f) are not present in the vision_sdk. Kindly suggest some APIs so that we can proceed further.
Further we would like to draw a box(for a ROI).
The vision_sdk version is " Version 02.12.02 ".
CODE:-
glLineWidth(2.5);
glColor3f(1.0, 0.0, 0.0);
glBegin(GL_LINES);
glVertex3f(0.0, 0.0, 0.0);
glVertex3f(15, 0, 0);
glEnd();
Awaiting for your response.
Regards,
Ansuman