Back to Aurora Vision Library website

You are here: Start » Function Reference » All Functions » Image Basics » AvsFilter_AccessImage

AvsFilter_AccessImage


This is Filter Equivalent. This function may be present in generated code, but should not be used in hand-written code.

Header: AVL.h
Namespace: avs
Module: FoundationLite

Returns individual fields of an image.

Syntax

void avs::AvsFilter_AccessImage
(
	const avl::Image& inImage,
	int& outWidth,
	int& outHeight,
	int& outDepth,
	avl::PlainType::Type& outType,
	int& outPixelSize,
	int& outPitch
)

Parameters

Name Type Default Description
Input value inImage const Image& Input image
Output value outWidth int& Output image width
Output value outHeight int& Output image height
Output value outDepth int& Output number of image color channels
Output value outType PlainType::Type& Output pixel format
Output value outPixelSize int& Output pixel size in bytes
Output value outPitch int& Length of images pixel line with padding