Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Harris Corrner Detector Matlab code The above image is the necessary condition for writing the MATLAB code. The following is the code I wrote. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

Harris Corrner Detector Matlab codeimage text in transcribedThe above image is the necessary condition for writing the MATLAB code.

The following is the code I wrote.

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

function [corner, C] = detectHarrisCorner(im, fx_operator, fy_operator, ...

Gaussian_sigma, alpha, C_thres, NMS_ws)

im= rgb2gray(im);

[h,w]=size(im);

fx=conv2(im,fx_operator,'same'); fy=conv2(im,fy_operator,'same');

fxy=fx.*fy; fx2=fx.*fx; fy2=fy.*fy;

fxy2=conv2(fxy,GaussianFilter(Gaussian_sigma),'same'); fx2=conv2(fx2,GaussianFilter(Gaussian_sigma),'same'); fx2=conv2(fx2,GaussianFilter(Gaussian_sigma),'same');

detM=(fx2.*fy2)-(fxy2.^2); trM=(fx2+fy2).^2;

C=detM-(alpha*trM); threshold= C_thres*max(C); % C_thres=0.05

C=(C>threshold);

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

What code should I add to satisfy the above condition number 6? Condition 6 relates to non maximum suppression.

I want the correct code.

Also, please capture the image of the code, plz

Harris Corner Detector 1. Convert RGB image to Gray image 2. Compute derivatives (fx,fy) 3. Compute fa?, fjs, fxfy 4. Apply Gaussian filtering to fa?, fy?, fxfy 5. Compute cornerness score map C = g(f?)g(f;?) g(fxf,)? a[g(f2) + g(4,2))? 6. Apply threshold & non-maximum suppression. To be interest point, cornerness score > threshold AND cornerness score should be maximum among 7 x 7 window, Harris Corner Detector 1. Convert RGB image to Gray image 2. Compute derivatives (fx,fy) 3. Compute fa?, fjs, fxfy 4. Apply Gaussian filtering to fa?, fy?, fxfy 5. Compute cornerness score map C = g(f?)g(f;?) g(fxf,)? a[g(f2) + g(4,2))? 6. Apply threshold & non-maximum suppression. To be interest point, cornerness score > threshold AND cornerness score should be maximum among 7 x 7 window

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Tax Audit Approach And Due Diligence Related To Tax Credits

Authors: Mohamed Ben Sassi

1st Edition

6204246941, 978-6204246949

More Books

Students also viewed these Accounting questions

Question

8. Describe how cultural spaces are formed.

Answered: 1 week ago