So in my case i should provide to computeQuantisedFeatures method two arguments , the second one is of type
List<LocalFeature<Location, ? extends ArrayFeatureVector<byte[]>>>
i try to pass my imagekeypoints list which is of type
LocalFeatureList<Keypoint>
and also
List<LocalFeature<KeypointLocation, ByteFV>> features = null;
for (java.util.Iterator<Keypoint> iter = imageKeypoints.iterator(); iter.hasNext();)
{features.add((LocalFeature<KeypointLocation, ByteFV>)iter.next());}
but i always get the famous error
The method computeQuantisedFeatures(HardAssigner<T,?,?>, List<LocalFeature<L,?
extends ArrayFeatureVector<T>>>) in the type BagOfVisualWords is not applicable for
the arguments (HardAssigner<byte[],capture#3-of ?,capture#4-of ?>,
List<LocalFeature<KeypointLocation,ByteFV>>)
As noted by Paul Bellora, this is actually a bug in the generics of that method. I've just committed a fix which will be available in the
1.1.1-SNAPSHOT
versions shortly. A temporary solution is to implement the correct version of thecomputeQuantisedFeatures
method in your class as follows: