include <iostream>
using namespace std;
int main(int argc, char** argv) { CvPoint2D32f test = cvPoint2D32f(12,12); cout << test << endl; system("pause"); }
Anyone know why I can't cout test?
1 | initial version |
using namespace std;
int main(int argc, char** argv) { CvPoint2D32f test = cvPoint2D32f(12,12); cout << test << endl; system("pause"); }
Anyone know why I can't cout test?
2 | No.2 Revision |
using namespace std;Anyone know why I can't cout test in my code below?
#include <iostream>
using namespace std;
int main(int argc, char** argv)
{
CvPoint2D32f test = cvPoint2D32f(12,12);
cout << test << endl;
system("pause");
Anyone know why I can't cout test?And what's the difference between defining test as above and defining it like CvPoint2D32f test = new CvPoint2D32f[144]? Thanks.
3 | No.3 Revision |
Anyone know why I can't cout test in my code below?
#include <iostream>
using namespace std;
int main(int argc, char** argv)
{
CvPoint2D32f test = cvPoint2D32f(12,12);
cout << test << endl;
system("pause");
}
Anyone know why I can't cout test in my code above? And what's the difference between defining test as above and defining it like CvPoint2D32f test = new CvPoint2D32f[144]? Thanks.
4 | No.4 Revision |
#include <iostream>
using namespace std;
int main(int argc, char** argv)
{
CvPoint2D32f test = cvPoint2D32f(12,12);
cout << test << endl;
system("pause");
}
Anyone know why I can't cout test in my code above? And what's the difference between defining test as above and defining it like CvPoint2D32f test = new CvPoint2D32f[144]? Thanks.