- Welcome
- Getting Started With the NVIDIA DriveWorks SDK
- Modules
- Samples
- Tools
- Tutorials
- SDK Porting Guide
- DriveWorks API
- More
Defines the Rectifier module.
Typedefs | |
typedef struct dwRectifierObject * | dwRectifierHandle_t |
A pointer to the handle representing a rectifier. More... | |
Functions | |
DW_API_PUBLIC dwStatus | dwRectifier_appendAllocationAttributes (dwImageProperties *const imgProps, dwRectifierHandle_t obj) |
Append the allocation attribute such that the images created of type DW_IMAGE_NVMEDIA can be fed to dwRectifier_warpNvMedia() More... | |
DW_API_PUBLIC dwStatus | dwRectifier_getCUDAStream (cudaStream_t *stream, dwRectifierHandle_t obj) |
Gets the CUDA stream used. More... | |
DW_API_PUBLIC dwStatus | dwRectifier_getDistortionMap (dwImageCUDA *distortionMap, dwRectifierHandle_t obj) |
Gets the distortion map as a 2-channel single plane image. More... | |
DW_API_PUBLIC dwStatus | dwRectifier_getHomography (dwMatrix3f *homography, dwRectifierHandle_t obj) |
Gets the homography matrix used. More... | |
DW_API_PUBLIC dwStatus | dwRectifier_initialize (dwRectifierHandle_t *obj, dwCameraModelHandle_t cameraIn, dwCameraModelHandle_t cameraOut, dwContextHandle_t ctx) |
Initializes a rectifier based on an input and output camera model and a homography. More... | |
DW_API_PUBLIC dwStatus | dwRectifier_release (dwRectifierHandle_t obj) |
Releases the rectifier module. More... | |
DW_API_PUBLIC dwStatus | dwRectifier_reset (dwRectifierHandle_t obj) |
Resets the rectifier module. More... | |
DW_API_PUBLIC dwStatus | dwRectifier_setCUDAStream (cudaStream_t stream, dwRectifierHandle_t obj) |
Sets the CUDA stream used. More... | |
DW_API_PUBLIC dwStatus | dwRectifier_setHomography (const dwMatrix3f *homography, dwRectifierHandle_t obj) |
Sets the homography matrix used. More... | |
DW_API_PUBLIC dwStatus | dwRectifier_setHomographyFromRotation (float32_t roll, float32_t pitch, float32_t yaw, dwRectifierHandle_t obj) |
Calculates and sets the homography matrix used based on a value for roll, pitch and yaw. More... | |
DW_API_PUBLIC dwStatus | dwRectifier_warp (dwImageCUDA *outputImage, const dwImageCUDA *inputImage, bool setOutsidePixelsToBlack, dwRectifierHandle_t obj) |
Warps the image from the input camera model to the model of the output camera using CUDA on the GPU. More... | |
DW_API_PUBLIC dwStatus | dwRectifier_warpNvMedia (dwImageNvMedia *outputImage, const dwImageNvMedia *inputImage, dwRectifierHandle_t obj) |
Warps the image from the input camera model to the model of the output camera using the Tegra VIC engine. More... | |
DW_API_PUBLIC dwStatus | dwRectifier_warpPointsCPU (dwVector2f *outputPoints, const dwVector2f *inputPoints, uint32_t pointCount, dwRectifierHandle_t obj) |
Warps an array of CPU dwVector2f on a preallocated output CPU buffer. More... | |
DW_API_PUBLIC dwStatus | dwRectifier_warpPointsGPU (dwVector2f *outputPoints, const dwVector2f *inputPoints, uint32_t pointCount, dwRectifierHandle_t obj) |
Warps an array of dwVector2f on GPU. More... | |
DW_API_PUBLIC dwStatus | dwRectifier_warpPointsInPlaceCPU (dwVector2f *points, uint32_t pointCount, dwRectifierHandle_t obj) |
Warps an array of CPU dwVector2f and writes on the same buffer. More... | |
DW_API_PUBLIC dwStatus | dwRectifier_warpPointsInPlaceGPU (dwVector2f *points, uint32_t pointCount, dwRectifierHandle_t obj) |
Warps an array of dwVector2f on the GPU and writes on the same buffer. More... | |
DW_API_PUBLIC dwStatus | dwRectifier_warpROI (dwImageCUDA *outputImage, const dwImageCUDA *inputImage, bool setOutsidePixelsToBlack, const dwRect roi, dwRectifierHandle_t obj) |
Warps the image from the input camera model to the model of the output camera limiting the computation to a ROI. More... | |
typedef struct dwRectifierObject* dwRectifierHandle_t |
A pointer to the handle representing a rectifier.
This object allows you to rectify an image acquired in one camera model by projecting it into another camera model.
Definition at line 62 of file Rectifier.h.
DW_API_PUBLIC dwStatus dwRectifier_appendAllocationAttributes | ( | dwImageProperties *const | imgProps, |
dwRectifierHandle_t | obj | ||
) |
Append the allocation attribute such that the images created of type DW_IMAGE_NVMEDIA can be fed to dwRectifier_warpNvMedia()
[in,out] | imgProps | Image properties |
[in] | obj | dwRectifier handle |
DW_API_PUBLIC dwStatus dwRectifier_getCUDAStream | ( | cudaStream_t * | stream, |
dwRectifierHandle_t | obj | ||
) |
Gets the CUDA stream used.
[in] | stream | Uses this CUDA stream. |
[in] | obj | A pointer to the rectifier handle that is updated. Initialization must not have changed. |
DW_API_PUBLIC dwStatus dwRectifier_getDistortionMap | ( | dwImageCUDA * | distortionMap, |
dwRectifierHandle_t | obj | ||
) |
Gets the distortion map as a 2-channel single plane image.
[out] | distortionMap | The distortion map. |
[in] | obj | A pointer to the rectifier handle that is updated. Initialization must not have changed. |
DW_API_PUBLIC dwStatus dwRectifier_getHomography | ( | dwMatrix3f * | homography, |
dwRectifierHandle_t | obj | ||
) |
Gets the homography matrix used.
[out] | homography | The homography transformation matrix. |
[in] | obj | A pointer to the rectifier handle. Initialization must not have changed. |
DW_API_PUBLIC dwStatus dwRectifier_initialize | ( | dwRectifierHandle_t * | obj, |
dwCameraModelHandle_t | cameraIn, | ||
dwCameraModelHandle_t | cameraOut, | ||
dwContextHandle_t | ctx | ||
) |
Initializes a rectifier based on an input and output camera model and a homography.
In particular, the rectifier implements Ray2Pixel_cameraOut( H * Pixel2Ray_cameraIn(Image) ). Per default, the homography is set to identity. This also implicitly sets up the VIC engine for rectificaton of dwImageNvMedia (see dwRectifier_warpNvMedia, note the image must have the same resolution of the set camera and it must not be lower that 128x128)
[out] | obj | A pointer to the rectifier handle for the created module. |
[in] | cameraIn | Model of the input camera. |
[in] | cameraOut | Model of the output camera. |
[in] | ctx | Specifies the handler to the context to create the rectifier. |
DW_API_PUBLIC dwStatus dwRectifier_release | ( | dwRectifierHandle_t | obj | ) |
Releases the rectifier module.
[in] | obj | The object handle to release. |
DW_API_PUBLIC dwStatus dwRectifier_reset | ( | dwRectifierHandle_t | obj | ) |
Resets the rectifier module.
[in] | obj | Specifies the rectifier to reset. |
DW_API_PUBLIC dwStatus dwRectifier_setCUDAStream | ( | cudaStream_t | stream, |
dwRectifierHandle_t | obj | ||
) |
Sets the CUDA stream used.
[in] | stream | The CUDA stream to use. |
[in] | obj | A pointer to the rectifier handle that is updated. Initialization must not have changed. |
DW_API_PUBLIC dwStatus dwRectifier_setHomography | ( | const dwMatrix3f * | homography, |
dwRectifierHandle_t | obj | ||
) |
Sets the homography matrix used.
[in] | homography | The new homography transformation matrix. |
[in] | obj | A pointer to the rectifier handle that is updated. Initialization must not have changed. |
DW_API_PUBLIC dwStatus dwRectifier_setHomographyFromRotation | ( | float32_t | roll, |
float32_t | pitch, | ||
float32_t | yaw, | ||
dwRectifierHandle_t | obj | ||
) |
Calculates and sets the homography matrix used based on a value for roll, pitch and yaw.
This rotation will be applied during backprojection, so from output to input
[in] | roll | The camera roll in degrees. |
[in] | pitch | The camera pitch in degrees. |
[in] | yaw | The camera yaw in degrees. |
[in] | obj | A pointer to the rectifier handle that is updated. Initialization must not have changed. |
DW_API_PUBLIC dwStatus dwRectifier_warp | ( | dwImageCUDA * | outputImage, |
const dwImageCUDA * | inputImage, | ||
bool | setOutsidePixelsToBlack, | ||
dwRectifierHandle_t | obj | ||
) |
Warps the image from the input camera model to the model of the output camera using CUDA on the GPU.
The coordinates are calculated on the spot, unless distortion map has been enabled, in which case they will be read. NOTE: the coordinates of input/output images are implicitly adapted to match the input/output camera if the sizes of the images don't match the cameras. This will result in stretching of the image and possible loss of aspect ratio.
[out] | outputImage | Pointer to the output image. |
[in] | inputImage | Pointer to the input image. |
[in] | setOutsidePixelsToBlack | if true, the pixels outside the original image are set to black on the undistorted image, otherwise interpolated |
[in] | obj | A pointer to the rectifier handle that performs the warping. |
DW_API_PUBLIC dwStatus dwRectifier_warpNvMedia | ( | dwImageNvMedia * | outputImage, |
const dwImageNvMedia * | inputImage, | ||
dwRectifierHandle_t | obj | ||
) |
Warps the image from the input camera model to the model of the output camera using the Tegra VIC engine.
External pixels are automatically filled by replicating valid pixels NOTE: the coordinates of input/output images are implicitly adapted to match the input/output camera if the sizes of the images don't match the cameras. This will result in stretching of the image and possible loss of aspect ratio.
[out] | outputImage | Pointer to the output image. |
[in] | inputImage | Pointer to the input image. |
[in] | obj | A pointer to the rectifier handle that performs the warping. |
DW_API_PUBLIC dwStatus dwRectifier_warpPointsCPU | ( | dwVector2f * | outputPoints, |
const dwVector2f * | inputPoints, | ||
uint32_t | pointCount, | ||
dwRectifierHandle_t | obj | ||
) |
Warps an array of CPU dwVector2f on a preallocated output CPU buffer.
[out] | outputPoints | Array of output points. |
[in] | inputPoints | Array of input points |
[in] | pointCount | number of points |
[in] | obj | A pointer to the rectifier handle that performs the warping. |
DW_API_PUBLIC dwStatus dwRectifier_warpPointsGPU | ( | dwVector2f * | outputPoints, |
const dwVector2f * | inputPoints, | ||
uint32_t | pointCount, | ||
dwRectifierHandle_t | obj | ||
) |
Warps an array of dwVector2f on GPU.
[out] | outputPoints | Array of output points. |
[in] | inputPoints | Array of input points |
[in] | pointCount | number of points |
[in] | obj | A pointer to the rectifier handle that performs the warping. |
DW_API_PUBLIC dwStatus dwRectifier_warpPointsInPlaceCPU | ( | dwVector2f * | points, |
uint32_t | pointCount, | ||
dwRectifierHandle_t | obj | ||
) |
Warps an array of CPU dwVector2f and writes on the same buffer.
[in] | points | Array of points to warp in place |
[in] | pointCount | number of points |
[in] | obj | A pointer to the rectifier handle that performs the warping. |
DW_API_PUBLIC dwStatus dwRectifier_warpPointsInPlaceGPU | ( | dwVector2f * | points, |
uint32_t | pointCount, | ||
dwRectifierHandle_t | obj | ||
) |
Warps an array of dwVector2f on the GPU and writes on the same buffer.
[in] | points | Array of points to warp in place |
[in] | pointCount | number of points |
[in] | obj | A pointer to the rectifier handle that performs the warping. |
DW_API_PUBLIC dwStatus dwRectifier_warpROI | ( | dwImageCUDA * | outputImage, |
const dwImageCUDA * | inputImage, | ||
bool | setOutsidePixelsToBlack, | ||
const dwRect | roi, | ||
dwRectifierHandle_t | obj | ||
) |
Warps the image from the input camera model to the model of the output camera limiting the computation to a ROI.
The ROI is defined in output camera coordinates and the resulting image will be translated to the origin of the output image. No further transformation will be performed.
[out] | outputImage | Pointer to the output image. |
[in] | inputImage | Pointer to the input image. NOTE: the coordinates of this image are implicitly adapted to the input camera |
[in] | setOutsidePixelsToBlack | if true, the pixels outside the original image are set to black on the undistorted image, otherwise interpolated |
[in] | roi | A region of interest of the output rectified area |
[in] | obj | A pointer to the rectifier handle that performs the warping. |