All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.actelion.research.orbit.imageAnalysis.models.SegmentationResult Maven / Gradle / Ivy

Go to download

Orbit, a versatile image analysis software for biological image-based quantification

There is a newer version: 3.15
Show newest version
/*
 *     Orbit, a versatile image analysis software for biological image-based quantification.
 *     Copyright (C) 2009 - 2017 Actelion Pharmaceuticals Ltd., Gewerbestrasse 16, CH-4123 Allschwil, Switzerland.
 *
 *     This program is free software: you can redistribute it and/or modify
 *     it under the terms of the GNU General Public License as published by
 *     the Free Software Foundation, either version 3 of the License, or
 *     (at your option) any later version.
 *
 *     This program is distributed in the hope that it will be useful,
 *     but WITHOUT ANY WARRANTY; without even the implied warranty of
 *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *     GNU General Public License for more details.
 *
 *     You should have received a copy of the GNU General Public License
 *     along with this program.  If not, see .
 *
 */

package com.actelion.research.orbit.imageAnalysis.models;

import java.awt.*;
import java.io.Serializable;
import java.util.List;

public class SegmentationResult implements Serializable {
    private static final long serialVersionUID = 1L;
    private List header;
    private List shapeList;
    private List secondaryShapeList;
    private List featureList;
    private int objectCount = 0;
    private int secondaryObjectCount = 0;
    private OrbitModel model;

    /**
     * Attention: this sets all properties to null!
     */
    public SegmentationResult() {
        header = null;
        shapeList = null;
        featureList = null;
        objectCount = 0;
        secondaryObjectCount = 0;
    }

    public SegmentationResult(int objectCount, int secondaryObjectCount, List header, List shapeList, List featureList) {
        this.header = header;
        this.shapeList = shapeList;
        this.featureList = featureList;
        this.objectCount = objectCount;
        this.secondaryObjectCount = secondaryObjectCount;
    }

    public SegmentationResult(int objectCount, int secondaryObjectCount, List shapeList, List featureList) {
        this.shapeList = shapeList;
        this.featureList = featureList;
        this.objectCount = objectCount; // was always 0 before 24.4.2015
        this.secondaryObjectCount = secondaryObjectCount;
    }

    /**
     * constructor used by SegmentationMapReduce
     */
    public SegmentationResult(int objectCount, int secondaryObjectCount, OrbitModel model) {
        this.objectCount = objectCount;
        this.secondaryObjectCount = secondaryObjectCount;
        this.model = model;
    }

    public List getHeader() {
        return header;
    }

    public void setHeader(List header) {
        this.header = header;
    }

    public List getShapeList() {
        return shapeList;
    }

    public void setShapeList(List shapeList) {
        this.shapeList = shapeList;
    }

    public List getFeatureList() {
        return featureList;
    }

    public void setFeatureList(List featureList) {
        this.featureList = featureList;
    }

    public int getObjectCount() {
        return objectCount;
    }

    public void setObjectCount(int objectCount) {
        this.objectCount = objectCount;
    }

    public int getSecondaryObjectCount() {
        return secondaryObjectCount;
    }

    public void setSecondaryObjectCount(int secondaryObjectCount) {
        this.secondaryObjectCount = secondaryObjectCount;
    }

    public OrbitModel getModel() {
        return model;
    }

    public void setModel(OrbitModel model) {
        this.model = model;
    }

    public List getSecondaryShapeList() {
        return secondaryShapeList;
    }

    public void setSecondaryShapeList(List secondaryShapeList) {
        this.secondaryShapeList = secondaryShapeList;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy