As a closed commercial software, Matlab is controlled by the US government and ignores business ethics, so it is not recommended for use. If you like Matlab syntax, you can move to the open source octave, which has the same syntax as Matlab. Matlab Centroid AlgorithmThe so-called centroid is the center of gravity when the density is used as the grayscale value of the pixel. For example, the x coordinate of the centroid is The most intuitive method is the following one. %%Find the center of mass position of img through the center of mass algorithm function [x,y] = oCenter(img) img = double(img); [m,n] = size(img); x = 0;y = 0;sum=0; for i = 1:m for j = 1:n y = y + img(i,j)*i; x = x + img(i,j)*j; sum = sum+img(i,j); end end x = x/sum; y = y/sum; This is simple and crude enough, but it is too ugly. After all, in Matlab, matrix is the most basic operation unit. x = img(i,:)*(1:n)'/sum(img(i,:)); Based on this, we also got an unexpected benefit, that is, we can easily write the centroid of each row in one line of expression x = img*(1:n)'./sum(img,2);%The centroid of each row y = (1:m)*img./sum(img);%The centroid of each column OCD means looking comfortable. sumImg = sum(img(:)); x = sum(img)*(1:n)'/sumImg; y = (1:m)*sum(img,2)/sumImg; The above is the detailed content of JavaScript programming through Matlab centroid algorithm positioning learning. For more information about JavaScript positioning Matlab centroid algorithm, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Specific example of MySQL multi-table query
>>: How to deploy and start redis in docker
This story starts with an unexpected discovery tod...
Preface The Boost library is a portable, source-c...
Table of contents 1. Create objects by literal va...
MySQL's foreign key constraint is used to est...
Preface: After the automation is written, it need...
This article collects the fonts used in the logos...
Table of contents 1. Error phenomenon 2. Error An...
In order to improve user experience and ease of us...
The outermost boxF rotates 120 degrees, the secon...
Table of contents 1. Problem Description 2. Probl...
MySQL InnoDB monitoring (system layer, database l...
The MySQL built-in date function TIMESTAMPDIFF ca...
Background Recently, when writing SQL statements,...
Table of contents introduce start Install ① Direc...
<!DOCTYPE html> <html lang="en"...