Quantcast
Channel: OpenCV Q&A Forum - RSS feed
Viewing all articles
Browse latest Browse all 41027

Calculating center of object

$
0
0
Hello, currently I am trying to calculate the center of an object using the following code import cv2 import numpy as np vid = cv2.VideoCapture(0) vid.set(10,.05) def processVid(): while(True): ret, frame = vid.read() hsv = cv2.cvtColor(frame, cv2.COLOR_BGR2HSV) lower_green = np.array([70,200,200]) upper_green = np.array([90,255,255]) mask = cv2.inRange(hsv, lower_green, upper_green) res = cv2.bitwise_and(frame,frame,mask=mask) getPixel(res) cv2.imshow('Masked Image',res) if cv2.waitKey(1) & 0xFF == ord('q'): break vid.release() cv2.destroyAllWindows() def getPixel(img): for r in range(0,479): for c in range(0,639): print img[r,c] processVid() Currently, this code only prints out the pixel value at the row and column, as I'm having a bit of difficulty determining the best solution to what I'm trying to accomplish. I want this code to take a video feed, apply the designated filters to the video feed and then be able to determine the distance away that the object from the center of the video (i.e. if res is 640x480, I want to find the distance away from pixel @ (320,240)). Here is an example of what my current image looks like, and I want to be able to find the center of that object to the center of the video feed. What I had thought to do was to run through every pixel, and find whether it was black or colored, and then based on that be able to calculate the center. In doing this, it was a slow process (and I mean slow), not to mention I was running this off of a raspberry pi, and it is a video feed so the process would have to be almost instantaneous for accuracy in distance. I'm just curious if there is a built in OpenCV function that does this already? I haven't been able to find any documentation for this yet. ![Example image of what code currently displays](http://i.imgur.com/zwFu8nU.jpg)

Viewing all articles
Browse latest Browse all 41027

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>