-
Notifications
You must be signed in to change notification settings - Fork 8
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
Short docs #37
Comments
This message was generated by git-bob (version: 0.6.6, model: gpt-4o-2024-08-06, Run details), an experimental AI-based assistant. It can make mistakes and has limitations. Check its messages carefully. To address the issue of creating a short documentation for functions with the
This listing should help in documentation by providing a concise description along with a code snippet for each function. |
included into the code in ebc23d5 |
We need to write a short document about all functions in init.py which have the decorator
@register_function
. For each function we need a bullet poinnt with a short sentence and below a single line of code demonstrating how the function works.Examples:
Takes a binary image and draws cuts in the objects similar to the ImageJ watershed algorithm
nsbatwm.split_touching_objects(binary_image)
Applies Otsu's threshold selection method to an intensity image and returns a binary image.
nsbatwm.threshold_otsu(image)
Apply a median filter to an image to remove noise while preserving edges.
nsbatwm.median_filter(image)
Now, do this for all the specified functions.
git-bob comment
The text was updated successfully, but these errors were encountered: