摘要:
import tensorflow as tf import numpy as np def distance_matrix(array1, array2): """ arguments: array1: the array, size: (num_point, num_feature) array2: the samples, size: (n... 阅读全文
摘要:
""" Simple script to convert ply to obj models """ import os from argparse import ArgumentParser from plyfile import PlyData def parse_args(): parser = ArgumentParser() parser.add_argument... 阅读全文