All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.charleslzq.dicom.data.DicomImageMetaInfo.kt Maven / Gradle / Ivy

There is a newer version: 1.1.0-RC2
Show newest version
package com.github.charleslzq.dicom.data

import java.net.URI
import java.time.LocalDateTime

data class DicomImageMetaInfo(
        var name: String? = null,
        var imageType: String? = null,
        var sopUID: String? = null,
        var date: String? = null,
        var time: String? = null,
        var instanceNumber: String? = null,
        var samplesPerPixel: Int? = null,
        var photometricInterpretation: String? = null,
        var rows: Int? = null,
        var columns: Int? = null,
        var pixelSpacing: String? = null,
        var bitsAllocated: Int? = null,
        var bitsStored: Int? = null,
        var highBit: Int? = null,
        var pixelRepresentation: Int? = null,
        var windowCenter: String? = null,
        var windowWidth: String? = null,
        var rescaleIntercept: Float? = null,
        var rescaleSlope: Float? = null,
        var rescaleType: String? = null,
        val files: MutableMap = emptyMap().toMutableMap(),
        val updateTime: MutableMap = emptyMap().toMutableMap()
)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy