Back to Adaptive Vision Library website

You are here: Start » Function Reference » Region » Region Spatial Transforms » DownsampleRegion

DownsampleRegion


Header: AVL.h
Namespace: avl
Module: FoundationBasic

Shrinks a region by the factor of two along each axis.

Syntax

C++
C#
 
void avl::DownsampleRegion
(
	const avl::Region& inRegion,
	avl::DownsampleRegionMode::Type inDownsampleRegionMode,
	const int inScaleStep,
	avl::Region& outRegion
)

Parameters

Name Type Range Default Description
inRegion const Region& Input region
inDownsampleRegionMode DownsampleRegionMode::Type
inScaleStep const int 0 - 12 1 Defines how many times the region size is divided by 2
outRegion Region& Output region

See Also

  • ResizeRegion – Enlarges or shrinks a region to new dimensions.
  • DownsampleImage – Shrinks an image by the factor of two along each axis.