package com.hygenics.facialrec; /** * Represents a rectangle surrounding a discovered object. * * @author aevens * */ public class FoundObject{ public int x; public int y; public int height; public int width; public FoundObject(){ } public int getX() { return x; } public void setX(int x) { this.x = x; } public int getY() { return y; } public void setY(int y) { this.y = y; } public int getHeight() { return height; } public void setHeight(int height) { this.height = height; } public int getWidth() { return width; } public void setWidth(int width) { this.width = width; } }