1. Homepage
  2. Programming
  3. COMP9517: Computer Vision 2022 Term 2 Group Project Specification - Tracking pedestrians and analysing their motion in real-world video recordings

COMP9517: Computer Vision 2022 Term 2 Group Project Specification - Tracking pedestrians and analysing their motion in real-world video recordings

Engage in a Conversation
UNSWCOMP9517Computer VisionObject TrackingPython

COMP9517: Computer Vision 2022 Term 2
Group Project Specification 
CourseNana.COM

The group project is worth 40% of the total course marks. CourseNana.COM



CourseNana.COM

Project work is in Weeks 6-10 with a demo and report due in Week 10. Refer to the separate marking criteria for detailed information on marking. Submission instructions and a demo schedule will be released later. CourseNana.COM

The goal of the group project is to work together with peers in a team of 4-5 students to solve a computer vision problem and present the solution in both oral and written form. CourseNana.COM


CourseNana.COM

CourseNana.COM

Each group can meet with their assigned tutor pair once per week in Weeks 6-9 during the usual consultation session on Fridays 2-3 PM to discuss progress and get feedback. CourseNana.COM


CourseNana.COM

CourseNana.COM

The group project is to be completed by each group separately. Do not copy ideas or any materials from other groups. If you use publicly available methods or software for some of the tasks, these must be attributed/referenced appropriately (failing to do so is plagiarism and will be penalised according to UNSW rules described in the Course Outline). CourseNana.COM


CourseNana.COM

Description CourseNana.COM

An important and challenging computer vision task is object tracking in real-time videos or time-lapse image sequences [1-9]. Example applications include crowd surveillance, traffic monitoring, autonomous driving and flying, robotics, ocean and space exploration, precision surgery, and biology. In many applications, the large volume and complexity of such data make it impossible for humans to perform accurate, complete, efficient, and reproducible recognition and analysis of the relevant information in the data. CourseNana.COM

There are three fundamental steps in object tracking: object detection/segmentation in each frame of the video, object linking from frame to frame in order to obtain the trajectories, and object motion analysis from the trajectories. The difficulty in many applications is that objects may enter or leave the scene, touch/occlude each other, have similar appearance, and change appearance over time due to illumination changes, scale and shape changes, and deformations, making it hard to keep track of their unique identity. Therefore, object tracking is still a highly active research area in computer vision. CourseNana.COM

The goal of this group project is to develop and evaluate a method for tracking pedestrians and analysing their motion in real-world video recordings. Many traditional and/or machine or deep learning-based computer vision methods could be used for this. You are challenged to use the concepts taught in this course as well as other methods from literature [1-9] to create and implement your own tracking method and evaluate its performance on a public dataset from a recent international benchmarking study [10]. CourseNana.COM

Tasks CourseNana.COM

The group project consists of three tasks described below, each of which needs to be completed as a group and will be evaluated for the whole group. CourseNana.COM

Public Dataset
The dataset to be used in the group project is from the Segmenting and Tracking Every Pixel (STEP) benchmark and consists of two training videos and two test videos. It is part of the long-standing Multiple Object Tracking (MOT) benchmark and provides annotations where every pixel has a semantic label and all pixels belonging to the most salient object class (pedestrian) have a unique tracking ID. The benchmark is part of the STEP-Workshop organised at the 2021 International Conference on Computer Vision (ICCV). CourseNana.COM

The dataset including the annotation labels and further information can be found here: CourseNana.COM

https://motchallenge.net/data/STEP-ICCV21/ CourseNana.COM

The two training videos with corresponding annotations can be used to learn more about the data and (if you are using machine/deep learning) to train your method. For testing, you are required to demonstrate your method on the first test video. You are welcome to also demonstrate it on the second test video, but this is not required (it is a more difficult case). CourseNana.COM

Task 1: Track Pedestrians
Develop a Python program to track all pedestrians in the videos. Specifically, the program must perform the following subtasks: CourseNana.COM

  1. 1.1  Detect all pedestrians in all frames and calculate the bounding box for each of them. It

is not necessary to perform pedestrian segmentation (though you are welcome to try). Notice this means the annotations (labels) of the training set provide more information (pixel-level) than needed for this project (object-level). To get training data for the detection task, you need to convert the pixel-label maps to bounding boxes. CourseNana.COM

  1. 1.2  Link the bounding boxes over time to obtain the trajectory for each pedestrian. This means identifying which detections in two successive frames of the video belong to the same pedestrian. Criteria for this can be based on distances between the boxes or features calculated from the pixel values within the boxes.
  2. 1.3  Draw the bounding box and corresponding trajectory for each pedestrian. That is, for each video frame, the program must show for each pedestrian in that frame its box at

that time point and its trajectory up to that time point. Use a unique colour per pedestrian to draw the box and trajectory. The trajectory can be drawn for example as a piecewise linear curve connecting the centre positions of the corresponding boxes, from the time when the pedestrian first appeared up to the current time point. CourseNana.COM

Task 2: Count Pedestrians
Extend the program so that it can count the number of pedestrians over time. Specifically, the program must perform the following subtasks: CourseNana.COM

  1. 2.1  Report the total count of all unique pedestrians detected since the start of the video.
  2. 2.2  Report the total count of pedestrians present in the current video frame.
  3. 2.3  Allow the user to manually draw a rectangular region within the video window.
  4. 2.4  Report the total count of pedestrians who are currently within that region.

The counts can be reported by printing them to the terminal or (better) directly on the video frame (for example in one of the corners of the window). CourseNana.COM

