- Notifications
You must be signed in to change notification settings - Fork 98
Functions to QC histopathology images #1036
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
base: main
Are you sure you want to change the base?
Conversation
for more information, see https://pre-commit.ci
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@ ## main #1036 +/- ## ========================================== - Coverage 24.05% 23.31% -0.75% ========================================== Files 43 46 +3 Lines 6380 6931 +551 Branches 1063 1152 +89 ========================================== + Hits 1535 1616 +81 - Misses 4828 5298 +470 Partials 17 17
🚀 New features to boost your workflow:
|
| from ._utils import _flatten_channels, _get_element_data | ||
| | ||
| | ||
| class DETECT_TISSUE_METHOD(enum.Enum): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just noticed this Enum. I think the Enum classes themselves are supposed to be in UpperCamelCase.
https://docs.python.org/3/howto/enum.html
Because Enums are used to represent constants, and to help avoid issues with name clashes between mixin-class methods/attributes and enum names, we strongly recommend using UPPER_CASE names for members, and will be using that style in our examples.
| from ._utils import _flatten_channels, _get_element_data | ||
| | ||
| | ||
| class DETECT_TISSUE_METHOD(enum.Enum): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| class DETECT_TISSUE_METHOD(enum.Enum): | |
| class DetectTissueMethod(enum.Enum): |
IMPORTANT: Please search among the Pull requests before creating one.
Description
How has this been tested?
Closes