1

I was trying to run a linux binary from this site:

http://www.robots.ox.ac.uk/~vgg/research/affine/descriptors.html#binaries

specifically, the "compute_descriptors.ln"

However, the terminal only responded with command not found. The extension also looks very uncommon.

I am running Ubuntu 12.10.

LuiCha
  • 393

2 Answers2

1

I think you missed some steps (chmod +x maybe?). Works for me:

$ wget http://www.robots.ox.ac.uk/[...]/compute_descriptors.ln.gz                
[...]
2012-12-12 11:55:36 (1.55 MB/s) - `compute_descriptors.ln.gz' saved [3222607/3222607]                                            

$ gunzip compute_descriptors.ln.gz                                                                             
$ chmod +x compute_descriptors.ln 
$ ./compute_descriptors.ln 
Interest point descriptors implemented by Krystian.Mikolajczyk@inrialpes.fr                                                      
at INRIA Rhone-Alpes.[ref. www.inrialpes.fr/movi/people/Mikolajczyk/Affine]                                                      
Options:
[...]
gertvdijk
  • 69,427
1

You probably typed

$ compute_descriptors.ln

but you need to do

$ ./compute_descriptors.ln

(notice the leading ./, that is also mentioned on the site you linked)
The command isn't known "globally" (in your path) so you must specify that the command is in fact in this directory.

You could also need to do a chmod +x, but i'd just try the ./ prepending first.

Nanne
  • 8,685