Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

opencv - Count moving objects in a specific rectangular area instead of reference line. Failing to monitor a boxed area

https://github.com/Anishauday/MovingObjectcountingSpecificArea/blob/main/counter.py

#Check if an object is exiting from monitored zone
def CheckExitLineCrossing(x, coordXEntranceLine, coordXExitLine, height):
    absDistance = abs(x - coordXExitLine)    

    if ((absDistance <= pixelTolerance) and (x > coordXEntranceLine) and (x < height)):
        return 1
    else:
        return 0
camera = cv2.VideoCapture(0)

I'm trying to count the no. of objects that move into the boxed area instead of a reference line. I tried searching online for a reference but in vain. How do we define a rectangle to calculate abs distance to count?

question from:https://stackoverflow.com/questions/65916553/count-moving-objects-in-a-specific-rectangular-area-instead-of-reference-line-f

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share

2.1m questions

2.1m answers

63 comments

56.7k users

...