object recognition in an image using python

Asked 2 years ago, Updated 2 years ago, 63 views

We use Python (WinPython 3) and OpenCV for image processing programming.

What should I do to make the building in the image recognized in the image taken with a digital camera?

Specifically, if there are several buildings lined up against the blue sky, I would like to recognize all the structures that overlap the sky as objects.Also, I would like to be able to extract the intersection point between the graph and the building when overlapping the graph on the image.

If you know more about image processing, please let me know the procedure and method in an easy-to-understand way.Thank you.
(The red circle in the image recognized)

What the red circle recognized

python python3 windows opencv image

2022-09-30 15:37

1 Answers

official cascade

https://github.com/opencv/opencv/tree/master/data/haarcascades

It seems that there is no official cascade_file of the building, so I will look for it somewhere else or make it myself. If you do the same thing here, you will be able to recognize the building.


2022-09-30 15:37

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.