fabiotosi92 / monoResMatch-Tensorflow

Tensorflow implementation of monocular Residual Matching (monoResMatch) network.
116 stars 20 forks source link

Doesnt this have dedicated input layer? #5

Closed ErenBalatkan closed 5 years ago

ErenBalatkan commented 5 years ago

I am trying to use this project for estimating depth of vehicles under traffic, but im failing to see how i am supposed to give input frames to this network, from inspecting your code, you guys seem to be giving inputs to network during network creation and not via placeholders and feed dicts

image

mattpoggi commented 5 years ago

Hi @Navhkrin , the input node self.left given to the network is directly fed by the dataloader. You can replace it with a placeholder as well, but this is usually slower.