Eu tenho uma caixa Ubuntu 16.04 (servidor externo) e há um monte de arquivos python. Sempre que eu tentei FTP esses arquivos para minhas máquinas locais e abrir os arquivos python o código não está alinhado corretamente.
Eu acredito que durante a transferência o alinhamento fica corrompido.
Como posso corrigir esse problema? Estou no Mac e uso cyberduck
para transferir esses arquivos.
Se você notar que a instrução try está desalinhada depois que eu ftp o código. Isto é apenas um instantâneo. Muitas linhas não estão alinhadas corretamente:
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
Arquivo remoto:
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