Interface ImageCounter<T>
- Type Parameters:
T
- pay-load type.
- All Known Subinterfaces:
ImageCounterWithStatistics<T>
- All Known Implementing Classes:
ImageCounterList
public interface ImageCounter<T>
Counts images on aggregate, some with associated annotations, others without.
An arbitrary payload may be associated with an annotated-image, as suits the needs of the implementing sub-class.
- Author:
- Owen Feehan
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addAnnotatedImage
(T payload) Add an image that had an associated annotation.void
Add an image that did not have an associated annotation.
-
Method Details
-
addUnannotatedImage
void addUnannotatedImage()Add an image that did not have an associated annotation. -
addAnnotatedImage
Add an image that had an associated annotation.- Parameters:
payload
- the payload associated with the annotated image.
-