Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How C++ OpenCV implements object tracking on source video based on color segmentation

2025-04-03 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/01 Report--

What this article shares with you is about how C++ OpenCV realizes object tracking on source videos based on color segmentation. The editor thinks it is quite practical, so I share it with you for study. I hope you can get something after reading this article.

Realization idea

Color segmentation of source video with InRange

Perform a morphological operation on the segmented image (open operation to remove drying)

Then expand the N flash (N is an integer and need to be grasped by yourself)

Find the outline of the expanded shape

Generate the circumscribed rectangle of the outline

Draw the circumscribed rectangle on the source drawing

Code implementation

Let's use the previous project opencv--video2, follow the configuration properties (VS2017 configure OpenCV common properties), and then add a definition of a rectangle based on the original, as shown in the red box below:

Color segmentation of source video with InRange

Open the segmented image (corrode first and then expand)

Perform four more expansion operations, the effect of this step is because the department blue in the video will be thought to be white due to reflective problems, so it will become several color blocks when the color is extracted. In this way, we fuse the scattered color blocks together through the expansion operation, and the specific number of expansion can be tested by ourselves. I filled in 4 directly. The effect is not bad.

Obtain the minimum circumscribed rectangle according to the expanded switch

Above we use a function of DealRect. Let's focus on this function. First, we define the function of DealRect at the top of the file.

Then we will write the implementation of DealRect.

Finally, we draw an outer rectangle on the source image and display the image.

In this way, the whole effect is completed, and the result is the video display at the beginning of the article. Here is the screenshot in the video.

The above is how C++ OpenCV realizes object tracking on the source video based on color segmentation. The editor believes that there are some knowledge points that we may see or use in our daily work. I hope you can learn more from this article. For more details, please follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report