Class

com.intel.analytics.zoo.models.image.objectdetection

DecodeOutput

Related Doc: package objectdetection

Permalink

case class DecodeOutput() extends ImageProcessing with Product with Serializable

Decode the detection output The output of the model prediction is a 1-dim tensor The first element of tensor is the number(K) of objects detected, followed by [label score x1 y1 x2 y2] * K For example, if there are 2 detected objects, then K = 2, the tensor may looks like 2, 1, 0.5, 10, 20, 50, 80, 3, 0.3, 20, 10, 40, 70 After decoding, it returns a 2-dim tensor, each row represents a detected object 1, 0.5, 10, 20, 50, 80 3, 0.3, 20, 10, 40, 70

Linear Supertypes
Product, Equals, ImageProcessing, Preprocessing[ImageFeature, ImageFeature], FeatureTransformer, Transformer[ImageFeature, ImageFeature], Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DecodeOutput
  2. Product
  3. Equals
  4. ImageProcessing
  5. Preprocessing
  6. FeatureTransformer
  7. Transformer
  8. Serializable
  9. Serializable
  10. AnyRef
  11. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new DecodeOutput()

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def ->(other: ImageProcessing): ImageProcessing

    Permalink
    Definition Classes
    ImageProcessing
  4. def ->[C](other: Preprocessing[ImageFeature, C]): Preprocessing[ImageFeature, C]

    Permalink
    Definition Classes
    Preprocessing
  5. def ->[C](other: Transformer[ImageFeature, C]): Transformer[ImageFeature, C]

    Permalink
    Definition Classes
    FeatureTransformer → Transformer
  6. def ->(other: FeatureTransformer): FeatureTransformer

    Permalink
    Definition Classes
    FeatureTransformer
  7. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  8. def apply(textSet: TextSet): TextSet

    Permalink
    Definition Classes
    Preprocessing
  9. def apply(imageSet: ImageSet): ImageSet

    Permalink
    Definition Classes
    Preprocessing
  10. def apply(imageFrame: ImageFrame): ImageFrame

    Permalink
    Definition Classes
    FeatureTransformer
  11. def apply(prev: Iterator[ImageFeature]): Iterator[ImageFeature]

    Permalink
    Definition Classes
    FeatureTransformer → Transformer
  12. def apply(dataset: RDD[ImageFeature])(implicit evidence: ClassTag[ImageFeature]): RDD[ImageFeature]

    Permalink
    Definition Classes
    Transformer
  13. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  14. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  15. def clonePreprocessing(): Preprocessing[ImageFeature, ImageFeature]

    Permalink
    Definition Classes
    Preprocessing
  16. def cloneTransformer(): Transformer[ImageFeature, ImageFeature]

    Permalink
    Definition Classes
    Transformer
  17. def enableIgnoreException(): DecodeOutput.this.type

    Permalink
    Definition Classes
    FeatureTransformer
  18. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  19. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  21. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  22. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  23. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  24. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  25. def setOutKey(key: String): DecodeOutput.this.type

    Permalink
    Definition Classes
    FeatureTransformer
  26. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  27. def transform(feature: ImageFeature): ImageFeature

    Permalink
    Definition Classes
    FeatureTransformer
  28. def transformMat(imageFeature: ImageFeature): Unit

    Permalink
    Definition Classes
    DecodeOutput → FeatureTransformer
  29. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Product

Inherited from Equals

Inherited from ImageProcessing

Inherited from Preprocessing[ImageFeature, ImageFeature]

Inherited from FeatureTransformer

Inherited from Transformer[ImageFeature, ImageFeature]

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped