Updated TensorFlow text graphs (markdown)

Dmitry Kurtaev 2020-02-20 23:39:15 +03:00
parent d23ec63985
commit 7936e3bf46

@ -207,5 +207,5 @@ Finally, use both `.pb` and `.pbtxt` to import network into OpenCV:
```python
import cv2 as cv
net = cv.dnn.readNet('model.pb', 'model.pbtxt')
net = cv.dnn.readNetFromTensorflow('model.pb', 'model.pbtxt')
```