I have this bit of code:
我有这段代码:
def feat_ext_nir(x):
img = loadImage(x['image_name'])
compressed_img = compress_image(16, 16, img[:,:,3])
return compressed_image.ravel()
cloud_feat_nir = cloud_df_samp.apply(feat_ext_nir, axis=1)
cloud_feat_nir.describe()
def feat_e