JavaScript programming through Matlab centroid algorithm positioning learning

JavaScript programming through Matlab centroid algorithm positioning learning

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 Algorithm

The 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

insert image description here

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.
And in the process of accumulating and summing, the same array is indeed used repeatedly. For the i-th row, each column is multiplied by 1,2,3... and summed, which is the dot product of the i-th row vector and the vector [1:n] . So regardless of the entire picture, the centroid of the i-th row vector can be written out relatively simply.

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.
Accordingly, the centroid of the entire image can be written as

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:
  • JS interview questions --- questions about algorithm steps
  • Using crypto-js AES symmetric encryption algorithm in Vue to implement encryption and decryption
  • Summary of seven sorting algorithms implemented in JavaScript (recommended!)
  • A brief discussion on an efficient algorithm for constructing tree structures in JavaScript
  • Implementation code of multi-level sorting algorithm in JS
  • How to implement simple calendar algorithm through JS
  • JavaScript Algorithm Interview Questions

<<:  Specific example of MySQL multi-table query

>>:  How to deploy and start redis in docker

Recommend

Some findings and thoughts about iframe

This story starts with an unexpected discovery tod...

Complete steps to install boost library under linux

Preface The Boost library is a portable, source-c...

Four ways to create objects in JS

Table of contents 1. Create objects by literal va...

Example explanation of MySQL foreign key constraints

MySQL's foreign key constraint is used to est...

Using Docker+jenkins+python3 environment to build a super detailed tutorial

Preface: After the automation is written, it need...

Collection of 25 fonts used in famous website logos

This article collects the fonts used in the logos...

Solution to the error in compiling LVGL emulator on Linux

Table of contents 1. Error phenomenon 2. Error An...

HTML input box optimization to improve user experience and ease of use

In order to improve user experience and ease of us...

Example code for implementing hexagonal borders with CSS3

The outermost boxF rotates 120 degrees, the secon...

Solutions to the failure and invalidity of opening nginx.pid

Table of contents 1. Problem Description 2. Probl...

MySQL InnoDB monitoring (system layer, database layer)

MySQL InnoDB monitoring (system layer, database l...

MySQL calculates the number of days, months, and years between two dates

The MySQL built-in date function TIMESTAMPDIFF ca...

Comparative Analysis of IN and Exists in MySQL Statements

Background Recently, when writing SQL statements,...

Detailed explanation of the core concepts and basic usage of Vuex

Table of contents introduce start Install ① Direc...

Detailed explanation of jQuery's copy object

<!DOCTYPE html> <html lang="en"...