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

com.github.charleslzq.dicom.reader.DicomInputParser.kt Maven / Gradle / Ivy

package com.github.charleslzq.dicom.reader

import org.dcm4che3.io.DicomInputHandler
import org.dcm4che3.io.DicomInputStream
import java.util.function.Supplier

interface DicomInputParser : DicomInputHandler, Supplier {

    fun parse(input: DicomInputStream): T {
        input.setDicomInputHandler(this)
        input.readDataset(-1, -1)
        return get()
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy