I have created a sequence by cvCreateSequence now I want to add an element(a CvPoint) to tthis seq,how can I do this. I found this macro CV_SEQUENCE_FIELDS,is this helpful if yes than how?I am not getting this..
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
You will need to use cvSeqPush() :
In your case the element will be a CvPoint.
You can get more info here