-2

I want to convert some c++ with opencv code to matlab , but I do not understand this line of code ,I know this declare a vector of type point2f (float points of 2 nodes x,y for ex) but I do not understand point[2] this confusing me Can any one explain this line of code to me?

Barq
  • 3
  • 1
  • 6

1 Answers1

1

type variable_name[n] declares an array of n elements of type type, with the name variable_name.

Thus std::vector<cv::Point2f> points[2] declares an array of two std::vector<cv::Point2f> elements. The name of that array is points.

Emil Laine
  • 41,598
  • 9
  • 101
  • 157