Task 3: Analyse Pedestrians
Further extend the program so that it can analyse the behaviour of pedestrians over time. Specifically, the program must perform the following subtasks: CourseNana.COM

  1. 3.1  Report how many pedestrians walk in groups and how many walk alone. Define a

criterion to determines this from the bounding boxes. CourseNana.COM

  1. 3.2  Show occurrences of group formation and group destruction. A group formation event

is when two or more pedestrians meet (get close) and stay together for more than one CourseNana.COM

frame. A group destruction event is when at least one member of a group leaves. CourseNana.COM

  1. 3.3  Show occurrences of pedestrians entering or leaving the scene. For this subtask and

the previous, use your creativity in automatically highlighting (drawing the observer’s visual attention to) these events in the video. CourseNana.COM

Deliverables CourseNana.COM

The deliverables of the group project are 1) a group video demo and 2) a group report. Both are due in Week 10. More detailed information on the two deliverables: CourseNana.COM

Video Demo: Each group will prepare a video presentation of at most 10 minutes showing their work. The presentation must start with an introduction of the problem and then explain the used methods, show the obtained results, and discuss these results as well as ideas for future improvements. This part of the presentation should be in the form of a short PowerPoint slideshow. Following this part, the presentation should include a demonstration of the methods/software in action. Of course, some methods may take a long time to compute, so you may record a live demo and then edit it to stay within time. CourseNana.COM

The entire presentation must be in the form of a video (720p or 1080p mp4 format) of at CourseNana.COM

most 10 minutes (anything beyond that will be cut off). All group members must present (points may be deducted if this is not the case), but it is up to you to decide who presents which part (introduction, methods, results, discussion, demonstration). In order for us to verify that all group members are indeed presenting, each student presenting their part must be visible in a corner of the presentation (live recording, not a static head shot), and when they start presenting, they must mention their name. CourseNana.COM

Overlaying a webcam recording can be easily done using either the video recording functionality of PowerPoint itself (see for example this tutorial) or using other recording software such as OBS Studio, Camtasia, Adobe Premiere, and many others. It is up to you (depending on your preference and experience) which software to use, as long as the final video satisfies the requirements mentioned above. CourseNana.COM

During the scheduled lecture/consultation hours in Week 10, that is Tuesday 2 August 2022 9-11 AM and Friday 5 August 2022 1-3 PM, the video demos will be shown to the tutors and lecturers, who will mark them and will ask questions about them to the group members. Other students may tune in and ask questions as well. Therefore, all members of each group must be present when their video is shown. A roster will be made and released closer to Week 10, showing when each group is scheduled to present. CourseNana.COM

Report & Code: Each group will also submit a report (max. 10 pages, 2-column IEEE format) along with the source codes, before 5 August 2022 18:00:00. CourseNana.COM

The report must be submitted as a PDF file and include: CourseNana.COM

  1. Introduction: Discuss your understanding of the task specification and dataset.
  2. Literature Review: Review relevant techniques in literature, along with any necessary

background to understand the methods you selected. CourseNana.COM

  1. Methods: Justify and explain the selection of the methods you implemented, using

relevant references and theories where necessary. CourseNana.COM

  1. Experimental Results: Explain the experimental setup you used to evaluate the

performance of the developed methods and the results you obtained. CourseNana.COM

  1. Discussion: Provide a discussion of the results and method performance, in particular

reasons for any failures of the method (if applicable). CourseNana.COM

  1. Conclusion: Summarise what worked / did not work and recommend future work.
  2. References: List the literature references and other resources used in your work. All

external sources (including websites) used in the project must be referenced. CourseNana.COM


CourseNana.COM


CourseNana.COM

The complete source code of the developed software must be submitted as a ZIP file and, together with the report, will be assessed by the markers. Therefore, the submission must include all necessary modules/information to easily run the code. Software that is hard to run or does not produce the demonstrated results will result in deduction of points. CourseNana.COM

Plagiarism detection software will be used to compare all submissions pairwise (including submissions for similar assignments in previous years, if applicable) for both the report and the source code. See the Course Outline for the UNSW Plagiarism Policy. CourseNana.COM

As a group, you are free in how you divide the work among the group members, but all group members are supposed to contribute approximately equally to the project in terms of workload. An online survey will be held at the end of term allowing students to anonymously evaluate their group members' relative contributions to the project. The results will be reported only to the LIC and the Course Administrators, who at their discretion may moderate the final project mark for individual students if there is sufficient evidence that they contributed substantially less than the other group members. CourseNana.COM

Get in Touch with Our Experts

WeChat WeChat
Whatsapp WhatsApp
UNSW代写,COMP9517代写,Computer Vision代写,Object Tracking代写,Python代写,UNSW代编,COMP9517代编,Computer Vision代编,Object Tracking代编,Python代编,UNSW代考,COMP9517代考,Computer Vision代考,Object Tracking代考,Python代考,UNSWhelp,COMP9517help,Computer Visionhelp,Object Trackinghelp,Pythonhelp,UNSW作业代写,COMP9517作业代写,Computer Vision作业代写,Object Tracking作业代写,Python作业代写,UNSW编程代写,COMP9517编程代写,Computer Vision编程代写,Object Tracking编程代写,Python编程代写,UNSWprogramming help,COMP9517programming help,Computer Visionprogramming help,Object Trackingprogramming help,Pythonprogramming help,UNSWassignment help,COMP9517assignment help,Computer Visionassignment help,Object Trackingassignment help,Pythonassignment help,UNSWsolution,COMP9517solution,Computer Visionsolution,Object Trackingsolution,Pythonsolution,