Computer Vision Assignment I built the human detecting, tracking system using the test video. Used Opencv and imutils which is used for image processing Numpy to store image in a numpy array, argsparse to give input in command line other essential libraries. First I detected the person by making a box around a person and showed the frame and returned it with person bounded by red box for this I given a list containing coordinates of the bounding box of person with x, y, w, h where x and y are starting coordinates of the box and w, h are width height of the box . Given each person unique id so that we can easily track the person. In the video we can see each person having id and tracked path. Thank you