Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

transformix(1) [debian man page]

TRANSFORMIX(1)							   User Commands						    TRANSFORMIX(1)

NAME
transformix - apply geometric transform to an image SYNOPSIS
transformix mandatory-args [optional-args] DESCRIPTION
transformix applies a transform on an input image and/or generates a deformation field. The transform is specified in the transform-param- eter file. OPTIONS
Call transformix from the command line with mandatory arguments: -out output directory -tp transform-parameter file, only 1 Optional extra commands: -in input image to deform -def file containing input-image points the point are transformed according to the specified transform-parameter file use "-def all" to transform all points from the input-image, which effectively generates a deformation field. -jac use "-jac all" to generate an image with the determinant of the spatial Jacobian -jacmat use "-jacmat all" to generate an image with the spatial Jacobian matrix at each voxel -priority set the process priority to high or belownormal (Windows only) -threads set the maximum number of threads of transformix At least one of the options "-in", "-def", "-jac", or "-jacmat" should be given. The transform-parameter file must contain all the information necessary for transformix to run properly. That includes which transform to use, with which parameters, etc. For a usable transform-parameter file, see the output of elastix. SEE ALSO
elastix(1) Check the website http://elastix.isi.uu.nl, or mail elastix.support@gmail.com. transformix version: 4.400 December 2010 TRANSFORMIX(1)

Check Out this Related Man Page

GLBINDTRANSFORMFEEDB(3G)					   OpenGL Manual					  GLBINDTRANSFORMFEEDB(3G)

NAME
glBindTransformFeedback - bind a transform feedback object C SPECIFICATION
void glBindTransformFeedback(GLenum target, GLuint id); PARAMETERS
target Specifies the target to which to bind the transform feedback object id. target must be GL_TRANSFORM_FEEDBACK. id Specifies the name of a transform feedback object reserved by glGenTransformFeedbacks(). DESCRIPTION
glBindTransformFeedback binds the transform feedback object with name id to the current GL state. id must be a name previously returned from a call to glGenTransformFeedbacks(). If id has not previously been bound, a new transform feedback object with name id and initialized with with the default transform state vector is created. In the initial state, a default transform feedback object is bound and treated as a transform feedback object with a name of zero. If the name zero is subsequently bound, the default transform feedback object is again bound to the GL state. While a transform feedback buffer object is bound, GL operations on the target to which it is bound affect the bound transform feedback object, and queries of the target to which a transform feedback object is bound return state from the bound object. When buffer objects are bound for transform feedback, they are attached to the currently bound transform feedback object. Buffer objects are used for trans- form feedback only if they are attached to the currently bound transform feedback object. ERRORS
GL_INVALID_ENUM is generated if target is not GL_TRANSFORM_FEEDBACK. GL_INVALID_OPERATION is generated if the transform feedback operation is active on the currently bound transform feedback object, and that operation is not paused. GL_INVALID_OPERATION is generated if id is not zero or the name of a transform feedback object returned from a previous call to glGenTransformFeedbacks(), or if such a name has been deleted by glDeleteTransformFeedbacks(). ASSOCIATED GETS
glGet() with argument GL_TRANSFORM_FEEDBACK_BINDING SEE ALSO
glGenTransformFeedbacks(), glDeleteTransformFeedbacks(), glIsTransformFeedback(), glBeginTransformFeedback(), glPauseTransformFeedback(), glResumeTransformFeedback(), glEndTransformFeedback() COPYRIGHT
Copyright (C) 2010 Khronos Group. This material may be distributed subject to the terms and conditions set forth in the Open Publication License, v 1.0, 8 June 1999. http://opencontent.org/openpub/. AUTHORS
opengl.org opengl.org 06/10/2014 GLBINDTRANSFORMFEEDB(3G)
Man Page