Skip to content
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

adding handleROIThresholding to utility module of tmtv extension. #4715

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions extensions/tmtv/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import getPanelModule from './getPanelModule';
import init from './init';
import commandsModule from './commandsModule';
import getToolbarModule from './getToolbarModule';
import { handleROIThresholding } from './utils/handleROIThresholding';

/**
*
Expand All @@ -26,6 +27,16 @@ const tmtvExtension = {
extensionManager,
});
},
getUtilityModule() {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We are moving away from the utility module. You can export it in this extension and have other extensions depend on it and import it there.

return [
{
name: 'common',
exports: {
handleROIThresholding,
},
},
];
},
};

export default tmtvExtension;