Package

com.intel.analytics.zoo.feature

image

Permalink

package image

Visibility
  1. Public
  2. All

Type Members

  1. class BufferedImageResize extends ImageProcessing

    Permalink

    Resize loading image

  2. class ChainedImageProcessing extends ImageProcessing

    Permalink

    A transformer chain two ImageProcessing together.

  3. class DistributedImageSet extends ImageSet

    Permalink
  4. class ImageAspectScale extends ImageProcessing

    Permalink
  5. class ImageBrightness extends ImageProcessing

    Permalink

    adjust the image brightness

  6. class ImageBytesToMat extends ImageProcessing

    Permalink

    Transform byte array(original image file in byte) to OpenCVMat

  7. class ImageCenterCrop extends ImageProcessing

    Permalink
  8. class ImageChannelNormalize extends ImageProcessing

    Permalink

    image channel normalize

  9. class ImageChannelOrder extends ImageProcessing

    Permalink

    random change the channel of an image

  10. class ImageChannelScaledNormalizer extends ImageProcessing

    Permalink

    Channel normalization with scale factor.

  11. class ImageColorJitter extends ImageProcessing

    Permalink

    Random adjust brightness, contrast, hue, saturation

  12. class ImageExpand extends ImageProcessing

    Permalink

    expand image, fill the blank part with the meanR, meanG, meanB

  13. class ImageFeatureToSample[T] extends Transformer[ImageFeature, Sample[T]]

    Permalink
  14. class ImageFeatureToTensor[T] extends Preprocessing[ImageFeature, Tensor[T]]

    Permalink

    a Preprocessing that convert ImageFeature to a Tensor.

  15. class ImageFiller extends ImageProcessing

    Permalink

    Fill part of image with certain pixel value

  16. class ImageFixedCrop extends ImageProcessing

    Permalink

    Crop a fixed area of image

  17. class ImageHFlip extends ImageProcessing

    Permalink

    Flip the image horizontally

  18. class ImageHue extends ImageProcessing

    Permalink

    Adjust image hue

  19. class ImageMatToFloats extends ImageProcessing

    Permalink
  20. class ImageMatToTensor[T] extends ImageProcessing

    Permalink

    transform opencv mat to tensor

  21. class ImagePixelBytesToMat extends ImageProcessing

    Permalink

    Transform byte array(pixels in byte) to OpenCVMat

  22. class ImagePixelNormalizer extends ImageProcessing

    Permalink

    Pixel level normalizer, data(i) = data(i) - mean(i)

  23. abstract class ImageProcessing extends FeatureTransformer with Preprocessing[ImageFeature, ImageFeature]

    Permalink
  24. class ImageRandomAspectScale extends ImageProcessing

    Permalink
  25. class ImageRandomCrop extends ImageProcessing

    Permalink

    Random crop a cropWidth x cropHeight patch from an image.

    Random crop a cropWidth x cropHeight patch from an image. The patch size should be less than the image size.

  26. class ImageRandomCropper extends ImageProcessing

    Permalink

    Random cropper on uniform distribution with fixed height and width.

  27. class ImageRandomPreprocessing extends ImageProcessing

    Permalink

    Randomly apply the preprocessing to some of the input ImageFeatures, with probability specified.

    Randomly apply the preprocessing to some of the input ImageFeatures, with probability specified. E.g. if prob = 0.5, the preprocessing will apply to half of the input ImageFeatures.

  28. class ImageRandomResize extends ImageProcessing

    Permalink

    Randomly resize an image between minSize and maxSize and scale height and width to each other.

  29. class ImageRandomSampler extends ImageProcessing

    Permalink

    Random sample a bounding box given some constraints and crop the image This is used in SSD training augmentation

  30. class ImageResize extends ImageProcessing

    Permalink
  31. case class ImageRoiHFlip(normalized: Boolean = true) extends ImageProcessing with Product with Serializable

    Permalink

    horizontally flip the roi

    horizontally flip the roi

    normalized

    whether the roi is normalized, i.e. in range [0, 1]

  32. case class ImageRoiNormalize() extends ImageProcessing with Product with Serializable

    Permalink

    Normalize Roi to [0, 1]

  33. case class ImageRoiProject(needMeetCenterConstraint: Boolean = true) extends ImageProcessing with Product with Serializable

    Permalink

    Project gt boxes onto the coordinate system defined by image boundary

    Project gt boxes onto the coordinate system defined by image boundary

    needMeetCenterConstraint

    whether need to meet center constraint, i.e., the center of gt box need be within image boundary

  34. case class ImageRoiResize(normalized: Boolean = false) extends ImageProcessing with Product with Serializable

    Permalink

    resize the roi according to scale

    resize the roi according to scale

    normalized

    whether the roi is normalized, i.e. in range [0, 1]

  35. class ImageSaturation extends ImageProcessing

    Permalink

    Adjust image saturation

  36. abstract class ImageSet extends AnyRef

    Permalink

    ImageSet wraps a set of ImageFeature

  37. class ImageSetToSample[T] extends ImageProcessing

    Permalink

    Transforms tensors that map inputKeys and targetKeys to sample

  38. class LocalImageSet extends ImageSet

    Permalink
  39. class PerImageNormalize extends ImageProcessing

    Permalink

    Normalizes the norm or value range Per image, similar to opencv::normalize https://docs.opencv.org/ref/master/d2/de8/groupcorearray.html #ga87eef7ee3970f86906d69a92cbf064bd ImageNormalize normalizes scale and shift the input features.

    Normalizes the norm or value range Per image, similar to opencv::normalize https://docs.opencv.org/ref/master/d2/de8/groupcorearray.html #ga87eef7ee3970f86906d69a92cbf064bd ImageNormalize normalizes scale and shift the input features. Various normalize methods are supported. Eg. NORM_INF, NORM_L1, NORM_L2 or NORM_MINMAX. Pleas notice it's a per image normalization.

  40. class RowToImageFeature[T] extends Preprocessing[Row, ImageFeature]

    Permalink

    a Preprocessing that converts a Spark Row to a BigDL ImageFeature.

