-
Notifications
You must be signed in to change notification settings - Fork 85
500 Fix deepedit orientation issue [skip mgpu] #501
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
Merged
yiheng-wang-nv
merged 9 commits into
Project-MONAI:dev
from
yiheng-wang-nv:500-update-deepedit-bundle
Sep 8, 2023
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
5c8fb69
update deepedit
yiheng-wang-nv 3bf169e
fix flake8 issue
yiheng-wang-nv 358362a
remove use click info
yiheng-wang-nv 221251f
update unittest
yiheng-wang-nv 02bdd83
bypass pipenv lock
yiheng-wang-nv 79c1885
test to use pip replace pipenv for premerge cpu test
yiheng-wang-nv 0658e14
fully remove pipenv
yiheng-wang-nv 0a5ffbf
add download changes
yiheng-wang-nv 55c6fe7
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
from typing import Dict | ||
|
||
import numpy as np | ||
from einops import rearrange | ||
from monai.transforms.transform import Transform | ||
|
||
|
||
class OrientationGuidanceMultipleLabelDeepEditd(Transform): | ||
def __init__(self, ref_image="image", label_names=None): | ||
""" | ||
Convert the guidance to the RAS orientation | ||
""" | ||
self.ref_image = ref_image | ||
self.label_names = label_names | ||
|
||
def transform_points(self, point, affine): | ||
"""transform point to the coordinates of the transformed image | ||
point: numpy array [bs, N, 3] | ||
""" | ||
bs, n = point.shape[:2] | ||
yiheng-wang-nv marked this conversation as resolved.
Show resolved
Hide resolved
|
||
point = np.concatenate((point, np.ones((bs, n, 1))), axis=-1) | ||
point = rearrange(point, "b n d -> d (b n)") | ||
point = affine @ point | ||
point = rearrange(point, "d (b n)-> b n d", b=bs)[:, :, :3] | ||
return point | ||
|
||
def __call__(self, data): | ||
d: Dict = dict(data) | ||
for key_label in self.label_names.keys(): | ||
points = d.get(key_label, []) | ||
if len(points) < 1: | ||
continue | ||
reoriented_points = self.transform_points( | ||
np.array(points)[None], | ||
np.linalg.inv(d[self.ref_image].meta["affine"].numpy()) @ d[self.ref_image].meta["original_affine"], | ||
) | ||
d[key_label] = reoriented_points[0] | ||
return d |
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.
Uh oh!
There was an error while loading. Please reload this page.