victorcapelini / jopensurf

Automatically exported from code.google.com/p/jopensurf
Other
0 stars 0 forks source link

Missing dependency #6

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
public interface InterestPoint extends Clusterable {
    ...
}

... but com.stromberglabs.cluster.Clusterable is not defined in this project.

Original issue reported on code.google.com by norman.fomferra on 24 Jan 2011 at 11:47

GoogleCodeExporter commented 9 years ago
Yeah, I have  that interface packaged into the JAR, but it appears that it 
doesn't work stand alone like I was hoping it would. I'll update the download.

Original comment by jojopot...@gmail.com on 24 Jan 2011 at 3:52

GoogleCodeExporter commented 9 years ago
I repackaged the JAR file and now you should be able to just drop it into an 
application:

http://code.google.com/p/jopensurf/downloads/detail?name=JOpenSurf.jar

Original comment by jojopot...@gmail.com on 24 Jan 2011 at 4:32

GoogleCodeExporter commented 9 years ago
Hi

The only reference to com.stromberglabs.xxx external ressource is for the 
Clusterable interfece.

I think it coul be good to remove this dependency by just adding the only 
method define in Clusterable ie :

public interface InterestPoint /* extends Clusterable */{

    double getDistance(InterestPoint point);

    float[] getLocation();
}

Original comment by yves.cui...@gmail.com on 30 Apr 2011 at 3:23