I am using cv2.dnn.readNet to use a neural network model for text detection in an image. it takes the following error and I don't have any idea what it is saying.
here's my pice of code:
nn = cv2.dnn.readNet('frozen_east_text_detection.pb')
The error is:
error: OpenCV(4.1.2) /io/opencv/modules/dnn/src/tensorflow/tf_io.cpp:42: error: (-2:Unspecified error) FAILED: ReadProtoFromBinaryFile(param_file, param). Failed to parse GraphDef file: frozen_east_text_detection.pb in function 'ReadTFNetParamsFromBinaryFileOrDie'
I should say Im writing at google colab, thank u...