public static class

ItemTrackingManager.ImageSavingConfiguration

extends Object
java.lang.Object
   ↳ com.datalogic.itemtracking.ItemTrackingManager.ImageSavingConfiguration

Class Overview

Configuration used when setting up the storage of camera images processed by the item tracking algorithm.

Summary

Nested Classes
enum ItemTrackingManager.ImageSavingConfiguration.Type The type of camera frames to save. 
Public Constructors
ImageSavingConfiguration(boolean enabled, String path, ItemTrackingManager.ImageSavingConfiguration.Type type)
Configuration constructor.
Public Methods
String getPath()
Get the path where the images are saved.
ItemTrackingManager.ImageSavingConfiguration.Type getType()
Gets the type of camera frames to save.
boolean isEnabled()
Check if the image saving is enabled in this configuration object.
void setEnabled(boolean enabled)
Method used to enable/disable the image saving in this configuration object.
void setPath(String path)
Set the path where the images are saved.
void setType(ItemTrackingManager.ImageSavingConfiguration.Type type)
Sets the type of camera frames to save.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public ImageSavingConfiguration (boolean enabled, String path, ItemTrackingManager.ImageSavingConfiguration.Type type)

Added in revision 46

Configuration constructor.

Parameters
enabled True when the image saving is enabled, false otherwise.
path Path to where the images will be saved.
type Type of camera frames to save.

Public Methods

public String getPath ()

Added in revision 46

Get the path where the images are saved.

Returns
  • The images path.

public ItemTrackingManager.ImageSavingConfiguration.Type getType ()

Added in revision 46

Gets the type of camera frames to save.

Returns
  • The type of camera frames to save.

public boolean isEnabled ()

Added in revision 46

Check if the image saving is enabled in this configuration object.

Returns
  • True when the image saving is enabled, false otherwise.

public void setEnabled (boolean enabled)

Added in revision 46

Method used to enable/disable the image saving in this configuration object.

Parameters
enabled True to enable the image saving, false to disable it.

public void setPath (String path)

Added in revision 46

Set the path where the images are saved.

Parameters
path The images path.

public void setType (ItemTrackingManager.ImageSavingConfiguration.Type type)

Added in revision 46

Sets the type of camera frames to save.

Parameters
type The type of camera frames to save.