Mahdi
#1
hi, where i can find model_path & pbtxt_path files?
in this path : \opencv_extra-4.5.4\testdata\dnn\tensorflow
There are over 100 files with “.pb” and “.pbtxt” extensions, which one should I use?
std::string model_path = "";
std::string pbtxt_path = "";
cv::dnn::Net net = cv::dnn::readNetFromTensorflow(model_path, pbtxt_path);
berak
#2
please be more concise about what you are trying to do, what model you try to use, etc
There are over 100 files with “.pb” and “.pbtxt” extensions,
probably thousands of it on the net
for which sake ?
Mahdi
#3
I am trying to test this code :
OpenCV\4.5.4\build\install\samples\mcc\chart_detection_with_network.cpp
To detect chart like the one below and calibrate the colors of the image
But the following code, I do not know how to give a value to these two variables [ model_path, pbtxt_path ]
std::string model_path = ""; // ???
std::string pbtxt_path = ""; // ???
cv::dnn::Net net = cv::dnn::readNetFromTensorflow(model_path, pbtxt_path);
1 Like
berak
#4
ok, good joke here
well, they require a pretrained model, but never tell, where it is …