You can only pass one argument to push_back() at a time. If you want to push each of those things back into the vector, call push_back() multiple times. Otherwise, just call it once for the one thing you want to add to the vector.
- Additionally, if your vector (assuming that you defined it somewhere else in your code as i can't see the definition) is of type "long int", you can't push back a "Hough_Transform_3D_Accumulator" type to it.
- This is because you have already specified the data type you are using for the vector template. Hence, "vector<dataType> variableName".
- Ex, if you declare "vector<int> ints",\ and " double b", attempting "ints.push_back(b)" will result in an error.