DA-RNN icon indicating copy to clipboard operation
DA-RNN copied to clipboard

How to see the 3D Semantic Scene?

Open Dinghow opened this issue 6 years ago • 0 comments

I've installed all the dependencies and successfully trained and tested this project (which took me a huge effort). However, I wonder how to show the semantic scene like your illustration:

I set the argument --kfusion=True when I run test_net.py, It helps noting, and I see the code is:

    if args.kfusion:
        gpu_options = tf.GPUOptions(per_process_gpu_memory_fraction=0.2)
        sess = tf.Session(config=tf.ConfigProto(allow_soft_placement=True, gpu_options=gpu_options))
    else:
        sess = tf.Session(config=tf.ConfigProto(allow_soft_placement=True))

How's it works, and how can I get the semantic scene?

Dinghow avatar May 27 '19 14:05 Dinghow