| 151 | } |
| 152 | |
| 153 | Status FrameView::InferFromGraph(const GraphDef& graph) { |
| 154 | Status status; |
| 155 | utils::GraphView graph_view(&graph, &status); |
| 156 | TF_RETURN_IF_ERROR(status); |
| 157 | return InferFromGraphViewT(graph_view); |
| 158 | } |
| 159 | |
| 160 | const std::vector<int>& FrameView::Frames(const NodeDef& node) const { |
| 161 | DCHECK(is_inferred_) << "FrameView is not initialized"; |
no outgoing calls