I want to extract SIFT values
I have
JFeatureLib-1.6.4-jar-with-dependencies.jar
Downloaded the sift binary
have book.pgm
kept the jar and sift binary in C:\Program Files\Java\jdk1.8.0_25\bin
and kept book.pgm as in source folder
Also edited the properties of jar and set path to C:/Program Files/Java/jdk1.8.0_25/bin/sift.exe
I have also checked the permissions
I am running following command
C:\Program Files\Java\jdk1.8.0_25\bin>java -jar JFeatureLib-1.6.4-jar-with-dependencies.jar -D Sift -d D:\images\ -o D:\output.csv
I am not getting any error but output.csv is empty.. does not show any output.
Please help on this.
Am I missing something?
Waiting for your response...
--
You received this message because you are subscribed to the Google Groups "JFeatureLib" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jfeaturelib...@googlegroups.com.
To post to this group, send email to jfeat...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Hi,
--
You received this message because you are subscribed to the Google Groups "JFeatureLib" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jfeaturelib...@googlegroups.com.
To post to this group, send email to jfeat...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Hi,
I have
JFeatureLib-1.6.4-jar-with-dependencies.jar
Downloaded the sift binary
have images in .pgm form.
kept the jar and sift binary in C:\Program Files\Java\jdk1.8.0_25\bin
and kept book.pgm as in source folder
Also edited the properties of jar and set path to C:/Program Files/Java/jdk1.8.0_25/bin/sift.exe
I have also checked the permissions
I am running following command
C:\Program Files\Java\jdk1.8.0_25\bin>java -jar JFeatureLib-1.6.4-jar-with-dependencies.jar -D Sift -d D:\images\ -o D:\output.csv
I am not getting any error but output.csv is empty.. does not show any output.
Hi,
--
You received this message because you are subscribed to the Google Groups "JFeatureLib" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jfeaturelib...@googlegroups.com.
To post to this group, send email to jfeat...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Hi,
Hi Franz,
public class SiftTest {public static void main(String[] args) throws FileNotFoundException, IOException {BufferedImage img = ImageIO.read(new FileInputStream("D:\\images\\book.jpg"));ImageProcessor ip = new ColorProcessor(img);ip = ip.convertToByte(false);Sift sift = new Sift(new File("C:\\siftWin32.exe"));sift.run(ip);List<double[]> result = sift.getFeatures();System.out.println(result.size() + " features extracted...");
}
}Thank you so much.I want to use SIFT features to construct a dictionary (bag of words) and then sparse code each data vector using this dictionary.After this, using the indices in the dictionary for each active basis in the sparse code I have to construct hash code for each data vector.Can you please suggest anything for this. or how can I use JFeatureLib in this case?...Thanks for your help.
--
You received this message because you are subscribed to the Google Groups "JFeatureLib" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jfeaturelib...@googlegroups.com.
To post to this group, send email to jfeat...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Hi,
--
You received this message because you are subscribed to the Google Groups "JFeatureLib" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jfeaturelib...@googlegroups.com.
To post to this group, send email to jfeat...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.