소스 검색

[Fix] Removes the channel of monochrome image

Yizhou Chen 3 년 전
부모
커밋
83b3e1a843
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      tools/utils/raster.py

+ 1 - 0
tools/utils/raster.py

@@ -158,6 +158,7 @@ class Raster:
             # the type is complex means this is a SAR data
             if isinstance(type(ima[0, 0]), complex):
                 ima = abs(ima)
+            ima = ima.squeeze()
         else:
             ima = ima.transpose((1, 2, 0))
         if self.to_uint8 is True: