@Override
public void keyReleased(KeyEvent e) {
ArrayList<String> listElements = new ArrayList<String>();
- /*
- * For the down arrow functionality
- */
+ //For the down arrow functionality
if(e.keyCode == 16777218)
{
comboLabel.setListVisible(true);
--- /dev/null
+package ie.dcu.segment;
+
+
+/**
+ * Class that represents a independent segmentation mask.
+ *
+ * A segmentation mask is a two dimensional matrix of byte values. It is used
+ * to represents which pixels in an image that are part of the foreground, and
+ * which are part of the background.
+ *
+ * @author Nikhil
+ */
+
+public final class SegmentationObject extends SegmentationMask{
+
+ /**
+ *
+ */
+ private static final long serialVersionUID = 8321845179859248904L;
+
+ public SegmentationObject(int width, int height) {
+ super(width, height);
+ // TODO Auto-generated constructor stub
+ }
+
+}