Convert .PLY into .OBJ

@alejandrogarcia I recently replied to a forum post which touches on this topic. The post links to a shell script which uses the command-line tool meshlabserver (included when installing Meshlab):

for file in *.ply; do
    meshlabserver -i "$file" -o "${file%.*}.obj" # -om vc
done

Let us know if this works.