Package boofcv.misc

Interface LookUpImages

All Known Implementing Classes:
LookUpImageFilesByIndex, LookUpImageFilesByPath, LookUpImageListByIndex

public interface LookUpImages
Used to look up images as needed for disparity calculation.
  • Method Summary

    Modifier and Type
    Method
    Description
    <LT extends ImageBase<LT>>
    boolean
    loadImage(String name, LT output)
    Loads an image.
    boolean
    Loads the shape for an image
  • Method Details

    • loadShape

      boolean loadShape(String name, ImageDimension shape)
      Loads the shape for an image
      Parameters:
      name - (Input) Name of the image
      shape - (Output) shape of the image
      Returns:
      true if the image was found or false if not
    • loadImage

      <LT extends ImageBase<LT>> boolean loadImage(String name, LT output)
      Loads an image. If a multi change image is passed in it will load the image as a RGB image.
      Parameters:
      name - (Input) Name of the image
      output - (Output) Storage for the image
      Returns:
      true if the image was found or false if not