美文网首页
opencv 调用 TensorFlow 训练好的模型

opencv 调用 TensorFlow 训练好的模型

作者: 不做秃顶的程序猿 | 来源:发表于2019-01-08 14:50 被阅读0次

    官方教程

    背景

    opencv 要使用 TensorFlow object_detection 自定义数据集训练后的模型

    方法

    opencv 提供了 load TensorFlow model 的方法

    retval = cv.dnn.readNetFromTensorflow(bufferModel, bufferConfig)
    
    • 其中 bufferModel 可以使用 TensorFlow models object_detection 内的 export_inference_graph.py 导出
    python export_inference_graph.py \
    --input_type image_tensor \
    --pipeline_config_path data/ssd_mobilenet_v1.config  \
    --trained_checkpoint_prefix training/model.ckpt-***  \
    --output_directory output_inference_graph
    
     python tf_text_graph_ssd.py \
    --input /path/to/model.pb \
    --config /path/to/example.config \
    --output /path/to/graph.pbtx 
    

    相关文章

      网友评论

          本文标题:opencv 调用 TensorFlow 训练好的模型

          本文链接:https://www.haomeiwen.com/subject/bmgvrqtx.html