diff --git a/README.md b/README.md
index 9e34162..a5dac35 100644
--- a/README.md
+++ b/README.md
@@ -48,7 +48,7 @@ PaddleRS具有以下五大特色:
* 如果您发现任何PaddleRS存在的问题或是对PaddleRS有建议, 欢迎通过[GitHub Issues](https://github.com/PaddlePaddle/PaddleRS/issues)向我们提出。
* 欢迎加入PaddleRS微信群:
-
+
## 产品矩阵
@@ -126,7 +126,6 @@ PaddleRS具有以下五大特色:
数据预处理
- - AppendIndex(遥感指数计算)
- CenterCrop
- Dehaze(影像去雾)
- MatchRadiance(辐射校正)
@@ -142,6 +141,7 @@ PaddleRS具有以下五大特色:
数据增强
+ - AppendIndex(遥感指数计算)
- MixupImage
- RandomBlur
- RandomCrop
diff --git a/docs/images/whole_picture.png b/docs/images/whole_picture.png
index 0d10a23..e679a8c 100644
Binary files a/docs/images/whole_picture.png and b/docs/images/whole_picture.png differ
diff --git a/tools/extract_ms_patches.py b/tools/extract_ms_patches.py
index ffdf861..738ce3a 100644
--- a/tools/extract_ms_patches.py
+++ b/tools/extract_ms_patches.py
@@ -194,7 +194,7 @@ class QuadTree(object):
for node in nodes:
i, j, h, w = node.coords
vis = cv2.rectangle(vis, (j, i), (j + w, i + h), (255, 0, 0), 2)
- cv2.imwrite(save_path, vis[...,::-1])
+ cv2.imwrite(save_path, vis[..., ::-1])
return save_path
def print_tree(self, node=None, level=0):
|