Hi @Diego Hens I understand that you have two images: a 3D representation of a tooth and a 2D parameterized disc of the same tooth. To select a random point from the 3D image and find the corresponding point on the 2D image you may use the MATLAB function ‘ginput’ for 2D and ‘ginput3’ for 3D. This function allows you to select points from a plot using the mouse. It typically returns the x and y coordinates of the selected points. It is a more general function and can be used in various plotting contexts.
For more details, please refer to the MathWorks documentations:
- ginput3: https://www.mathworks.com/matlabcentral/fileexchange/34939-ginput-3d
- ginput: https://www.mathworks.com/help/releases/R2024a/matlab/ref/ginput.html
Hope this helps