Package | Description |
---|---|
messif.objects.impl |
Implementation of basic data objects.
|
messif.objects.util |
Various utilities for working with collections of objects.
|
Modifier and Type | Class and Description |
---|---|
class |
ObjectFeatureByte
Vlasta: This class used a hack for lowering memory footprint by moving an interval [0;255] to [-127;128], which is in essence WRONG!
|
class |
ObjectFeatureByteL2 |
class |
ObjectFeatureClustered
Deprecated.
This is superseded by
ObjectFeatureQuantized |
class |
ObjectFeatureClusteredMatch
Deprecated.
This is superseded by
ObjectFeatureQuantized |
class |
ObjectFeatureFloat |
class |
ObjectFeatureFloatL2 |
class |
ObjectFeatureFloatWClusters
Deprecated.
I do not know the purpose of this class, so I marked it as deprecated.
|
class |
ObjectFeatureFloatWClustersL2
Deprecated.
I do not know the purpose of this class, so I marked it as deprecated.
|
class |
ObjectFeatureLong |
class |
ObjectFeatureLongL2 |
class |
ObjectFeatureQuantized
Class for local image feature that is quantized to an array of long integers.
|
class |
ObjectFeatureQuantizedOneOfManyDist
Class for local image feature that is quantized to an array of long integers.
|
Modifier and Type | Field and Description |
---|---|
protected java.util.List<ObjectFeature> |
ObjectFeatureSet.objects
List of encapsulated objects
|
Modifier and Type | Method and Description |
---|---|
java.util.Iterator<ObjectFeature> |
ObjectFeatureSet.iterator()
Returns iterator over all features.
|
java.util.Iterator<ObjectFeature> |
ObjectFeatureOrderedSet.iterator(int minX,
int maxX,
int minY,
int maxY)
Iterate over all features within the passed window.
|
ResetableIterator<ObjectFeature> |
ObjectFeatureOrderedSet.iterator(SortDimension.Window wnd)
Iterate over all features within the passed window.
|
Modifier and Type | Method and Description |
---|---|
void |
ObjectFeatureOrderedSet.addObject(ObjectFeature obj)
Adds the object to the internal list of objects.
|
void |
ObjectFeatureSet.addObject(ObjectFeature obj)
Adds the object to the internal list of objects (to the end of the list)
|
Modifier and Type | Method and Description |
---|---|
protected static float |
ObjectFeatureSetNeedlemanWunsch.getDistance(SequenceMatchingCost cost,
ResetableIterator<ObjectFeature> it1,
ResetableIterator<ObjectFeature> it2)
CAVEAT: This implementation is different from the implementation in
getDistanceImpl |
protected static float |
ObjectFeatureSetNeedlemanWunsch.getDistance(SequenceMatchingCost cost,
ResetableIterator<ObjectFeature> it1,
ResetableIterator<ObjectFeature> it2)
CAVEAT: This implementation is different from the implementation in
getDistanceImpl |
protected static float |
ObjectFeatureSetSmithWaterman.getDistance(SequenceMatchingCost cost,
ResetableIterator<ObjectFeature> it1,
ResetableIterator<ObjectFeature> it2)
CAVEAT: This implementation is different from the implementation in
getDistanceImpl |
protected static float |
ObjectFeatureSetSmithWaterman.getDistance(SequenceMatchingCost cost,
ResetableIterator<ObjectFeature> it1,
ResetableIterator<ObjectFeature> it2)
CAVEAT: This implementation is different from the implementation in
getDistanceImpl |
static float |
ObjectFeatureSetNeedlemanWunsch.getSimilarity(SequenceMatchingCost cost,
ResetableIterator<ObjectFeature> it1,
ResetableIterator<ObjectFeature> it2) |
static float |
ObjectFeatureSetNeedlemanWunsch.getSimilarity(SequenceMatchingCost cost,
ResetableIterator<ObjectFeature> it1,
ResetableIterator<ObjectFeature> it2) |
static float |
ObjectFeatureSetSmithWaterman.getSimilarity(SequenceMatchingCost cost,
ResetableIterator<ObjectFeature> it1,
ResetableIterator<ObjectFeature> it2) |
static float |
ObjectFeatureSetSmithWaterman.getSimilarity(SequenceMatchingCost cost,
ResetableIterator<ObjectFeature> it1,
ResetableIterator<ObjectFeature> it2) |
static float |
ObjectFeatureSetSmithWaterman.getSimilarityN(SequenceMatchingCost cost,
ResetableIterator<ObjectFeature> it1,
ResetableIterator<ObjectFeature> it2) |
static float |
ObjectFeatureSetSmithWaterman.getSimilarityN(SequenceMatchingCost cost,
ResetableIterator<ObjectFeature> it1,
ResetableIterator<ObjectFeature> it2) |
Constructor and Description |
---|
ObjectFeatureOrderedSet(java.lang.String locatorURI,
int width,
int height,
java.util.Collection<? extends ObjectFeature> objects)
Creates a new instance of ObjectFeatureSet for the given locatorURI and encapsulated objects.
|
ObjectFeatureSet(java.lang.String locatorURI,
java.util.Collection<? extends ObjectFeature> objects)
Creates a new instance of ObjectFeatureSet for the given locatorURI and encapsulated objects.
|
ObjectFeatureSetMinNumOfSimilar(java.lang.String locatorURI,
java.util.Collection<? extends ObjectFeature> objects) |
ObjectFeatureSetNeedlemanWunsch(java.lang.String locatorURI,
int width,
int height,
java.util.Collection<? extends ObjectFeature> objects) |
ObjectFeatureSetNeedlemanWunschWindowed(java.lang.String locatorURI,
int width,
int height,
java.util.Collection<? extends ObjectFeature> objects) |
ObjectFeatureSetNumOfSimilar(java.lang.String locatorURI,
java.util.Collection<? extends ObjectFeature> objects) |
ObjectFeatureSetSmithWaterman(java.lang.String locatorURI,
int width,
int height,
java.util.Collection<? extends ObjectFeature> objects) |
ObjectFeatureSetSmithWatermanWindowed(java.lang.String locatorURI,
int width,
int height,
java.util.Collection<? extends ObjectFeature> objects) |
Modifier and Type | Method and Description |
---|---|
int |
SortDimension.compare(ObjectFeature o1,
ObjectFeature o2) |