1 | initial version |
First i'm using cmake command to build opencv on my machine (build and install) And testing if my install is correct or wrong with this test.cpp by invoking opencv apis cv::imread
2 | No.2 Revision |
First i'm using cmake command to build opencv on my machine (build and install) And testing if my install is correct or wrong with this test.cpp by invoking opencv apis cv::imread
and here is the test.cpp code
using namespace cv; using namespace std;
int main() { std::clock_t begin = std::clock();
try {
cv::Mat srcHost = cv::imread("image.png",CV_LOAD_IMAGE_GRAYSCALE); .......
3 | No.3 Revision |
First i'm using cmake command to build opencv on my machine (build and install) And testing if my install is correct or wrong with this test.cpp by invoking opencv apis cv::imread
and here is the test.cpp code
using namespace cv; using namespace std;
int main() { std::clock_t begin = std::clock();
try {
cv::Mat srcHost = cv::imread("image.png",CV_LOAD_IMAGE_GRAYSCALE); .......
4 | No.4 Revision |
First i'm using cmake command to build opencv on my machine (build and install) And testing if my install is correct or wrong with this test.cpp by invoking opencv apis cv::imreadcv::imread. Anyways i got it. I forgot to link the libraries.