Opencv python object detection Tutorial (part 1)
OpenCV Python OpenCV Python hand Tracking Series(Part-1) There are many reasons to detect object using camera which allows system to interact with the environment. Detecting obstacles by self driving car(to avoid them of course:) Can be used in gripping object with robotic arm Servaliance Purpose or may be your professor asked you to do it :( we will use OpenCV python to detect human arm with basic image processing techniques. For this method we require OpenCV and numpy library. In this tutorial we will use color as feature and detect objects. For now we will detect a ball but shape does not matter as we are usingcolor as feature and not shape. There are multiple ways to perform the Task such as Color Feature Background Subtraction Shape Features Sift Features SURF Features Deep learning we will cover all the methods but for now we focus on color features. To start we take a good photo of object you want to Track like the image given below Now let's Start Coding, First import nump...