Basic algebra formulas that you can revise anytime and anywhere

FORMULAS FOR BEGINNER (a+b) ^2= a^2+b^2+2ab (a+b) ^2= (a-b) ^2+4ab (a-b) ^2= a^2+b^2-2ab (a-b) ^2= (a+b) ^2-4ab a^2+b^2= (a+b) ^2-2ab a^2+b^2= (a-b) ^2+ 2ab a^2-b^2= (a+b) (a-b) (a+b+c) ^2= a^2+b^2+c^2+2(ab+bc+ac) (a-b-c) ^2= a^2+b^2+c^2-2(ab-bc+ac) (a+b) ^3= a^3+b^3+3ab(a+b) (a-b) ^3= a^3-b^3+3ab(a-b) a^3+b^3= (a+b) (a^2-ab+b^2) a^3-b^3= (a-b) (a^2+ab+b^2) a^4-b^4= (a^2-b^2) (a^2+b^2) = (a^2+b^2) (a+b) (a-b) a^5+b^5= (a+b) (a^4-a^3b+a^2b^2-ab^3+b^4) a^5-b^5= (a-b) (a^4+a^3b+a^2b^2+ab^3+b^4)

Different edges using MATLAB

i=imread('BIRDS.jpg');
i=rgb2gray(i);
p1=edge(i, 'Prewitt',0.03);
p2=edge(i, 'Sobel',0.02);
p3=edge(i, 'Roberts',0.04);
p4=edge(i, 'log');
p5=edge(i, 'canny');

figure;

subplot(2,3,1),imshow(i),title('original image');
subplot(2,3,2),imshow(p1),title('Prewitt edge');
subplot(2,3,3),imshow(p2),title('Sobel edge');
subplot(2,3,4),imshow(p3),title('Roberts edge');
subplot(2,3,5),imshow(p4),title('Log edge');
subplot(2,3,6),imshow(p5),title('Canny edge');

OUTPUT:

Comments

Popular posts from this blog

Are you willing to relocate or travel(HR QUESTION)

How to answer " why do you want to work at our company? "(HR QUESTION)