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

DecodeOutput

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
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new DecodeOutput()

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def ->(other: ImageProcessing): Preprocessing[ImageFeature, ImageFeature]

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

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

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

    Definition Classes
    FeatureTransformer
  8. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  9. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  10. def apply(imageSet: ImageSet): ImageSet

    Definition Classes
    Preprocessing
  11. def apply(imageFrame: ImageFrame): ImageFrame

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

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

    Definition Classes
    Transformer
  14. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  15. def clone(): AnyRef

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

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

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

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

    Definition Classes
    AnyRef
  20. def finalize(): Unit

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

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

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

    Definition Classes
    AnyRef
  24. final def notify(): Unit

    Definition Classes
    AnyRef
  25. final def notifyAll(): Unit

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

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

    Definition Classes
    AnyRef
  28. def transform(feature: ImageFeature): ImageFeature

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

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

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

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

    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