cnn_depth_tensorflow icon indicating copy to clipboard operation
cnn_depth_tensorflow copied to clipboard

depth estimation using tensorflow

Results 14 cnn_depth_tensorflow issues
Sort by recently updated
recently updated
newest added

My output images are all black now, and I have fixed the problem in issue #3 , but I don't know how to deal with the issue #1 , will...

Dear sir, I wonder if you have the pretrained model on KITTI?

In the prepare_data.py line 40 if not os.path.exists('train.csv'): os.remove('train.csv') Is this corrent? When I run the program for the first time, it told me train.csv no such file exists.

I get an error while running the task.py file variables_averages_op = variable_averages.apply(tf.trainable_variables()) File "/anaconda3/lib/python3.6/site-packages/tensorflow/python/training/moving_averages.py", line 393, in apply var.name) TypeError: The variables must be half, float, or double: Variable:0

According to the paper, we need to train the coarse layers at first, and than fix it and train the refine part. And I think in this code, we only...

Hi again, In the file model.py at line 46, shouldn't: `cost = tf.reduce_mean(sum_square_d / 55.0*74.0 - 0.5*sqare_sum_d / math.pow(55*74, 2))` be replaced by `cost = tf.reduce_mean(sum_square_d / (55.0*74.0) - 0.5*sqare_sum_d...

Where are the coarse data while training? The coarse folder is empty.

Hi, how can I run the trained model directly?

Hello, Can anybody please tell how to run the trained model on new images? Regards, Arnab Banerjee

Hi, First of all, thanks for this really clean and easy to read code. I tried to train the network using task.py but I have several questions: - are the...