Picking 3D points in Viz
Hey,
is it possible to pick points in Viz?
I already have callback method for getting the position where i clicked:
void mcallback(const cv::viz::MouseEvent& event, void* v)
{
if(event.button == event.LeftButton)
cout << event.pointer << endl;
return;
}