Committees
QIBA Committee Organization Chart July 2018
-
- Airway Measurement TF
-
-
- PDF-MRI (Perfusion, Diffusion and Flow) Biomarker Committee (dissolved as of June 6, 2018)
- DWI-MR BC [page coming soon]
- DCE-MRI BC [page coming soon]
- DTI+ BC [page coming soon]
- DSC BC [page coming soon]
- ASL (Arterial Spin Labeling) BC [page coming soon]
- fMRI Biomarker Committee
- MR Elastography Biomarker Committee
- PDFF (Proton Density Fat Fraction) Biomarker Committee
- MSK (Musculoskeletal) Biomarker Committee
-
-
- Profile Compliance TF
- FDG-PET UPICT TF
-
-
-
- System Dependencies/Phantom Testing TF
- Clinical Applications TF
- System Dependencies/Phantom Testing/Clinical Validation
-
-
- Committee on Open Image Archives - sunsetted
See Also
- Committee Template - Template for new Committee Wiki Pages
- Committee Organization - Committee Membership and Responsibilities
MR Committees
var dropDown = new OO.ui.DropdownWidget( {
label: 'Dropdown menu: Select one option',
// The menu is composed within the DropdownWidget
menu: {
items: [
new OO.ui.MenuOptionWidget( {
data: 'a',
label: 'First'
} ),
new OO.ui.MenuOptionWidget( {
data: 'b',
label: 'Second (disabled option)',
disabled: true
} ),
new OO.ui.MenuOptionWidget( {
data: 'c',
label: 'Third'
} ),
new OO.ui.MenuOptionWidget( {
data: 'd',
label: 'The fourth option has a long label'
} ),
new OO.ui.MenuOptionWidget( {
data: 'e',
label: 'Fifth'
} )
]
}
} );
// Append the menu to the DOM. $('body').append( dropDown.$element );
// Trigger an event when an item in the menu is selected var itemSelected = function(){ console.log('item selected'); };
dropDown.getMenu().on('select', itemSelected);