Packages

  • package root
    Definition Classes
    root
  • package com
    Definition Classes
    root
  • package nvidia
    Definition Classes
    com
  • package mdx

    this is the base transform for mdx analytics SDK, the transform comprise of

    this is the base transform for mdx analytics SDK, the transform comprise of


    core : mdx streaming core classes
    xapp : comprise of sample applications

    Definition Classes
    nvidia
  • package core

    this is the core transform for mdx SDK, contains transform and classes for the core mdx functionality

    this is the core transform for mdx SDK, contains transform and classes for the core mdx functionality

    Definition Classes
    mdx
  • package transform

    transform used for any message transformation, image coordinates to real world coordinates

    transform used for any message transformation, image coordinates to real world coordinates

    Definition Classes
    core
  • package json
    Definition Classes
    transform
  • package pb
    Definition Classes
    transform
  • Calibration
  • CalibrationBase
  • CalibrationE
  • CalibrationI
  • FramesCache

package pb

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. abstract class CalibrationBase extends Serializable

    base class, reads the calibration information from the JSON config file, and instantiate the transform matrix, ROI etc per sensor

    base class, reads the calibration information from the JSON config file, and instantiate the transform matrix, ROI etc per sensor

    this is extended by Calibration and CalibrationE

Value Members

  1. object Calibration extends CalibrationBase

    reads the calibration information from the JSON config file, and instantiate the transform matrix, ROI etc per sensor

    reads the calibration information from the JSON config file, and instantiate the transform matrix, ROI etc per sensor

    this calibration implementation deals with geo coordinates

    example usage

     dataset // of Message
    	.map(msg => Calibration.transform(msg, config))
    	.filter(msg => Calibration.pointInPolygon(msg.`object`.location, msg.sensor.id, config))
    
    //
  2. object CalibrationE extends CalibrationBase

    reads the calibration information from the JSON config file, and instantiate the transform matrix, ROI etc per sensor

    reads the calibration information from the JSON config file, and instantiate the transform matrix, ROI etc per sensor

    this is alternative to Calibration and used for Euclidean space, the config is broadcast to each of the executors

    example usage

     dataset // of Message
    	.map(msg => CalibrationE.transform(msg, config))
    	.filter(msg => CalibrationE.pointInPolygon(msg.`object`.location, msg.sensor.id, config))
    
    //
  3. object CalibrationI extends CalibrationBase

    reads the calibration information from the JSON config file, and instantiate sensor details, ROI etc per sensor

    reads the calibration information from the JSON config file, and instantiate sensor details, ROI etc per sensor

    there is not transform matrix here, only used for image coordinates,

    example usage

     dataset // of Message
    	.map(msg => CalibrationI.transform(msg, config))
    	.filter(msg => CalibrationI.pointInPolygon(msg.`object`.location, msg.sensor.id, config))
    
    //
  4. object FramesCache

Ungrouped