Back to Aurora Vision Library Lite website

You are here: Start » Image » Image Point Transforms » ReplacePixels

ReplacePixels


Header: AVL.h
Namespace: avl

Substitutes pixels having the specified value with a new value.

Syntax

void avl::ReplacePixels
(
	const avl::Image& inImage,
	atl::Optional<const avl::Region&> inRoi,
	const avl::Pixel& inOldPixel,
	const avl::Pixel& inNewPixel,
	avl::Image& outImage
)

Parameters

Name Type Default Description
Input value inImage const Image& Input image
Input value inRoi Optional<const Region&> NIL Range of pixels to be processed
Input value inOldPixel const Pixel&
Input value inNewPixel const Pixel&
Output value outImage Image& Output image

In-place Processing

This function supports in-place data processing - you can pass the same reference to inImage and outImage

Read more about In-place Computation.

Hardware Acceleration

This operation is optimized for SSE2 technology for pixels of types: 1xUINT8, 1xSINT16.

This operation supports automatic parallelization for multicore and multiprocessor systems.

Errors

List of possible exceptions:

Error type Description
DomainError Region exceeds an input image in ReplacePixels.