"Initializes the Gabor wavelet of the given wavelet frequency to be used as a filter for the given image resolution. The optional parameters can be changed, but have useful default values."
"This function Gabor-filters the given input_image, which can be of any type, to the output image. The output image needs to have the same resolution as the input image and must be of complex type."
"This function Gabor-filters the given input_image, which can be of any type. The output image is of complex type. It will be automatically generated and returned."
"This class can be used to perform a Gabor wavelet transform from one image to an image of (normalized) Gabor jets or to a complex-valued multi-layer trafo image.",
"Initializes the Gabor wavelet transform by generating Gabor wavelets in number_of_scales different frequencies and number_of_angles different directions. The remaining parameters are parameters of the Gabor wavelets to be generated. "
"Loads the parameterization of this Gabor wavelet transform from HDF5 file."
)
.add_property(
"number_of_kernels",
&bob::ip::GaborWaveletTransform::numberOfKernels,
"The number of Gabor wavelets (i.e. number of directions times number of scales, i.e. the length of a Gabor jet, i.e. the number of layers of the trafo image) used in this Gabor wavelet transform."
)
.add_property(
"number_of_scales",
&bob::ip::GaborWaveletTransform::numberOfScales,
"The number of scales that this Gabor wavelet family holds."
"This function creates an empty trafo image for the given input image. Use this function to generate the trafo image in the correct size and with the correct data type. In case you have to transform multiple images of the same size, this trafo image can be reused."
"This function creates an empty jet image (with or without Gabor phases) for the given input image. Use this function to generate the jet image in the correct size and with the correct data type. In case you have to transform multiple images of the same size, this jet image can be reused."
"Performs a Gabor wavelet transform and fills given image of Gabor jets. If the normalized parameter is set to True (the default), the absolute parts of the Gabor jets are normalized to unit Euclidean length."
"Performs a Gabor wavelet transform and returns the image of Gabor jets, with or without Gabor phases. If the normalized parameter is set to True (the default), the absolute parts of the Gabor jets are normalized to unit Euclidean length."
);
boost::python::def(
"normalize_gabor_jet",
&normalize_gabor_jet,
(boost::python::arg("gabor_jet")),
"Normalizes the Gabor jet (with or without phase) to unit Euclidean length."
PYTHON_ERROR(RuntimeError,"parameter `output_graph' should be 2 or 3 dimensional, but you passed a "SIZE_T_FMT" dimensional array.",output_graph.type().nd);
PYTHON_ERROR(RuntimeError,"parameter `input_jet_image' should be 3 or 4 dimensional, but you passed a "SIZE_T_FMT" dimensional array.",input_jet_image.type().nd);
PYTHON_ERROR(RuntimeError,"parameter `model_graph' should be 2 or 3 dimensional (because `probe_graph' is 2D), but you passed a "SIZE_T_FMT" dimensional array.",model_graph.type().nd);
PYTHON_ERROR(RuntimeError,"parameter `model_graph' should be 3 or 4 dimensional (because `probe_graph' is 3D), but you passed a "SIZE_T_FMT" dimensional array.",model_graph.type().nd);
}
}
default:// unknown graph shape
PYTHON_ERROR(RuntimeError,"parameter `probe_graph' should be 2 or 3 dimensional, but you passed a "SIZE_T_FMT" dimensional array.",probe_graph.type().nd);
"Generates a Gabor jet similarity measure of the given type. The parameters of the given transform are used for disparity-like similarity functions only."
"Computes the disparity vector between the two Gabor jets. Assure that the correct GaborWaveletTransform class have been specified in the constructor."
"Generates a Grid graph extractor with nodes put according to the given eye positions, and the given number of nodes between, along, above, and below the eyes."