Ask Your Question

tiziran's profile - activity

2017-02-26 21:15:44 -0600 commented question TensorFlow example work in some PC and does not work in some other PC

Is there any difference between 5 and 6 generation CPU

2017-02-26 19:30:59 -0600 answered a question OpenCV 3 DNN module - loading a tensorflow model?
2017-02-26 19:29:59 -0600 asked a question TensorFlow example work in some PC and does not work in some other PC

I compile the latest version of OpenCV (GitHub) in two PC and run the TensorFlow example without any problem. Also, I clean install windows 10 without any cuda and compile OpenCV without change or modify anything in Cmake with visual studio 2017 and the tensorflow example work fine and give proper results. However, in some other PC the TensorFlow example give random result.

I tested with and without GPU I tested compile and copy dll files I tested with visual studio 2015 and 2017 I tested with windows 7 and windows 10

in all cases work in some PC and does not work in another (random result).

2016-08-15 04:26:26 -0600 answered a question scan a particular image through camera and compare with with original

Template matching is a technique in digital image processing for finding small parts of an image which match a template image. It can be used in manufacturing as a part of quality control, a way to navigate a mobile robot, or as a way to detect edges in images.

2016-08-15 04:23:17 -0600 received badge  Enthusiast
2016-08-08 03:00:15 -0600 commented question Long exit from program (long runtime exit). after save SVM opencv it is take long time to exit program

the code outside of my code. not in opencv library. opencv 3.1, windows 7, 64bit, visual studio 2013, c++

2016-08-08 00:56:11 -0600 asked a question Long exit from program (long runtime exit). after save SVM opencv it is take long time to exit program

I used SVM in OpenCV 3.x and after save SVM, the program takes long time to exit:

Ptr<TrainData> td1 = TrainData::create(trainingDataMat, ROW_SAMPLE, labelsMat);
svm->trainAuto(td1);
cout << " save svm" << endl;
svm->save(fileSVM);

I used F10 to find problem and I found that

 #ifndef _CRT_APP
      exit(mainret);

may take this problem. How can solve this problem?

Thanks in advance.