opentps.core package
Subpackages
- opentps.core.config package
- opentps.core.data package
- Subpackages
- Module contents
DVHPatientPatient.TypeConditionalEventPatient.appendPatientData()Patient.appendPatientDataList()Patient.dumpableCopy()Patient.dynamic2DSequencesPatient.dynamic3DModelsPatient.dynamic3DSequencesPatient.getPatientDataOfType()Patient.getTypeAsString()Patient.hasPatientData()Patient.imagesPatient.namePatient.patientDataPatient.plansPatient.removePatientData()Patient.removePatientDataList()Patient.roiMasksPatient.rtStructs
PatientDataPatientListROIContourRTStructSparseBeamletsSparseBeamlets.doseGridSizeSparseBeamlets.doseOrientationSparseBeamlets.doseOriginSparseBeamlets.doseSpacingSparseBeamlets.reloadFromFS()SparseBeamlets.setSpatialReferencingFromImage()SparseBeamlets.setUnitaryBeamlets()SparseBeamlets.shapeSparseBeamlets.storeOnFS()SparseBeamlets.toSparseMatrix()SparseBeamlets.unload()
Transform3D
- opentps.core.io package
- Submodules
- opentps.core.io.dataExporter module
- opentps.core.io.dataLoader module
- opentps.core.io.dicomAnonymizer module
- opentps.core.io.dicomIO module
- opentps.core.io.mcsquareIO module
- opentps.core.io.mhdIO module
- opentps.core.io.scannerReader module
- opentps.core.io.serializedObjectIO module
- Module contents
- opentps.core.processing package
- Subpackages
- opentps.core.processing.C_libraries package
- opentps.core.processing.deformableDataAugmentationToolBox package
- Submodules
- opentps.core.processing.deformableDataAugmentationToolBox.BreathingSignalGeneration module
- opentps.core.processing.deformableDataAugmentationToolBox.generateDynamicSequencesFromModel module
- opentps.core.processing.deformableDataAugmentationToolBox.generateRandomSamplesFromModel module
- opentps.core.processing.deformableDataAugmentationToolBox.interFractionChanges module
- opentps.core.processing.deformableDataAugmentationToolBox.modelManipFunctions module
- opentps.core.processing.deformableDataAugmentationToolBox.multiProcSpawnMethods module
- opentps.core.processing.deformableDataAugmentationToolBox.weightMaps module
- Module contents
- opentps.core.processing.doseCalculation namespace
- Subpackages
- Submodules
- opentps.core.processing.doseCalculation.abstractDoseCalculator module
- opentps.core.processing.doseCalculation.abstractDoseInfluenceCalculator module
- opentps.core.processing.doseCalculation.abstractMCDoseCalculator module
- opentps.core.processing.doseCalculation.doseCalculationConfig module
- opentps.core.processing.doseCalculation.geant4DoseCalculator module
- opentps.core.processing.doseCalculation.mcsquareDoseCalculator module
- opentps.core.processing.imageProcessing package
- Submodules
- opentps.core.processing.imageProcessing.crop2D module
- opentps.core.processing.imageProcessing.cupyImageProcessing module
- opentps.core.processing.imageProcessing.filter3D module
- opentps.core.processing.imageProcessing.image2DManip module
- opentps.core.processing.imageProcessing.imageTransform3D module
- opentps.core.processing.imageProcessing.resampler3D module
- opentps.core.processing.imageProcessing.sitkImageProcessing module
- opentps.core.processing.imageProcessing.syntheticDeformation module
- Module contents
- opentps.core.processing.imageSimulation package
- opentps.core.processing.planDeliverySimulation package
- opentps.core.processing.planEvaluation package
- opentps.core.processing.planOptimization package
- Subpackages
- Submodules
- opentps.core.processing.planOptimization.optimizationWorkflows module
- opentps.core.processing.planOptimization.planInitializer module
- opentps.core.processing.planOptimization.planOptimization module
- opentps.core.processing.planOptimization.planOptimizationConfig module
- opentps.core.processing.planOptimization.planPreprocessing module
- opentps.core.processing.planOptimization.tools module
- Module contents
- opentps.core.processing.registration package
- Submodules
- opentps.core.processing.registration.midPosition module
- opentps.core.processing.registration.registration module
- opentps.core.processing.registration.registrationDemons module
- opentps.core.processing.registration.registrationMorphons module
- opentps.core.processing.registration.registrationQuick module
- opentps.core.processing.registration.registrationRigid module
- opentps.core.processing.registration.registrationTranslation module
- Module contents
- opentps.core.processing.segmentation package
- opentps.core.processing.trackingToolBox package
- Submodules
- opentps.core.processing.rangeEnergy module
- Module contents
- Subpackages
- opentps.core.utils package
Submodules
opentps.core.version module
Module contents
- class Event(*args)
Bases:
objectA class that implements signal/slot mechanism similarly to pyQtSignal
>>> signal = Event(bool) >>> signal.connect(lambda x: print(x)) >>> signal.emit(True) True
- connect(slot)
Connects a slot
- connectIfNotAlready(slot)
- disconnect(slot)
Disconnects a slot
- emit(*args)
Triggers execution of all connected slots with specified arguments
- property slots
List of slots (read-only)