-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Problems - When I retrieve DICOM instances that contain ANN (label), I got the error because ANN did not have pixel - Furthermore, thumbnail have same issues too (may get no pixel instance in median) # Solutions - Exclude sop class UID that do not contain pixel in query
- Loading branch information
1 parent
dd407c9
commit 9f1948a
Showing
10 changed files
with
162 additions
and
80 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 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 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 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 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 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 |
---|---|---|
@@ -1,77 +1,112 @@ | ||
/** | ||
* ### 非影像類SOP Class | ||
1.2.840.10008.5.1.4.1.1.104.1 Encapsulated PDF Storage | ||
1.2.840.10008.5.1.4.1.1.11.1 Grayscale Softcopy Presentation State Storage SOP Class | ||
1.2.840.10008.5.1.4.1.1.11.2 Color Softcopy Presentation State Storage SOP Class | ||
1.2.840.10008.5.1.4.1.1.11.3 Pseudocolor Softcopy Presentation Stage Storage SOP Class | ||
1.2.840.10008.5.1.4.1.1.11.4 Blending Softcopy Presentation State Storage SOP Class | ||
1.2.840.10008.5.1.4.1.1.481.2 Radiation Therapy Dose Storage | ||
1.2.840.10008.5.1.4.1.1.481.3 Radiation Therapy Structure Set Storage | ||
1.2.840.10008.5.1.4.1.1.481.4 Radiation Therapy Beams Treatment Record Storage | ||
1.2.840.10008.5.1.4.1.1.481.5 Radiation Therapy Plan Storage | ||
1.2.840.10008.5.1.4.1.1.481.6 Radiation Therapy Brachy Treatment Record Storage | ||
1.2.840.10008.5.1.4.1.1.481.7 Radiation Therapy Treatment Summary Record Storage | ||
1.2.840.10008.5.1.4.1.1.481.8 Radiation Therapy Ion Plan Storage | ||
1.2.840.10008.5.1.4.1.1.481.9 Radiation Therapy Ion Beams Treatment Record Storage | ||
1.2.840.10008.5.1.4.1.1.66 Raw Data Storage | ||
1.2.840.10008.5.1.4.1.1.66.1 Spatial Registration Storage | ||
1.2.840.10008.5.1.4.1.1.66.2 Spatial Fiducials Storage | ||
1.2.840.10008.5.1.4.1.1.66.3 Deformable Spatial Registration Storage | ||
1.2.840.10008.5.1.4.1.1.66.4 Segmentation Storage | ||
1.2.840.10008.5.1.4.1.1.67 Real World Value Mapping Storage | ||
1.2.840.10008.5.1.4.1.1.88.11 Basic Text SR | ||
1.2.840.10008.5.1.4.1.1.88.22 Enhanced SR | ||
1.2.840.10008.5.1.4.1.1.88.33 Comprehensive SR | ||
1.2.840.10008.5.1.4.1.1.88.40 Procedure Log Storage | ||
1.2.840.10008.5.1.4.1.1.88.50 Mammography CAD SR | ||
1.2.840.10008.5.1.4.1.1.88.59 Key Object Selection Document | ||
1.2.840.10008.5.1.4.1.1.88.65 Chest CAD SR | ||
1.2.840.10008.5.1.4.1.1.88.67 X-Ray Radiation Dose SR | ||
1.2.840.10008.5.1.4.1.1.9.1.1 12-lead ECG Waveform Storage | ||
1.2.840.10008.5.1.4.1.1.9.1.2 General ECG Waveform Storage | ||
1.2.840.10008.5.1.4.1.1.9.1.3 Ambulatory ECG Waveform Storage | ||
1.2.840.10008.5.1.4.1.1.9.2.1 Hemodynamic Waveform Storage | ||
1.2.840.10008.5.1.4.1.1.9.3.1 Cardiac Electrophysiology Waveform Storage | ||
1.2.840.10008.5.1.4.1.1.9.4.1 Basic Voice Audio Waveform Storage | ||
* The list of sop class name that one's name not contains "image storage" | ||
*/ | ||
module.exports = [ | ||
"1.2.840.10008.5.1.4.1.1.104.1", | ||
module.exports=[ | ||
"1.2.840.10008.5.1.4.1.1.4.2", | ||
"1.2.840.10008.5.1.4.1.1.6.2", | ||
"1.2.840.10008.5.1.4.1.1.9.1.1", | ||
"1.2.840.10008.5.1.4.1.1.9.1.2", | ||
"1.2.840.10008.5.1.4.1.1.9.1.3", | ||
"1.2.840.10008.5.1.4.1.1.9.2.1", | ||
"1.2.840.10008.5.1.4.1.1.9.3.1", | ||
"1.2.840.10008.5.1.4.1.1.9.4.1", | ||
"1.2.840.10008.5.1.4.1.1.9.4.2", | ||
"1.2.840.10008.5.1.4.1.1.9.5.1", | ||
"1.2.840.10008.5.1.4.1.1.9.6.1", | ||
"1.2.840.10008.5.1.4.1.1.9.6.2", | ||
"1.2.840.10008.5.1.4.1.1.9.7.1", | ||
"1.2.840.10008.5.1.4.1.1.9.7.2", | ||
"1.2.840.10008.5.1.4.1.1.9.7.3", | ||
"1.2.840.10008.5.1.4.1.1.9.7.4", | ||
"1.2.840.10008.5.1.4.1.1.9.8.1", | ||
"1.2.840.10008.5.1.4.1.1.11.1", | ||
"1.2.840.10008.5.1.4.1.1.11.2", | ||
"1.2.840.10008.5.1.4.1.1.11.3", | ||
"1.2.840.10008.5.1.4.1.1.11.4", | ||
"1.2.840.10008.5.1.4.1.1.481.2", | ||
"1.2.840.10008.5.1.4.1.1.481.3", | ||
"1.2.840.10008.5.1.4.1.1.481.4", | ||
"1.2.840.10008.5.1.4.1.1.481.5", | ||
"1.2.840.10008.5.1.4.1.1.481.6", | ||
"1.2.840.10008.5.1.4.1.1.481.7", | ||
"1.2.840.10008.5.1.4.1.1.481.8", | ||
"1.2.840.10008.5.1.4.1.1.481.9", | ||
"1.2.840.10008.5.1.4.1.1.11.5", | ||
"1.2.840.10008.5.1.4.1.1.11.6", | ||
"1.2.840.10008.5.1.4.1.1.11.7", | ||
"1.2.840.10008.5.1.4.1.1.11.8", | ||
"1.2.840.10008.5.1.4.1.1.11.9", | ||
"1.2.840.10008.5.1.4.1.1.11.10", | ||
"1.2.840.10008.5.1.4.1.1.11.11", | ||
"1.2.840.10008.5.1.4.1.1.11.12", | ||
"1.2.840.10008.5.1.4.1.1.30", | ||
"1.2.840.10008.5.1.4.1.1.66", | ||
"1.2.840.10008.5.1.4.1.1.66.1", | ||
"1.2.840.10008.5.1.4.1.1.66.2", | ||
"1.2.840.10008.5.1.4.1.1.66.3", | ||
"1.2.840.10008.5.1.4.1.1.66.4", | ||
"1.2.840.10008.5.1.4.1.1.66.5", | ||
"1.2.840.10008.5.1.4.1.1.66.6", | ||
"1.2.840.10008.5.1.4.1.1.67", | ||
"1.2.840.10008.5.1.4.1.1.68.1", | ||
"1.2.840.10008.5.1.4.1.1.68.2", | ||
"1.2.840.10008.5.1.4.1.1.77.1.5.3", | ||
"1.2.840.10008.5.1.4.1.1.77.1.5.8", | ||
"1.2.840.10008.5.1.4.1.1.78.1", | ||
"1.2.840.10008.5.1.4.1.1.78.2", | ||
"1.2.840.10008.5.1.4.1.1.78.3", | ||
"1.2.840.10008.5.1.4.1.1.78.4", | ||
"1.2.840.10008.5.1.4.1.1.78.5", | ||
"1.2.840.10008.5.1.4.1.1.78.6", | ||
"1.2.840.10008.5.1.4.1.1.78.7", | ||
"1.2.840.10008.5.1.4.1.1.78.8", | ||
"1.2.840.10008.5.1.4.1.1.79.1", | ||
"1.2.840.10008.5.1.4.1.1.80.1", | ||
"1.2.840.10008.5.1.4.1.1.81.1", | ||
"1.2.840.10008.5.1.4.1.1.82.1", | ||
"1.2.840.10008.5.1.4.1.1.88.11", | ||
"1.2.840.10008.5.1.4.1.1.88.22", | ||
"1.2.840.10008.5.1.4.1.1.88.33", | ||
"1.2.840.10008.5.1.4.1.1.88.34", | ||
"1.2.840.10008.5.1.4.1.1.88.35", | ||
"1.2.840.10008.5.1.4.1.1.88.40", | ||
"1.2.840.10008.5.1.4.1.1.88.50", | ||
"1.2.840.10008.5.1.4.1.1.88.59", | ||
"1.2.840.10008.5.1.4.1.1.88.65", | ||
"1.2.840.10008.5.1.4.1.1.88.67", | ||
"1.2.840.10008.5.1.4.1.1.9.1.1", | ||
"1.2.840.10008.5.1.4.1.1.9.1.2", | ||
"1.2.840.10008.5.1.4.1.1.9.1.3", | ||
"1.2.840.10008.5.1.4.1.1.9.2.1", | ||
"1.2.840.10008.5.1.4.1.1.9.3.1", | ||
"1.2.840.10008.5.1.4.1.1.9.4.1", | ||
"1.2.840.10008.5.1.4.1.1.91.1" | ||
"1.2.840.10008.5.1.4.1.1.88.68", | ||
"1.2.840.10008.5.1.4.1.1.88.69", | ||
"1.2.840.10008.5.1.4.1.1.88.70", | ||
"1.2.840.10008.5.1.4.1.1.88.71", | ||
"1.2.840.10008.5.1.4.1.1.88.72", | ||
"1.2.840.10008.5.1.4.1.1.88.73", | ||
"1.2.840.10008.5.1.4.1.1.88.74", | ||
"1.2.840.10008.5.1.4.1.1.88.75", | ||
"1.2.840.10008.5.1.4.1.1.88.76", | ||
"1.2.840.10008.5.1.4.1.1.90.1", | ||
"1.2.840.10008.5.1.4.1.1.91.1", | ||
"1.2.840.10008.5.1.4.1.1.104.1", | ||
"1.2.840.10008.5.1.4.1.1.104.2", | ||
"1.2.840.10008.5.1.4.1.1.104.3", | ||
"1.2.840.10008.5.1.4.1.1.104.4", | ||
"1.2.840.10008.5.1.4.1.1.104.5", | ||
"1.2.840.10008.5.1.4.1.1.131", | ||
"1.2.840.10008.5.1.4.1.1.200.2", | ||
"1.2.840.10008.5.1.4.1.1.200.8", | ||
"1.2.840.10008.5.1.4.1.1.481.2", | ||
"1.2.840.10008.5.1.4.1.1.481.3", | ||
"1.2.840.10008.5.1.4.1.1.481.4", | ||
"1.2.840.10008.5.1.4.1.1.481.5", | ||
"1.2.840.10008.5.1.4.1.1.481.6", | ||
"1.2.840.10008.5.1.4.1.1.481.7", | ||
"1.2.840.10008.5.1.4.1.1.481.8", | ||
"1.2.840.10008.5.1.4.1.1.481.9", | ||
"1.2.840.10008.5.1.4.1.1.481.10", | ||
"1.2.840.10008.5.1.4.1.1.481.11", | ||
"1.2.840.10008.5.1.4.1.1.481.12", | ||
"1.2.840.10008.5.1.4.1.1.481.13", | ||
"1.2.840.10008.5.1.4.1.1.481.14", | ||
"1.2.840.10008.5.1.4.1.1.481.15", | ||
"1.2.840.10008.5.1.4.1.1.481.16", | ||
"1.2.840.10008.5.1.4.1.1.481.17", | ||
"1.2.840.10008.5.1.4.1.1.481.18", | ||
"1.2.840.10008.5.1.4.1.1.481.19", | ||
"1.2.840.10008.5.1.4.1.1.481.20", | ||
"1.2.840.10008.5.1.4.1.1.481.21", | ||
"1.2.840.10008.5.1.4.1.1.481.22", | ||
"1.2.840.10008.5.1.4.1.1.481.25", | ||
"1.2.840.10008.5.1.4.34.7", | ||
"1.2.840.10008.5.1.4.34.10" | ||
]; |