Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement Contour Detection Using OpenCV #22

Open
Blindspot22 opened this issue Aug 13, 2024 · 0 comments
Open

Implement Contour Detection Using OpenCV #22

Blindspot22 opened this issue Aug 13, 2024 · 0 comments
Labels
ticket issues

Comments

@Blindspot22
Copy link
Owner

Description:

  • Detect contours in the binary image created by the thresholding step to identify the boundaries of moving objects.

Implementation Steps:

  • Import the findContours function from OpenCV, which is used to detect contours in binary images.
  • Apply the findContours function to the thresholded binary image to extract the contours of the moving objects.
  • Configure the contour retrieval mode (e.g., RETR_EXTERNAL to retrieve only the external contours) and contour approximation method (e.g., CHAIN_APPROX_SIMPLE).
  • Store the detected contours in a data structure for further processing, such as drawing bounding boxes.
  • Test the contour detection by drawing the detected contours on the original frame using drawContours and displaying the result.
@Blindspot22 Blindspot22 added the ticket issues label Aug 13, 2024
@Blindspot22 Blindspot22 mentioned this issue Aug 13, 2024
5 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ticket issues
Projects
Status: Ready
Development

No branches or pull requests

1 participant