1

ネット上で見つかったコードを操作した後(http://www.davidhampgonsalves.com/2011/05/OpenCV-Python-Color-Based-Object-Tracking)色付きのオブジェクトを追跡しようとしています。コードの実行中に、入力をカメラからAVIファイルに変更しました。コードが実行されると、ビデオはなく、40行目にコードがあります。

moments = cv.Moments(thresholded_img, 0) 

引数にTypeErrorを返します:'ܤ'。(基本的には、私にはわからない一連の記号です)。助けていただければ幸いです。以下のソースコードを完全に投稿します。どうもありがとう

ジョン

import cv 

color_tracker_window = "Color Tracker" 

class ColorTracker: 

    def __init__(self): 
        cv.NamedWindow( color_tracker_window, 1 )
        f = 'video.avi'
        self.capture = cv.CaptureFromFile(f) 

    def run(self): 
        while True: 
            img = cv.QueryFrame( self.capture ) 

            #blur the source image to reduce color noise 
            cv.Smooth(img, img, cv.CV_BLUR, 3); 

            #convert the image to hsv(Hue, Saturation, Value) so its  
            #easier to determine the color to track(hue) 
            hsv_img = cv.CreateImage(cv.GetSize(img), 8, 3) 
            cv.CvtColor(img, hsv_img, cv.CV_BGR2HSV) 

            #limit all pixels that don't match our criteria, in this case we are  
            #looking for purple but if you want you can adjust the first value in  
            #both turples which is the hue range(120,140).  OpenCV uses 0-180 as  
            #a hue range for the HSV color model 
            thresholded_img =  cv.CreateImage(cv.GetSize(hsv_img), 8, 1) 
            cv.InRangeS(hsv_img, (120, 80, 80), (140, 255, 255), thresholded_img) 

            #determine the objects moments and check that the area is large  
            #enough to be our object 
            moments = cv.Moments(thresholded_img, 0) 
            area = cv.GetCentralMoment(moments, 0, 0) 

            data = []
            #there can be noise in the video so ignore objects with small areas 
            if(area > 100000): 
                #determine the x and y coordinates of the center of the object 
                #we are tracking by dividing the 1, 0 and 0, 1 moments by the area 
                x = cv.GetSpatialMoment(moments, 1, 0)/area 
                y = cv.GetSpatialMoment(moments, 0, 1)/area 

                print 'x: ' + str(x) + ' y: ' + str(y) + ' area: ' + str(area)
                data.append(x, y, area)

                #create an overlay to mark the center of the tracked object 
                overlay = cv.CreateImage(cv.GetSize(img), 8, 3) 

                cv.Circle(overlay, (x, y), 2, (255, 255, 255), 20) 
                cv.Add(img, overlay, img) 
                #add the thresholded image back to the img so we can see what was  
                #left after it was applied 
                cv.Merge(thresholded_img, None, None, None, img) 

            #display the image  
            cv.ShowImage(color_tracker_window, img) 

            if cv.WaitKey(10) == 27: 
                break 

if __name__=="__main__": 
    color_tracker = ColorTracker() 
    color_tracker.run()
4

1 に答える 1

2

以下を変更する必要があります。

moments = cv.Moments(thresholded_img, 0)
moments = cv.Moments(cv.GetMat(thresholded_img,1), 0)

cv.Circle(overlay, (x, y), 2, (255, 255, 255), 20) 
cv.Circle(img, (int(x), int(y)), 2, (255, 255, 255), 20)

(出典: http://blog.goo.ne.jp/roboz80/e/16ea5be9a9eaf370046035be841b4bfd )

于 2013-08-09T14:51:50.163 に答える