Skip to content

Commit 508afe8

Browse files
authored
Update README.md
1 parent 6c7e5c7 commit 508afe8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,11 @@ moon = Moon(size=(100, 100))
7676

7777
## OpenCV & NumPy Integration
7878

79-
The inclusion of OpenCV and NumPy in this package is a remnant of earlier versions that supported additional image processing features. While currently not necessary for core functionality, these libraries allow for further customization, such as:
79+
The inclusion of OpenCV and NumPy in this package is a remnant of earlier versions that supported additional image processing features. While currently not necessary for core functionality, these libraries allow for customization of images, such as
8080

81-
- **Image manipulation** (e.g., adjusting brightness, contrast, or applying filters)
82-
- **Overlaying text or graphics** on the moon image
83-
- **Efficient in-memory image processing** using NumPy arrays
81+
- Adjusting brightness, contrast, applying filters
82+
- Overlaying text or graphics
83+
- Efficient in-memory image processing using NumPy arrays
8484

8585
For example, you can use OpenCV to apply a grayscale filter:
8686

@@ -93,9 +93,9 @@ gray_image = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
9393
cv2.imwrite("gray_moon.jpg", gray_image)
9494
```
9595

96-
Since these dependencies are no longer required for core functionality, they may be removed in a future version.
96+
Since these dependencies are no longer required for core functionality, they will probably be removed in a future version.
9797

98-
## Additional rmation
98+
## Additional Information
9999

100100
You can access [more details and related lunar imagery](https://svs.gsfc.nasa.gov/help/#apis-dialamoon) via `Moon.info`.
101101

0 commit comments

Comments
 (0)