Back to Adaptive Vision Library website

You are here: Start » Function Reference » Box » BoxIntersection

BoxIntersection


Header:AVL.h
Namespace:avl

Computes the common part of two boxes.

Syntax

C++
C#
 
void avl::BoxIntersection
(
	const avl::Box& inBox1,
	const avl::Box& inBox2,
	avl::Box& outBox
)

Parameters

Name Type Default Description
inBox1 const Box&
inBox2 const Box&
outBox Box&

In-place Processing

This function supports in-place data processing - you can pass the same reference to inBox1 and outBox, inBox2 and outBox

Read more about In-place Computation.