Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7509423
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T22:54:47+00:00 2026-05-29T22:54:47+00:00

I have extracted SIFT features in (opencv open source) and they are extracted as

  • 0

I have extracted SIFT features in (opencv open source) and they are extracted as keypoints. Now, I would like to convert them to Matrix (With their x,y coordinates) or save them in a text file…

Here, you can see a sample code for extracting the keypoints and now I would like to know how convert them to MAT or save them in txt, xml or yaml…

cv::SiftFeatureDetector detector;
std::vector<cv::KeyPoint> keypoints;
detector.detect(input, keypoints);
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T22:54:48+00:00Added an answer on May 29, 2026 at 10:54 pm

    Convert to cv::Mat is as follows.

    std::vector<cv::KeyPoint> keypoints;
    std::vector<cv::Point2f> points;
    std::vector<cv::KeyPoint>::iterator it;
    
    for( it= keypoints.begin(); it!= keypoints.end();it++)
    {
        points.push_back(it->pt);
    }
    
    cv::Mat pointmatrix(points);
    

    Write to filestorage is

    cv::FileStorage fs("test.yml", cv::FileStorage::WRITE);
    cv::FileStorage fs2("test2.xml", cv::FileStorage::WRITE);
    
    detector.write(fs);
    detector.write(fs2);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to use the Mail module of Zend Framework. I have extracted
I have extracted the SIFT feature descriptors in OpenCV.. Next step to me is
I'd like to sift text (in particular, Twitter messages) to see if they relate
I have extracted html source from a web page, and was wondering how to
I have extracted records from a database and stored them on an HTML page
I want to use Yii document generator, i have extracted the source in protected/commands.
I have just Extracted the cells from the excel sheet using Apache POI, everything
I have some html extracted to a string var, and want to then use
My problem is :: From a string like /usr/folder1/folder2/filename.ext I have to extract out
I have extracted data to a data frame with mixed format dates that need

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.