Lines Matching refs:AImage
46 * AImage is an opaque type that provides access to image generated by {@link AImageReader}.
48 typedef struct AImage AImage;
75 * <p>For example, the {@link AImage} object can provide data
80 * @see AImage
218 * For example, the {@link AImage} object can provide data in this format from a
226 * @see AImage
314 * For example, the {@link AImage} object can provide data in this format from a
322 * @see AImage
341 * of a DEPTH16-format {@link AImage}, and converts the confidence to a floating-point value
382 * format {@link AImage}:
418 * Return the image back the the system and delete the AImage object from memory.
421 * Note that if the parent {@link AImageReader} is closed, all the {@link AImage} objects acquired
424 * {@link AImage} objects to fully delete the {@link AImage} object from memory.</p>
426 * @param image The {@link AImage} to be deleted.
428 void AImage_delete(AImage* image);
431 * Query the width of the input {@link AImage}.
433 * @param image the {@link AImage} of interest.
442 media_status_t AImage_getWidth(const AImage* image, /*out*/int32_t* width);
445 * Query the height of the input {@link AImage}.
447 * @param image the {@link AImage} of interest.
456 media_status_t AImage_getHeight(const AImage* image, /*out*/int32_t* height);
459 * Query the format of the input {@link AImage}.
463 * @param image the {@link AImage} of interest.
472 media_status_t AImage_getFormat(const AImage* image, /*out*/int32_t* format);
475 * Query the cropped rectangle of the input {@link AImage}.
480 * @param image the {@link AImage} of interest.
489 media_status_t AImage_getCropRect(const AImage* image, /*out*/AImageCropRect* rect);
492 * Query the timestamp of the input {@link AImage}.
504 * @param image the {@link AImage} of interest.
513 media_status_t AImage_getTimestamp(const AImage* image, /*out*/int64_t* timestampNs);
516 * Query the number of planes of the input {@link AImage}.
518 * <p>The number of plane of an {@link AImage} is determined by its format, which can be queried by
521 * @param image the {@link AImage} of interest.
531 media_status_t AImage_getNumberOfPlanes(const AImage* image, /*out*/int32_t* numPlanes);
534 * Query the pixel stride of the input {@link AImage}.
543 * @param image the {@link AImage} of interest.
557 const AImage* image, int planeIdx, /*out*/int32_t* pixelStride);
560 * Query the row stride of the input {@link AImage}.
568 * @param image the {@link AImage} of interest.
582 const AImage* image, int planeIdx, /*out*/int32_t* rowStride);
587 * <p>Note that once the {@link AImage} or the parent {@link AImageReader} is deleted, the data
589 * {@link AImage} or the parent {@link AImageReader} is deleted.</p>
591 * @param image the {@link AImage} of interest.
604 const AImage* image, int planeIdx,