Updated TensorFlow text graphs (markdown)

Dmitry Kurtaev 2020-02-20 23:38:44 +03:00
parent 4a7b3456f2
commit d23ec63985

@ -201,3 +201,11 @@ node {
}
}
```
Finally, use both `.pb` and `.pbtxt` to import network into OpenCV:
```python
import cv2 as cv
net = cv.dnn.readNet('model.pb', 'model.pbtxt')
```