Home | History | Annotate | Download | only in zsl

Lines Matching defs:images

49  * Captures images by first looking to the zsl ring buffer for acceptable (based
50 * on metadata) images. If no such images are available, a fallback
77 * @return All images currently in the ring-buffer, ordered from oldest to
82 List<ImageProxy> images = new ArrayList<>();
84 // Keep grabbing images until there are no more immediately
88 images.add(mZslRingBuffer.getNext(0, TimeUnit.SECONDS));
94 // Close the images to avoid leaking them, since they will not be
96 for (ImageProxy image : images) {
101 return images;
104 private List<ImageProxy> filterImagesWithinMaxLookBack(List<ImageProxy> images) {
105 if (images.isEmpty()) {
109 long mostRecentTimestamp = images.get(images.size() - 1).getTimestamp();
111 for (ImageProxy image : images) {
124 List<ImageProxy> images = filterImagesWithinMaxLookBack(getAllAvailableImages());
128 for (ImageProxy image : images) {
147 for (ImageProxy image : images) {