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)
std::cout << event.pointer << endl;
return;
}