SIFT Features
**Problem:** Extract SIFT features from an image.
Example:
Given an image, extract SIFT features and return the keypoints and descriptors.
Constraints:
**Note:** SIFT features are scale-invariant and rotation-invariant.
Test Cases
Test Case 1
Input:
image.jpgExpected:
[[1.0, 2.0], [3.0, 4.0]]Test Case 2
Input:
image2.jpgExpected:
[[5.0, 6.0], [7.0, 8.0]]+ 3 hidden test cases