python cvLoadImage problem

asked May 22 '14

Adnane gravatar image

updated Nov 16 '0

Hi, I am trying to get the width attribute of an Image that I have loaded wtih cvLoadImage in python using the following code:

frame = cvLoadImage(name, CV_LOAD_IMAGE_GRAYSCALE)
xres = frame.width
yres = frame.height

when the program arrives to these ligne it get stack and gives the following error:

 Traceback (most recent call last):
      File "track.py", line 686, in <module>
      xres_max = frame.width
 AttributeError: 'NoneType' object has no attribute 'width'

Can you please help me solve this problem.

P.S: sorry for my english.

Preview: (hide)

Comments

1

please, try to use the cv2 api instead of the outdated cv one.

import cv2
import numpy as np;
frame = cv2.imread(name,0)
print np.shape(frame)
berak gravatar imageberak (May 22 '14)edit

due to some dependencies problem, I am using opencv 1.0 with python 2.5

Adnane gravatar imageAdnane (May 22 '14)edit
1

baaaaaaaaaaaaaa.

get rid of those 'dependancy problems' in the 1st place.

any problems you might incur on the way are due to using outdated stuff., they are no more relevant today.

berak gravatar imageberak (May 22 '14)edit
1

again, your english is not a problem at all, your usage of an outdated api is. (btw, you can imagine the difference between 1.0 and 2.4.9 ?)

berak gravatar imageberak (May 22 '14)edit

:D, Ok done, in this part of the work python 2.7 and opencv 2.4 work just fine. thank you very much.

Adnane gravatar imageAdnane (May 22 '14)edit

+1 @berak for "baaaaa" & "your english is not a problem at all, your usage of an outdated api is"..... Please copy/paste all those comments as answer. But I will upvote only if you put that "baaaaaaaaaaa" there... :D

Abid Rahman K gravatar imageAbid Rahman K (May 23 '14)edit
1

hehe, no i won't ;) enough fun already.

berak gravatar imageberak (May 23 '14)edit