issue 2
(Error message from code (not showing image)) commented on by antonioarocha
- Fixed it. Seems that you can change the code and make use of the convert() method
from the Image library. This will allow you to take in any kind of format instead of
the usual '.pgm' file extension.
Fixed it. Seems that you can change the code and make use of the convert() method
from the Image library. This will allow you to take in any kind of format instead of
the usual '.pgm' file extension.
Mar 28, 2009
issue 2
(Error message from code (not showing image)) reported by antonioarocha
- What steps will reproduce the problem?
1. Run test.pgm as told in the example
2. I am running Eclipse on Windows XP
3. Run pySiftTest.py and pySiftTestWithKeypoints.py
What is the expected output? What do you see instead?
SIFT descriptors shown on image
What version of the product are you using? On what operating system?
Only version available. Windows XP
Please provide any additional information below.
Error message from console when running pSiftTestWithKeyoints:
opening image
running sift
done
5260 descriptors found
C:\Python25\lib\site-packages\PIL\Image.py:1233: DeprecationWarning:
integer argument expected, got float
return self.im.putpixel(xy, value)
keypoints parsed
init scale space
compute descriptors
using keypoints
Error message from pySiftTest:
opening image
(260, 300)
running sift
done
2112 descriptors found
C:\Python25\lib\site-packages\PIL\Image.py:1233: DeprecationWarning:
integer argument expected, got float
return self.im.putpixel(xy, value)
init scale space
detecting keypoints
compute descriptors
After is prints out the number of descriptors found, it prompts up a
message that asks me to select a program that will open the image, since
the code has im.show().
I don't know how to get the image to show. Keeps saying that it cannot file
the .BMP file in my temp folder.
What steps will reproduce the problem?
1. Run test.pgm as told in the example
2. I am running Eclipse on Windows XP
3. Run pySiftTest.py and pySiftTestWithKeypoints.py
What is the expected output? What do you see instead?
SIFT descriptors shown on image
What version of the product are you using? On what operating system?
Only version available. Windows XP
Please provide any additional information below.
Error message from console when running pSiftTestWithKeyoints:
opening image
running sift
done
5260 descriptors found
C:\Python25\lib\site-packages\PIL\Image.py:1233: DeprecationWarning:
integer argument expected, got float
return self.im.putpixel(xy, value)
keypoints parsed
init scale space
compute descriptors
using keypoints
Error message from pySiftTest:
opening image
(260, 300)
running sift
done
2112 descriptors found
C:\Python25\lib\site-packages\PIL\Image.py:1233: DeprecationWarning:
integer argument expected, got float
return self.im.putpixel(xy, value)
init scale space
detecting keypoints
compute descriptors
After is prints out the number of descriptors found, it prompts up a
message that asks me to select a program that will open the image, since
the code has im.show().
I don't know how to get the image to show. Keeps saying that it cannot file
the .BMP file in my temp folder.
Mar 28, 2009
issue 1
(Cannot get it to run on Eclipse) commented on by antonioarocha
- Fixed it...seems that you really do need to have Python25 in your directory. I was
running Eclipse with the Python26 and this was my interpreter. After I changed it to
the Python 2.5.4 version, it ran nice. However, still another issue...
Fixed it...seems that you really do need to have Python25 in your directory. I was
running Eclipse with the Python26 and this was my interpreter. After I changed it to
the Python 2.5.4 version, it ran nice. However, still another issue...
Mar 22, 2009
issue 1
(Cannot get it to run on Eclipse) reported by antonioarocha
- What steps will reproduce the problem?
1. Checkout from repository
2. Setup files in Eclipse
3. Run as Python Run
What is the expected output? What do you see instead?
SIFT descriptors on sample image
What version of the product are you using? On what operating system?
Current version. OS is Windows XP
Please provide any additional information below.
I followed the instructions for the install and seems that the only problem
when I run it on Eclipse is the "import sift" statement.
I copied the sift.pyd file into my site-packages folder but Python version
installed in my OS is 2.6...not sure if this would make any difference
actually.
That seems to be the only error:
import sift
ImportError: DLL load failed: The specified module could not be found.
I've yet to try other possible solutions. Like moving the sift.pyd file
onto some other location.
What steps will reproduce the problem?
1. Checkout from repository
2. Setup files in Eclipse
3. Run as Python Run
What is the expected output? What do you see instead?
SIFT descriptors on sample image
What version of the product are you using? On what operating system?
Current version. OS is Windows XP
Please provide any additional information below.
I followed the instructions for the install and seems that the only problem
when I run it on Eclipse is the "import sift" statement.
I copied the sift.pyd file into my site-packages folder but Python version
installed in my OS is 2.6...not sure if this would make any difference
actually.
That seems to be the only error:
import sift
ImportError: DLL load failed: The specified module could not be found.
I've yet to try other possible solutions. Like moving the sift.pyd file
onto some other location.