001package org.openimaj.demos.sandbox.tldcpp.detector;
002
003import org.openimaj.math.geometry.shape.Rectangle;
004
005/**
006 * A rectangle that knows which scale index it belongs to
007 * @author Sina Samangooei (ss@ecs.soton.ac.uk)
008 *
009 */
010public class ScaleIndexRectangle extends Rectangle{
011        /**
012         * 
013         */
014        private static final long serialVersionUID = 1L;
015        /**
016         * The scale index 
017         */
018        public int scaleIndex;
019}