r/learnpython 3d ago

Camera + python

Hi everyone, when I hear python the first thing that comes to my mind is programs that detect body movement and position (like a workout) with a camera or a program that counts how many red cars passed by... Etc, I don't know exactly what this field is called but I want to learn it and use it, so if anyone knows what I am thinking about, I Will be more than grateful to know what to look for or any learning source/recommendations (yt tutorial/ free courses or even books if helpful)

7 Upvotes

8 comments sorted by

View all comments

1

u/ManzoorAhmedShaikh 2d ago

This domain is called "Computer Vision" - A sub domain of AI (Artificial Intelligence). I assume you know Python, so start looking at these libraries that specifically being used for Computer Vision:

  • OpenCV (The fundamental one and that alone can do a lot of work)
  • Pillow (Image reading, writing and editing library)
  • Mediapipe (A well-known framework that contains a lot of prebuilt model for hand traccking, skeleton joints, face joints ,etc)
  • YOLO (An advance library for some custom model creation but requires good GPU)

Hope it helps and if you need any more help, reach out to me as I have spent 2 year in this CV domain. Honestly, I too like this domain. Good luck u/West_Tooth_6144

1

u/West_Tooth_6144 2d ago

Thanks a lot