codice:#include <sstream> while (i < 4) { ... if ( ptrGrabResult etc...) std::ostringstream oss; oss << "points" << i << ".pcd"; SavePointCloud(etc) rename("points.pcd", oss.str().c_str()); } etc ... }
codice:#include <sstream> while (i < 4) { ... if ( ptrGrabResult etc...) std::ostringstream oss; oss << "points" << i << ".pcd"; SavePointCloud(etc) rename("points.pcd", oss.str().c_str()); } etc ... }
This code and information is provided "as is" without warranty of any kind, either expressed
or implied, including but not limited to the implied warranties of merchantability and/or
fitness for a particular purpose.