Skip to content

Commit 8bb5f94

Browse files
authored
Update README.md
1 parent f8aff94 commit 8bb5f94

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ FeatureCraft is a desktop application that leverages classical feature engineeri
99
Corners are important features in image processing because they represent points where two edges meet, often providing distinctive, robust, rotation-invariant features for tasks like object detection and image matching. The Harris Corner Detection algorithm is a popular method for detecting such corners.
1010
1. **Harris Corner Detection:** This algorithm identifies corners by analyzing the local intensity gradients within an image. It computes the Harris matrix (also known as the structure tensor) at each pixel, based on image derivatives, to capture changes in intensity. The corner score, known as the Harris response, is calculated using an equation that considers eigenvalues of this matrix. A high response value indicates potential corner points.
1111
<p align="center">
12-
<img src="README-Assets\Harris_corners.png" alt="corner detection" width="400"/>
12+
<img src="README-Assets\Harris_corners.png" alt="corner detection" width="500"/>
1313
</p>
1414

1515
2. **Lambda-Minus:** The method uses the eigenvalues (λ1, λ2) of the Harris matrix to assess feature points:
@@ -19,7 +19,7 @@ Corners are important features in image processing because they represent points
1919
- If both eigenvalues are small, the point is in a flat region.
2020

2121
<p align="center">
22-
<img src="README-Assets\harris-demo.jpg" alt="lambda-minus" width="200"/>
22+
<img src="README-Assets\harris-demo.jpg" alt="lambda-minus" width="300"/>
2323
</p>
2424

2525
### Scale-and-Rotation-Invariant Blob Detection (SIFT)

0 commit comments

Comments
 (0)