-
Notifications
You must be signed in to change notification settings - Fork 7
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
added new parameter and according changes so that limit bounds or oth… #161
Conversation
…er offsets can be taken into account when usign the dataset with annotations on mrxs files
Can you rebase? Also, the CI/CD should pass |
Make sure CI passes. Run it before you commit, that will also save some CI time. |
I suggest a different way to implement this. In the WsiAnnotations, you can make a parameter |
* Add CITATION.cff file with main contributors * Add script to bump version in README.md and CITATION.cff
Fix mpp_x <-> mpp_y
* Implement functional interface `rename_labels` for `RenameLabels`
* Improve exception text
…king (#185) * Fix bug + pass parameters explicitly rather than through kwargs
- Parameter was accidently removed
This fixes the case where geojson annotations are overlayed from small to large area. In that case we didn't properly sort the annotations
@moerlemans can you rebase once #201 is merged? |
The problem is that the limit bounds variable is given by the slide. Which the WsiAnnotation has no access to. So this should be an argument to read region or to the init of wsi annotations. I feel like this last option would be best, initialize it to be zero and use it in read_region. The issue has only appeared for me when using halo xml, but I think it will happen with other types as well probably |
…in the init, which dataset should pass on
…er offsets can be taken into account when usign the dataset with annotations on mrxs files
…in the init, which dataset should pass on
rebased and made the logic according to the last comment I made. |
@moerlemans Can you properly rebase because now you've modified 34 files? I think you can do something like this: Add Now in the dataset class you an instance check if it is |
I think #204 fixes this |
Indeed this is fixed in #204 |
Offsets can be taken into account when usign the dataset with annotations on mrxs files
Fixes #160