Back to Aurora Vision Library website

You are here: Start » Function Reference » Point3DGrid » Point3DGrid Fitting » Point3DGridRMSE

Point3DGridRMSE


Header: AVL.h
Namespace: avl
Module: Vision3DPro

Computes point-to-point RMSE between two point grids.

Syntax

C++
C#
 
void avl::Point3DGridRMSE
(
	const avl::Point3DGrid& inReference,
	const avl::Point3DGrid& inPoints,
	double& outRMSE
)

Parameters

Name Type Default Description
Input value inReference const Point3DGrid& Reference grid
Input value inPoints const Point3DGrid& Data points for which the RMSE will be computed.
Output value outRMSE double& Root-mean-square error of distances between inPoints and inReference.

Errors

List of possible exceptions:

Error type Description
DomainError Input grid has no valid points in Point3DGridRMSE.
DomainError Input grid is empty inPoint3DGridRMSE.