Sets a new origin for the image and adjusts image scales.
Modifies the camera model so that it applies to a transformed version of the original image The image0 is transformed so that pixel p0= [u0,v0,1]^T
becomes pt= [ut,vt,1]^T
, i.e., pt = transform * p0
.
Currently, transform is limited to an affine matrix containing only scale and translation, i.e., transform =
[s 0 tx]
[0 s ty]
[0 0 1]
Examples:
Cropping: if the original image is cropped by removing the first and last N rows and the first and last M columns.
transform= [1.0, 0.0, N]
[0.0, 1.0, M]
[0.0, 0.0, 1.0]
newsize = `getImageSize()-dwVector2ui{2*N,2*M}`
will produce a camera model that can be used with the cropped image.
Subsampling: if the original image is subsampled by dropping every second pixel:
x0: 0 1 2 3 4 5
xt: 0 1 2
transform= [0.5, 0.0, 0.0]
[0.0, 0.5, 0.0]
[0.0, 0.0, 1.0]
newSize = getImageSize()*0.5f
will produce a camera model that can be used with the subsampled image.
Subsampling with interpolation: if the original image is subsampled by interpolating between the pixels:
x0: 0 1 2 3 4 5
xt: 0 1 2
transform= [0.5, 0.0, 0.5]
[0.0, 0.5, 0.5]
[0.0, 0.0, 1.0]
newSize = getImageSize()*0.5f
will produce a camera model that can be used with the subsampled image.
- Parameters
-
[in] | transform | The scale+shift affine transform, in pixels. |
[in] | newSize | The new size of the image after the transformation, in pixels. |
[in] | obj | Handle to the calibrated camera model. |
- Return values
-
DW_INVALID_ARGUMENT | if one of the given pointers is a nullptr |
DW_INVALID_HANDLE | if given camera handle is invalid |
DW_SUCCESS | no error |
- API Group
- Init: Yes
- Runtime: Yes
- De-Init: Yes