Source code for xmipp3.protocols.protocol_apply_transformation_matrix

# **************************************************************************
# *
# * Authors:     Mohsen Kazemi (mkazemi@cnb.csic.es)
# *
# * Unidad de  Bioinformatica of Centro Nacional de Biotecnologia , CSIC
# *
# * This program is free software; you can redistribute it and/or modify
# * it under the terms of the GNU General Public License as published by
# * the Free Software Foundation; either version 2 of the License, or
# * (at your option) any later version.
# *
# * This program is distributed in the hope that it will be useful,
# * but WITHOUT ANY WARRANTY; without even the implied warranty of
# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# * GNU General Public License for more details.
# *
# * You should have received a copy of the GNU General Public License
# * along with this program; if not, write to the Free Software
# * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
# * 02111-1307  USA
# *
# *  All comments concerning this program package may be sent to the
# *  e-mail address 'scipion@cnb.csic.es'
# *
# **************************************************************************

import numpy as np

from pyworkflow import VERSION_1_1
import pyworkflow.protocol.params as params

from pwem.protocols import ProtProcessParticles


from xmipp3.convert import writeSetOfParticles

        
[docs]class XmippProtApplyTransformationMatrix(ProtProcessParticles): """ Apply transformation matrix of an aligned volume on a set of particles to modify their angular assignment. Note: These particles are practically related to the aligned volume (but before alignment). """ _label = 'apply transformation matrix' _lastUpdateVersion = VERSION_1_1 #--------------------------- DEFINE param functions ------------------------------------ def _defineParams(self, form): form.addSection(label='Input') form.addParam('inputParticles', params.PointerParam, pointerClass='SetOfParticles', pointerCondition='hasAlignmentProj', label="Input particles", help="Aligned particles that their " "angular assignment needs to be modified.") form.addParam('inputVolume', params.PointerParam, pointerClass='Volume', pointerCondition='hasTransform', label='Input volume', help="Volume that we want to use its transformation matrix " "to modify angular assignment of input particles. " "(This is normally the output volume of protocol_" "align_volume)") form.addParallelSection(threads=1, mpi=2) #--------------------------- INSERT steps functions ------------------------------------ def _insertAllSteps(self): fnOutputParts = self._getExtraPath('output_particles.xmd') inputSet = self.inputParticles.get() inputVol = self.inputVolume.get() self._insertFunctionStep('createOutputStep', fnOutputParts, inputSet, inputVol) #--------------------------- STEPS functions --------------------------------------------
[docs] def createOutputStep(self, fnOutputParts, inputSet, inputVol): volTransformMatrix = np.matrix(inputVol.getTransform().getMatrix()) outputSet = self._createSetOfParticles() for part in inputSet.iterItems(): partTransformMat = part.getTransform().getMatrix() partTransformMatrix = np.matrix(partTransformMat) newTransformMatrix = volTransformMatrix * partTransformMatrix part.getTransform().setMatrix(newTransformMatrix) outputSet.append(part) outputSet.copyInfo(inputSet) self._defineOutputs(outputParticles=outputSet) writeSetOfParticles(outputSet, fnOutputParts)
#--------------------------- INFO functions -------------------------------------------- def _summary(self): summary = [] if not hasattr(self, 'outputParticles'): summary.append("Output particles not ready yet.") else: summary.append("Applied alignment to %s particles." % self.inputParticles.get().getSize()) return summary def _methods(self): if not hasattr(self, 'outputParticles'): return ["Output particles not ready yet."] else: return ["We applied alignment to %s particles from %s and produced %s." %(self.inputParticles.get().getSize(), self.getObjectTag('inputParticles'), self.getObjectTag('outputParticles'))]