DTact-mini

发布时间 2023-05-21 13:58:18作者: IEQEFCR

cad.png

截图

截图


IMG_2574.JPGIMG_2555.JPG

2-1.png

2-2.png


热风枪变形


bad.jpg

亚克力

IMG_2565.JPG

acr-2.png

截图

acr-1.png

        rbfi_x = Rbf(corr_array[:,0], corr_array[:,1], init_array[:,0], function = 'cubic')
        rbfi_y = Rbf(corr_array[:,0], corr_array[:,1], init_array[:,1], function = 'cubic')
    
        x_index = rbfi_x(x_mesh, y_mesh).astype(int)
        y_index = rbfi_y(x_mesh, y_mesh).astype(int)
    
        x_index = np.clip(x_index, 0, n-1)
        y_index = np.clip(y_index, 0, m-1)
        return y_index, x_index