Updated TensorFlow text graphs (markdown)

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

@ -200,4 +200,12 @@ node {
value { b: false }
}
}
```
Finally, use both `.pb` and `.pbtxt` to import network into OpenCV:
```python
import cv2 as cv
net = cv.dnn.readNet('model.pb', 'model.pbtxt')
```