I am working on a project that integrates Imebra inside an android application. The application is supposed to extract all the data from a given DICOM file and put them into a .xml file. I need a little bit of help with it. For example, I don't know how to get all the VR tags that the given DICOM has, instead of getting them one by one using tag ids. Thank you for your help.
How to get all the data from a DICOM file with Imebra
540 Views Asked by TheEngineer At
1
There are 1 best solutions below
Related Questions in IMEBRA
- Issues with Imebra Dicom SDK
- Imebra - Change color contrasts
- how to modify image pixels in DICOM files using Imebra library?
- Got stuck with Imebra integration
- Saving DICOM images using Imebra library
- How to integrate Imebra v5 to a swift command line project
- segmentation fault when compling c++ code
- C++ reading 16bit binary data from raw img and store them in vector
- How to perform Image processing with Dicom Images in Android?
- Converting C++ code to swift (For imebra library integration)
- Unable to build imebra in Xcode 12.4?
- Load Server URL dicom files inside Imebra in iOS?
- Imebra library shows completely gray image for transfer syntax 1.2.840.10008.1.2.1
- Get absolute path from Uri in Android 10
- How can I convert RAW image to DICOM image using imebra?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Load the file using
CodecFactory.load(filename).Then you can use
DataSet.getTags()to retrieve a list of tags stored into the DICOM structure.The returned class
TagsIdsis a list containing all theTagId: scan each tag ID and retrieve it viaDataSet.getString()(to retrieve the value as string) andDataSet.getDataType()to retrieve its VR.When
DataSet.getString()fails then you are dealing with a sequence (an embedded DICOM structure) which can be retrieved withDataSet.getSequenceItem().You can use the static method
DicomDictionary.getTagName()to get a description of a particular tag.