Hi Andras,
Would it be possible to select the point (x,y,z) location in a ply file, for all the ply files opening up one by one and closing once the point is selected.
The point needed to be selected by the user on the model and then the next model file opens up automatically and the user selects a point on that model and will do until points in all the ply files are selected. can this process be automated.
This could be easily done through a scripted module (Module Overview — 3D Slicer documentation). You could have a a user interface featuring (1) a directory selector to point to where your .ply files lie and (2) a “Next” button that will save the recorded data and load the next model in the dataset. In addition, you will probably want to add some other widgets to select the output file for the results, etc.
When it comes to the selection of one point, you could use callbacks to control the workflow for placing one (and only one) point. This topic might be helpful for that: How to access Node in Scene?. Alternatively, I would suggest to use the Template Markups (Markups — 3D Slicer documentation) to control the workflow and limit the point acquisition to 1.
Yes, I think that is possible. You just need to observe the right events from the markups and manage the creation/deletion of new added markups. I believe all the links above are still relevant to make this happen.