Skip to main content

Traffic Violation Record Properties

class TrafficOffenceRecord

Description:Traffic Violation Record Properties

TrafficOffenceRecord

public class TrafficOffenceRecord {
/**
* license plate index
*/
public int[] licensePlate;
/**
* License plate positionX
*/
public float x;
/**
* License plate position y
*/
public float y;
/**
* license plate width
*/
public float width;
/**
* license plate height
*/
public float height;
/**
* Vehicle Type
*/
public int vehicleType;
/**
* Violation type
*/
public int violateType;
/**
* Capture picture address
*/
public String filePath;

public String plateNumber;
}

Description: Traffic Violation Record Properties.