Add CalculateInstanceSegmentationMap Transform#5173
Merged
Nic-Ma merged 102 commits intoProject-MONAI:devfrom Nov 1, 2022
Merged
Add CalculateInstanceSegmentationMap Transform#5173Nic-Ma merged 102 commits intoProject-MONAI:devfrom
CalculateInstanceSegmentationMap Transform#5173Nic-Ma merged 102 commits intoProject-MONAI:devfrom
Conversation
Signed-off-by: KumoLiu <[email protected]>
Signed-off-by: KumoLiu <[email protected]>
Signed-off-by: KumoLiu <[email protected]>
Signed-off-by: KumoLiu <[email protected]>
8 tasks
Signed-off-by: KumoLiu <[email protected]>
Signed-off-by: KumoLiu <[email protected]>
Signed-off-by: KumoLiu <[email protected]>
Nic-Ma
reviewed
Sep 21, 2022
Nic-Ma
reviewed
Sep 21, 2022
Nic-Ma
reviewed
Sep 21, 2022
Nic-Ma
reviewed
Sep 21, 2022
Signed-off-by: KumoLiu <[email protected]>
Member
|
@KumoLiu Could you please review items in the PR descriptions, check everything that you have already done, and remove any one that is not relevant (e.g. Breaking change...)? |
Signed-off-by: KumoLiu <[email protected]>
to `GenerateInstanceBorder` Signed-off-by: KumoLiu <[email protected]>
2 tasks
bhashemian
approved these changes
Oct 31, 2022
Member
bhashemian
left a comment
There was a problem hiding this comment.
@KumoLiu has tested it with the actual pipeline and it is working as expected.
Contributor
Author
|
The mean dice on three-fold cross-validation for Lizard dataset is 0.8256. |
Contributor
|
/black |
Contributor
|
/build |
Contributor
|
/build |
1 similar comment
Contributor
|
/build |
KumoLiu
added a commit
that referenced
this pull request
Nov 2, 2022
Fixes #5310 . ### Description Add a post transform to process NP branch output(an output branch in HoVerNet) which turns the probability map from the network into the instance segmentation result. ### Types of changes <!--- Put an `x` in all the boxes that apply, and remove the not applicable items --> - [x] Non-breaking change (fix or new feature that would not break existing functionality). - [x] New tests added to cover the changes. - [x] Integration tests passed locally by running `./runtests.sh -f -u --net --coverage`. - [x] Quick tests passed locally by running `./runtests.sh --quick --unittests --disttests`. - [x] In-line docstrings updated. - [x] Documentation updated, tested `make html` command in the `docs/` folder. Signed-off-by: KumoLiu <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Behrooz Hashemian <[email protected]> Co-authored-by: Nic Ma <[email protected]> Signed-off-by: KumoLiu <[email protected]>
yiheng-wang-nv
pushed a commit
to yiheng-wang-nv/MONAI
that referenced
this pull request
Nov 2, 2022
Fixes Project-MONAI#5310 . ### Description Add a post transform to process NP branch output(an output branch in HoVerNet) which turns the probability map from the network into the instance segmentation result. ### Types of changes <!--- Put an `x` in all the boxes that apply, and remove the not applicable items --> - [x] Non-breaking change (fix or new feature that would not break existing functionality). - [x] New tests added to cover the changes. - [x] Integration tests passed locally by running `./runtests.sh -f -u --net --coverage`. - [x] Quick tests passed locally by running `./runtests.sh --quick --unittests --disttests`. - [x] In-line docstrings updated. - [x] Documentation updated, tested `make html` command in the `docs/` folder. Signed-off-by: KumoLiu <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Behrooz Hashemian <[email protected]> Co-authored-by: Nic Ma <[email protected]> Signed-off-by: Yiheng Wang <[email protected]>
yiheng-wang-nv
pushed a commit
to yiheng-wang-nv/MONAI
that referenced
this pull request
Nov 2, 2022
Fixes Project-MONAI#5310 . ### Description Add a post transform to process NP branch output(an output branch in HoVerNet) which turns the probability map from the network into the instance segmentation result. ### Types of changes <!--- Put an `x` in all the boxes that apply, and remove the not applicable items --> - [x] Non-breaking change (fix or new feature that would not break existing functionality). - [x] New tests added to cover the changes. - [x] Integration tests passed locally by running `./runtests.sh -f -u --net --coverage`. - [x] Quick tests passed locally by running `./runtests.sh --quick --unittests --disttests`. - [x] In-line docstrings updated. - [x] Documentation updated, tested `make html` command in the `docs/` folder. Signed-off-by: KumoLiu <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Behrooz Hashemian <[email protected]> Co-authored-by: Nic Ma <[email protected]> Signed-off-by: Yiheng Wang <[email protected]>
7 tasks
bhashemian
added a commit
that referenced
this pull request
Nov 16, 2022
Signed-off-by: KumoLiu <[email protected]> Fixes #5180. ### Description For the post-process in HoVerNet, now we have PR #5173 to process the segmentation output(which has been merged) and PR #5186 to process the classification output(which is under review now). We want a whole transform containing these two components which can be easily used in the MONAI model zoo bundle. Here has a draft version of how to combine these components, if anyone has any suggestions, please feel free to take it out. ### Types of changes <!--- Put an `x` in all the boxes that apply, and remove the not applicable items --> - [x] Non-breaking change (fix or new feature that would not break existing functionality). - [ ] Breaking change (fix or new feature that would cause existing functionality to change). - [ ] New tests added to cover the changes. - [ ] Integration tests passed locally by running `./runtests.sh -f -u --net --coverage`. - [ ] Quick tests passed locally by running `./runtests.sh --quick --unittests --disttests`. - [x] In-line docstrings updated. - [ ] Documentation updated, tested `make html` command in the `docs/` folder. Signed-off-by: KumoLiu <[email protected]> Signed-off-by: yunliu <[email protected]> Co-authored-by: Behrooz Hashemian <[email protected]>
bhashemian
added a commit
to bhashemian/MONAI
that referenced
this pull request
Nov 23, 2022
Signed-off-by: KumoLiu <[email protected]> Fixes Project-MONAI#5180. ### Description For the post-process in HoVerNet, now we have PR Project-MONAI#5173 to process the segmentation output(which has been merged) and PR Project-MONAI#5186 to process the classification output(which is under review now). We want a whole transform containing these two components which can be easily used in the MONAI model zoo bundle. Here has a draft version of how to combine these components, if anyone has any suggestions, please feel free to take it out. ### Types of changes <!--- Put an `x` in all the boxes that apply, and remove the not applicable items --> - [x] Non-breaking change (fix or new feature that would not break existing functionality). - [ ] Breaking change (fix or new feature that would cause existing functionality to change). - [ ] New tests added to cover the changes. - [ ] Integration tests passed locally by running `./runtests.sh -f -u --net --coverage`. - [ ] Quick tests passed locally by running `./runtests.sh --quick --unittests --disttests`. - [x] In-line docstrings updated. - [ ] Documentation updated, tested `make html` command in the `docs/` folder. Signed-off-by: KumoLiu <[email protected]> Signed-off-by: yunliu <[email protected]> Co-authored-by: Behrooz Hashemian <[email protected]> Signed-off-by: Behrooz <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #5310 .
Description
Add a post transform to process NP branch output(an output branch in HoVerNet) which turns the probability map from the network into the instance segmentation result.
Types of changes
./runtests.sh -f -u --net --coverage../runtests.sh --quick --unittests --disttests.make htmlcommand in thedocs/folder.