Training
Modul
Work with medical imaging data and DICOM - Training
Learn about medical imaging data and DICOM® (Digital Imaging and Communications in Medicine) in Microsoft Cloud for Healthcare.
Dëse Browser gëtt net méi ënnerstëtzt.
Upgrat op Microsoft Edge fir vun de Virdeeler vun leschten Eegeschaften, Sécherheetsupdaten, an techneschem Support ze profitéieren.
Bulk import is a quick way to add data to the DICOM® service. Importing DICOM files with the bulk import capability enables:
Backup and migration. For example, your organization might have many DICOM instances stored in local or on-premises systems, which you want to back up or migrate to the cloud for better security, scalability, and availability. Rather than uploading the data one by one, use bulk import to transfer the data faster and more efficiently.
Machine learning development. For example, your organization might have a large dataset of DICOM instances that you want to use for training machine learning models. With bulk import, you can upload the data to the DICOM service and then access it from Microsoft Fabric, Azure Machine Learning, or other tools.
Before you perform a bulk import, you need to enable a system-assigned managed identity.
In the Azure portal, go to the DICOM instance and then select Identity from the left pane.
On the Identity page, select the System assigned tab.
In the Status field, select On.
Choose Save.
You need to enable bulk import before you import data.
In the Azure portal, go to the DICOM service and then select Bulk Import from the left pane.
On the Bulk Import page, in the Bulk Import field, select Enabled. Select Save.
When you use an Azure Resource Manager template (ARM template), enable bulk import with the property named bulkImportConfiguration
.
Following is an example of how to configure bulk import in an ARM template.
{
"type": "Microsoft.HealthcareApis/workspaces/dicomservices",
"apiVersion": "2023-02-01-preview",
"name": "[parameters('dicomservicename')]",
"location": "[parameters('regionname')]",
"identity": {
"type": "SystemAssigned"
},
"properties": {
"bulkImportConfiguration": {
"enabled": true
}
}
}
After you enable bulk import, a resource group is provisioned in your Azure subscription. The name of the resource group begins with the prefix AHDS_
, followed by the workspace and DICOM service name. For example, for the DICOM service named mydicom
in the workspace contoso
, the resource group is named AHDS_contoso-mydicom
.
Within the new resource group, two resources are created:
import-container
and error-container
) and two queues (import-queue
and error-queue
).dicom-bulk-import
.DICOM images are added to the DICOM service by copying them into the import-container
. Bulk import monitors this container for new images and adds them to the DICOM service. If there are errors that prevent a file from being added successfully, the errors are copied to the error-container
and an error message is written to the error-queue
.
The user or account that adds DICOM images to the import container needs write access to the container by using the Data Owner
role. For more information, see Assign Azure roles using the Azure portal.
Data is uploaded to Azure Storage containers in many ways.
Notiz
DICOM® is the registered trademark of the National Electrical Manufacturers Association for its Standards publications relating to digital communications of medical information.
Training
Modul
Work with medical imaging data and DICOM - Training
Learn about medical imaging data and DICOM® (Digital Imaging and Communications in Medicine) in Microsoft Cloud for Healthcare.