All Projects → ZhijianJiang → DispNet-TensorFlow

ZhijianJiang / DispNet-TensorFlow

Licence: other
TensorFlow implementation of DispNet by Zhijian Jiang.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to DispNet-TensorFlow

dispflownet-tf
Tensorflow implementation of https://lmb.informatik.uni-freiburg.de/Publications/2016/MIFDB16 + pretrained weights + implementation of "Unsupervised Adaptation for Deep Stereo" (ICCV 2017)
Stars: ✭ 18 (-67.27%)
Mutual labels:  stereo-vision, dispnet-tensorflow
GTAV-Self-driving-car
Self driving car in GTAV with Deep Learning
Stars: ✭ 15 (-72.73%)
Mutual labels:  convolutional-networks
Antialiased Cnns
Repository has been moved: https://github.com/adobe/antialiased-cnns
Stars: ✭ 169 (+207.27%)
Mutual labels:  convolutional-networks
Ssd Variants
PyTorch implementation of several SSD based object detection algorithms.
Stars: ✭ 233 (+323.64%)
Mutual labels:  convolutional-networks
Affnet
Code and weights for local feature affine shape estimation paper "Repeatability Is Not Enough: Learning Discriminative Affine Regions via Discriminability"
Stars: ✭ 191 (+247.27%)
Mutual labels:  convolutional-networks
SemiDenseNet
Repository containing the code of one of the networks that we employed in the iSEG Grand MICCAI Challenge 2017, infant brain segmentation.
Stars: ✭ 55 (+0%)
Mutual labels:  convolutional-networks
Deblurgan
Image Deblurring using Generative Adversarial Networks
Stars: ✭ 2,033 (+3596.36%)
Mutual labels:  convolutional-networks
RoboVision
Attempting to create a program capable of combining stereo video input , with motors and other sensors on a PC running linux , the target is embedded linux for use in a robot!
Stars: ✭ 21 (-61.82%)
Mutual labels:  stereo-vision
deeplearning-papernotes
No description or website provided.
Stars: ✭ 22 (-60%)
Mutual labels:  convolutional-networks
Ml Workspace
Machine Learning (Beginners Hub), information(courses, books, cheat sheets, live sessions) related to machine learning, data science and python is available
Stars: ✭ 221 (+301.82%)
Mutual labels:  convolutional-networks
Fcn
Chainer Implementation of Fully Convolutional Networks. (Training code to reproduce the original result is available.)
Stars: ✭ 211 (+283.64%)
Mutual labels:  convolutional-networks
Squeeze and excitation
PyTorch Implementation of 2D and 3D 'squeeze and excitation' blocks for Fully Convolutional Neural Networks
Stars: ✭ 192 (+249.09%)
Mutual labels:  convolutional-networks
semi-global-matching
Semi-Global Matching
Stars: ✭ 122 (+121.82%)
Mutual labels:  stereo-vision
Naszilla
Naszilla is a Python library for neural architecture search (NAS)
Stars: ✭ 181 (+229.09%)
Mutual labels:  convolutional-networks
Colorizing With Gans
Grayscale Image Colorization with Generative Adversarial Networks. https://arxiv.org/abs/1803.05400
Stars: ✭ 209 (+280%)
Mutual labels:  convolutional-networks
Tf Adnet Tracking
Deep Object Tracking Implementation in Tensorflow for 'Action-Decision Networks for Visual Tracking with Deep Reinforcement Learning(CVPR 2017)'
Stars: ✭ 162 (+194.55%)
Mutual labels:  convolutional-networks
Good Papers
I try my best to keep updated cutting-edge knowledge in Machine Learning/Deep Learning and Natural Language Processing. These are my notes on some good papers
Stars: ✭ 248 (+350.91%)
Mutual labels:  convolutional-networks
EDANet
Implementation details for EDANet
Stars: ✭ 34 (-38.18%)
Mutual labels:  convolutional-networks
LSUV-pytorch
Simple implementation of the LSUV initialization in PyTorch
Stars: ✭ 51 (-7.27%)
Mutual labels:  convolutional-networks
temporal-binding-network
Implementation of "EPIC-Fusion: Audio-Visual Temporal Binding for Egocentric Action Recognition, ICCV, 2019" in PyTorch
Stars: ✭ 95 (+72.73%)
Mutual labels:  convolutional-networks

