-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Add find_edges method in Image #531
Conversation
…e the find_edges method from the old Image class with pillow fix: Fixed images with one channel for both repr and both to_file methods test: Added grayscale images that only contain one channel each
🦙 MegaLinter status: ✅ SUCCESS
See detailed report in MegaLinter reports |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #531 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 49 49
Lines 2687 2706 +19
=========================================
+ Hits 2687 2706 +19 ☔ View full report in Codecov by Sentry. |
…t 3 or 4 channel prior" This reverts commit e0dc5ed.
… channel prior tests: Added test cases to TestToJpegFile::test_should_save_file & changed test to not compare content of the images
…-find_edges-method-in-image
…cale image docs: Reenabled Image.adjust_color_balance & Image.find_edges in the Image tutorial
…om/Safe-DS/Stdlib into 523-add-find_edges-method-in-image
## [0.18.0](v0.17.1...v0.18.0) (2024-02-03) ### Features * Add adjust_color_balance method in Image ([#530](#530)) ([dba23f9](dba23f9)), closes [#525](#525) * Add find_edges method in Image ([#531](#531)) ([d728eb6](d728eb6)), closes [#523](#523) * class for time series ([#508](#508)) ([73cdfb1](73cdfb1)), closes [#481](#481)
🎉 This PR is included in version 0.18.0 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
Closes #523
Summary of Changes
Added find_edges method for the new image class. Works just like the find_edges method from the old Image class with pillow.
Fixed images with one channel for both repr and both to_file methods.
Added grayscale images that only contain one channel each.
Re-enabled Image.adjust_color_balance & Image.find_edges in the Image tutorial.
Added warning for adjust_color_balance if it is used on a grayscale image.