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

Example Analysis of Center difference processing based on matlab Image

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

Share

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

This article will explain in detail the example analysis of differential processing based on matlab image center. The editor thinks it is very practical, so I share it with you for reference. I hope you can get something after reading this article.

When processing images, especially when dealing with video stream images, the method of image difference is often used. As the name implies, image difference is to subtract the corresponding pixel values of two images to weaken the similar part of the image and highlight the changing part of the image. For example, the differential image can often detect the outline of the moving target, extract the trajectory of the flicker tube and so on.

Central differential source code:

I = imread ('lena1.png'); figure; imshow (I); forward_dx = mipforwarddiff (Idx'); figure, imshow (forward_dx); forward_dy = mipforwarddiff (Iddy'); figure, imshow (forward_dy); central_dx = mipcentraldiff (Idx'); figure, imshow (central_dx); central_dy = mipcentraldiff (Iddy'); figure, imshow (central_dy) Function dimg = mipcentraldiff (img,direction)% MIPCENTRALDIFF Finite difference calculations% DIMG = MIPCENTRALDIFF (IMG,DIRECTION)% Calculates the central-difference for a given direction% IMG: input image% DIRECTION: 'dx' or' dy'% DIMG: resultant image%img = padarray (img, [11], 'symmetric','both'); [row,col] = size (img); dimg = zeros (row,col) Switch (direction) case 'dx', dimg (:, 2:col-1) = (img (:, 3:col)-img (:, 1:col-2)) / 2; case' dy', dimg (2dx', dimg:)) = (img (3Rowley:)-img (1GRV Rowlinger:)) / 2; otherwise, disp ('Direction is unknown'); enddimg = dimg (2RV endly1)

Original drawing

X direction

This is the end of this article on "sample analysis of differential processing based on matlab image center". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, please share it out for more people to see.

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