in jetson-inference, there is sample for segnet, but it supports only caffemode.
do we have some sample for segnet which support tensorflow.
Thanks
details on the platforms:
Linux:18.04
CUDA version:10.0
Python version:3.6
Tensorflow version:1.13
TensorRT version:5.0.6
hw platform: Jetson Nano
Hey southcamel, the segNet in jetson-inference refers to any segmentation network (if I recall the networks used in that repo are FCN-Based), not to “SegNet: A Deep Convolutional Encoder-Decoder Architecture for Image Segmentation” [url]https://arxiv.org/pdf/1511.00561.pdf[/url]
And it doesn’t only support caffemode, it supports TensorRT serialized networks too.
If you want to export a .trt file from TF you can check out this tutorial [url]https://github.com/tensorflow/tensorrt/tree/master/tftrt/examples/object_detection[/url]
Exporting networks from TensorFlow is becoming easier and easier, you can check:
For more updates on that regard. Good luck!