通过 FTP 传输后文件对齐不正确

通过 FTP 传输后文件对齐不正确

我有一个 Ubuntu 16.04 机器(外部服务器),里面有一堆 python 文件。每当我尝试将这些文件通过 FTP 传输到本地机器并打开 python 文件时,代码都无法正确对齐。

我相信在转移过程中对齐会被破坏。

我该如何解决这个问题?我用的是 Mac 并且用它cyberduck来传输这些文件。

如果您在我将代码通过 ftp 传输后发现 try 语句未对齐。这只是一个快照。许多行未正确对齐:

    for pano in test_images:
    import time
    #time.sleep(30)
    print "Reading ",pano
    t_start = dt.datetime.now()
        try:
            orig_img = cv2.imread(pano)[:,:,:3]
            '''
            round_y = orig_img.shape[0]%J["h_stride"]
            r_y = J["h_stride"]-round_y if round_y > J["h_stride"]/2 else -round_y
            round_x = orig_img.shape[1]%J["w_stride"]
            r_x = J["w_stride"]-round_x if round_x > J["w_stride"]/2 else -round_x
            orig_img = imresize(orig_img, ( orig_img.shape[0]+round_y, orig_img.shape[0]+round_x) )
            '''
        except:
            continue

远程文件:

for pano in test_images:
            import time
            #time.sleep(30)
            print "Reading ",pano
            t_start = dt.datetime.now()
            try:
                orig_img = cv2.imread(pano)[:,:,:3]
                '''
                round_y = orig_img.shape[0]%J["h_stride"]
                r_y = J["h_stride"]-round_y if round_y > J["h_stride"]/2 else -round_y
                round_x = orig_img.shape[1]%J["w_stride"]
                r_x = J["w_stride"]-round_x if round_x > J["w_stride"]/2 else -round_x
                orig_img = imresize(orig_img, ( orig_img.shape[0]+round_y, orig_img.shape[0]+round_x) )
                '''
            except:
                continue

相关内容