DispNet-TensorFlow

TensorFlow implementation of A Large Dataset to Train Convolutional Networks for Disparity, Optical Flow, and Scene Flow Estimation by Zhijian Jiang.

Dataset

Tutorials

TensorFlow

Network

Convolutional Network

Name Kernel Strides Channels I/O Input Resolution Output Resolution Input
conv1 7 * 7 1 6/64 1536 * 768 768 * 384 Images
max_pool1 2 * 2 2 64/64 1536 * 768 768 * 384 conv1
conv2 5 * 5 1 64/128 768 * 384 384 * 192 max_pool1
max_pool2 2 * 2 2 128/128 768 * 384 384 * 192 conv2
conv3a 5 * 5 1 128/256 384 * 192 192 * 96 max_pool2
max_pool3 2 * 2 2 256/256 384 * 192 192 * 96 conv3a
conv3b 3 * 3 1 256/256 192 * 96 192 * 96 max_pool3
conv4a 5 * 5 1 256/512 192 * 96 96 * 48 conv3b
max_pool4 2 * 2 2 512/512 96 * 48 96 * 48 conv4a
conv4b 3 * 3 1 512/512 96 * 48 96 * 48 max_pool4
conv5a 5 * 5 1 512/512 96 * 48 48 * 24 conv4b
max_pool5 2 * 2 2 512/512 48 * 24 48 * 24 conv5a
conv5b 3 * 3 1 512/512 48 * 24 48 * 24 max_pool5
conv6a 5 * 5 1 512/512 48 * 24 24 * 12 conv5b
max_pool6 2 * 2 2 1024/1024 24 * 12 24 * 12 conv6a
conv6b 3 * 3 1 1024/1024 24 * 12 24 * 12 max_pool6
pr6 + loss6 3 * 3 1 1024/1 24 * 12 24 * 12 conv6b

Upconvolutional Network

Name Kernel Strides Channels I/O Input Resolution Output Resolution Input
upconv5 4 * 4 2 1024/512 24 * 12 48 * 24 conv6b
iconv5 3 * 3 1 1024/512 48 * 24 48 * 24 upconv5 + conv5b
pr5+loss5 3 * 3 1 512/1 48 * 24 48 * 24 iconv5
upconv4 4 * 4 2 512/256 48 * 24 96 * 48 iconv5
iconv4 3 * 3 1 768/256 96 * 48 96 * 48 upconv4 + conv4b
pr4+loss4 3 * 3 1 512/1 96 * 48 96 * 48 iconv4
upconv3 4 * 4 2 256/128 96 * 48 192 * 96 iconv4
iconv3 3 * 3 1 384/128 192 * 96 192 * 96 upconv3 + conv3b
pr3+loss3 3 * 3 1 128/1 192 * 96 192 * 96 iconv3
upconv2 4 * 4 2 128/64 192 * 96 384 * 192 iconv3
iconv2 3 * 3 1 192/64 384 * 192 384 * 192 upconv2 + conv2
pr2+loss2 3 * 3 1 64/1 384 * 192 384 * 192 iconv2
upconv1 4 * 4 2 64/32 384 * 192 768 * 384 iconv2
iconv1 3 * 3 1 96/32 768 * 384 768 * 384 upconv1 + conv1
pr1+loss1 3 * 3 1 32/1 768 * 384 768 * 384 iconv1

Issues

  • How to input png images:

     contents = ''
     with open('path/to/image.jpeg') as f:
    		contents = f.read()
     tf.image.decode_jpeg(contents) 
    
     reader = tf.WholeFileReader(http://stackoverflow.com/questions/34340489/tensorflow-read-images-with-labels)
     key, value = reader.read(filename_queue)
     example = tf.image.decode_png(value)
    
     file_contents = tf.read_file(input_queue[0])
     example = tf.image.decode_png(file_contents, channels=3)
    
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].