The LeapImage class represents a single greyscale image from one of the the Leap Motion cameras. More...
Inherits NSObject.
Instance Methods | |
| (BOOL) | - equals: |
| Compare LeapImage object equality. More... | |
| (int32_t) | - id |
| The image ID. More... | |
| (LeapVector *) | - rectify: |
| Provides the corrected camera ray intercepting the specified point on the image. More... | |
| (int64_t) | - sequenceId |
| The image sequence ID. More... | |
| (LeapVector *) | - warp: |
| Provides the point in the image corresponding to a ray projecting from the camera. More... | |
Class Methods | |
| (LeapImage *) | + invalid |
| Returns an invalid Image object. More... | |
Properties | |
| int | bytesPerPixel |
| The number of bytes per pixel. More... | |
| const unsigned char * | data |
| A pointer to the image data. More... | |
| const float * | distortion |
| A pointer to the distortion calibration map. More... | |
| int | distortionHeight |
| The distortion map height. More... | |
| int | distortionWidth |
| The stride of the distortion map. More... | |
| LeapImageFormatType | format |
| The image format. More... | |
| int | height |
| The image height. More... | |
| BOOL | isValid |
| Reports whether this LeapImage instance contains valid data. More... | |
| float | rayOffsetX |
| The horizontal ray offset. More... | |
| float | rayOffsetY |
| The vertical ray offset. More... | |
| float | rayScaleX |
| The horizontal ray scale factor. More... | |
| float | rayScaleY |
| The vertical ray scale factor. More... | |
| int64_t | timestamp |
| Returns a timestamp indicating when this frame began being captured on the device. More... | |
| int | width |
| The image width. More... | |
The LeapImage class represents a single greyscale image from one of the the Leap Motion cameras.
In addition to image data, the LeapImage object provides a distortion map for correcting lens distortion.
Note that LeapImage objects can be invalid, which means that they do not contain valid image data. Get valid LeapImage objects from [LeapFrame frames:]. Test for validity with the LeapImage.isValid.
| - (BOOL) equals: | (const LeapImage *) | other |
| - (int32_t) id |
The image ID.
Images with ID of 0 are from the left camera; those with an ID of 1 are from the right camera (with the device in its standard operating position with the green LED facing the operator).
| + (LeapImage *) invalid |
Returns an invalid Image object.
You can use the instance returned by this function in comparisons testing whether a given Image instance is valid or invalid. (You can also use the LeapImage.isValid property.)
| - (LeapVector *) rectify: | (LeapVector *) | uv |
Provides the corrected camera ray intercepting the specified point on the image.
Given a point on the image, rectify: corrects for camera distortion and returns the true direction from the camera to the source of that image point within the Leap Motion field of view.
This direction vector has an x and y component with the third element always zero: i.e. [x, y, 0]. Note that this vector uses the 2D camera coordinate system where the x-axis parallels the longer (typically horizontal) dimension and the y-axis parallels the shorter (vertical) dimension. The camera coordinate system does not correlate to the Leap Motion 3D coordinate system.
| uv | A LeapVector containing the position of a pixel in the image. |
| - (int64_t) sequenceId |
The image sequence ID.
| - (LeapVector *) warp: | (LeapVector *) | xy |
Provides the point in the image corresponding to a ray projecting from the camera.
Given a ray projected from the camera in the specified direction, warp: corrects for camera distortion and returns the corresponding pixel coordinates in the image.
The ray direction is specified in relationship to the camera. The first vector element corresponds to the "horizontal" view angle; the second corresponds to the "vertical" view angle.
| xy | A LeapVector containing the ray direction. |
|
readnonatomicassign |
The number of bytes per pixel.
|
readnonatomicassign |
A pointer to the image data.
The image data is a set of 8-bit intensity values. The size of the buffer is image.width * image.height bytes.
Where convenient, you can wrap the image data in an NSData object:
|
readnonatomicassign |
A pointer to the distortion calibration map.
The calibration map is a 64x64 grid of points. Each point is defined by a pair of 32-bit floating point values. Thus the size of the buffer is (image.distortionWidth * 2) * image.distortionHeight * 4 bytes. Currently the size is not dynamic and evaluates to: 64 * 2 * 64 * 4 = 32768 bytes. A future device or change in the API, however, could result in a different size for the calibration map. You should always use the image.distortionWidth and image.distortionHeight properties to calculate the buffer size.
Each point in the map represents a ray projected into the camera. The value of a grid point defines the pixel in the image data containing the brightness value produced by the light entering along the corresponding ray. By interpolating between grid data points, you can find the brightness value for any projected ray. Grid values that fall outside the range [0..1] do not correspond to a value in the image data and those points should be ignored.
The calibration map can be used to render an undistorted image as well as to find the true angle from the camera to a feature in the raw image. The distortion map itself is designed to be used with GLSL shader programs. In other contexts, it may be more convenient to use the [LeapImage rectify:] and [LeapImage warp:] functions.
Distortion is caused by the lens geometry as well as imperfections in the lens and sensor window. The calibration map is created by the calibration process run for each device at the factory (and which can be rerun by the user).
|
readnonatomicassign |
The distortion map height.
Currently fixed at 64.
|
readnonatomicassign |
The stride of the distortion map.
Since each point on the 64x64 element distortion map has two values in the buffer, the stride is 2 times the size of the grid. (Stride is currently fixed at 2 * 64 = 128).
|
readnonatomicassign |
The image format.
|
readnonatomicassign |
Reports whether this LeapImage instance contains valid data.
|
readnonatomicassign |
The horizontal ray offset.
Used to convert between normalized coordinates in the range [0..1] and the ray slope range [-4..4].
|
readnonatomicassign |
The vertical ray offset.
Used to convert between normalized coordinates in the range [0..1] and the ray slope range [-4..4].
|
readnonatomicassign |
The horizontal ray scale factor.
Used to convert between normalized coordinates in the range [0..1] and the ray slope range [-4..4].
|
readnonatomicassign |
The vertical ray scale factor.
Used to convert between normalized coordinates in the range [0..1] and the ray slope range [-4..4].
|
readnonatomicassign |
Returns a timestamp indicating when this frame began being captured on the device.
|
readnonatomicassign |
Objective-C