Value Members

  1. object BufferedImageResize extends Serializable

    Permalink
  2. object ImageAspectScale extends Serializable

    Permalink
  3. object ImageBrightness extends Serializable

    Permalink
  4. object ImageBytesToMat extends Serializable

    Permalink
  5. object ImageCenterCrop extends Serializable

    Permalink
  6. object ImageChannelNormalize extends Serializable

    Permalink
  7. object ImageChannelOrder extends Serializable

    Permalink
  8. object ImageChannelScaledNormalizer extends Serializable

    Permalink
  9. object ImageColorJitter extends Serializable

    Permalink
  10. object ImageExpand extends Serializable

    Permalink
  11. object ImageFeatureToSample extends Serializable

    Permalink
  12. object ImageFeatureToTensor extends Serializable

    Permalink
  13. object ImageFiller extends Serializable

    Permalink
  14. object ImageFixedCrop extends Serializable

    Permalink
  15. object ImageHFlip extends Serializable

    Permalink
  16. object ImageHue extends Serializable

    Permalink
  17. object ImageMatToFloats extends Serializable

    Permalink
  18. object ImageMatToTensor extends Serializable

    Permalink
  19. object ImagePixelBytesToMat extends Serializable

    Permalink
  20. object ImagePixelNormalizer extends Serializable

    Permalink
  21. object ImageRandomAspectScale extends Serializable

    Permalink
  22. object ImageRandomCrop extends Serializable

    Permalink
  23. object ImageRandomCropper extends Serializable

    Permalink
  24. object ImageRandomPreprocessing extends Serializable

    Permalink
  25. object ImageRandomResize extends Serializable

    Permalink
  26. object ImageRandomSampler extends Serializable

    Permalink
  27. object ImageResize extends Serializable

    Permalink
  28. object ImageSaturation extends Serializable

    Permalink
  29. object ImageSet

    Permalink
  30. object ImageSetToSample extends Serializable

    Permalink
  31. object PerImageNormalize extends Serializable

    Permalink
  32. object RowToImageFeature extends Serializable

    Permalink
  33. package roi

    Permalink

Ungrouped