Code Monkey home page Code Monkey logo

Comments (11)

Xiangxu-0103 avatar Xiangxu-0103 commented on August 21, 2024

Hi @ymlzOvO, you can save the predictions offline for visualization. We visualize the results along BEV and range image, which has not been fully supported in mmdet3d.

Moreover, we will provide a script to visualize the results in the future (due to busy recently).

from frnet.

ymlzOvO avatar ymlzOvO commented on August 21, 2024

Hi @ymlzOvO, you can save the predictions offline for visualization. We visualize the results along BEV and range image, which has not been fully supported in mmdet3d.

Moreover, we will provide a script to visualize the results in the future (due to busy recently).

@Xiangxu-0103 Thank you! I've finished saving the results as .label just like ground truth. Also, I use Det3DLocalVisualizer() to display in a static way. Could you tell me more details about realizing your demo video using BEV and range image...what library, documents, or codebase should I refer to? Thanks again!

from frnet.

Wansit99 avatar Wansit99 commented on August 21, 2024

Hi @ymlzOvO, you can save the predictions offline for visualization. We visualize the results along BEV and range image, which has not been fully supported in mmdet3d.
Moreover, we will provide a script to visualize the results in the future (due to busy recently).

@Xiangxu-0103 Thank you! I've finished saving the results as .label just like ground truth. Also, I use Det3DLocalVisualizer() to display in a static way. Could you tell me more details about realizing your demo video using BEV and range image...what library, documents, or codebase should I refer to? Thanks again!

Hello! I've also been working on visualizing results recently. May I share your code for saving the results? Thank you!

from frnet.

ymlzOvO avatar ymlzOvO commented on August 21, 2024

Hi @ymlzOvO, you can save the predictions offline for visualization. We visualize the results along BEV and range image, which has not been fully supported in mmdet3d.
Moreover, we will provide a script to visualize the results in the future (due to busy recently).

@Xiangxu-0103 Thank you! I've finished saving the results as .label just like ground truth. Also, I use Det3DLocalVisualizer() to display in a static way. Could you tell me more details about realizing your demo video using BEV and range image...what library, documents, or codebase should I refer to? Thanks again!

Hello! I've also been working on visualizing results recently. May I share your code for saving the results? Thank you!

Hi, I just take inference from #13 , there's the codes you need. For a static display, I use the template given in mmdet3d, but i don't how to make it be dynamic...

import numpy as np

from mmdet3d.visualization import Det3DLocalVisualizer

points = np.fromfile('demo/data/sunrgbd/000017.bin', dtype=np.float32)
points = points.reshape(-1, 3)
visualizer = Det3DLocalVisualizer()
mask = np.random.rand(points.shape[0], 3)
points_with_mask = np.concatenate((points, mask), axis=-1)
visualizer.set_points(points, pcd_mode=2, vis_mode='add')
visualizer.draw_seg_mask(points_with_mask)
visualizer.show()

from frnet.

Wansit99 avatar Wansit99 commented on August 21, 2024

Hi @ymlzOvO, you can save the predictions offline for visualization. We visualize the results along BEV and range image, which has not been fully supported in mmdet3d.
Moreover, we will provide a script to visualize the results in the future (due to busy recently).

@Xiangxu-0103 Thank you! I've finished saving the results as .label just like ground truth. Also, I use Det3DLocalVisualizer() to display in a static way. Could you tell me more details about realizing your demo video using BEV and range image...what library, documents, or codebase should I refer to? Thanks again!

Hello! I've also been working on visualizing results recently. May I share your code for saving the results? Thank you!

Hi, I just take inference from #13 , there's the codes you need. For a static display, I use the template given in mmdet3d, but i don't how to make it be dynamic...

import numpy as np

from mmdet3d.visualization import Det3DLocalVisualizer

points = np.fromfile('demo/data/sunrgbd/000017.bin', dtype=np.float32)
points = points.reshape(-1, 3)
visualizer = Det3DLocalVisualizer()
mask = np.random.rand(points.shape[0], 3)
points_with_mask = np.concatenate((points, mask), axis=-1)
visualizer.set_points(points, pcd_mode=2, vis_mode='add')
visualizer.draw_seg_mask(points_with_mask)
visualizer.show()

Thank you for your response. However, I am still not quite clear on how to save the results from a network as a .label file. Could you provide more detailed information? Thank you!

from frnet.

ymlzOvO avatar ymlzOvO commented on August 21, 2024

Hi @ymlzOvO, you can save the predictions offline for visualization. We visualize the results along BEV and range image, which has not been fully supported in mmdet3d.
Moreover, we will provide a script to visualize the results in the future (due to busy recently).

@Xiangxu-0103 Thank you! I've finished saving the results as .label just like ground truth. Also, I use Det3DLocalVisualizer() to display in a static way. Could you tell me more details about realizing your demo video using BEV and range image...what library, documents, or codebase should I refer to? Thanks again!

Hello! I've also been working on visualizing results recently. May I share your code for saving the results? Thank you!

Hi, I just take inference from #13 , there's the codes you need. For a static display, I use the template given in mmdet3d, but i don't how to make it be dynamic...

import numpy as np

from mmdet3d.visualization import Det3DLocalVisualizer

points = np.fromfile('demo/data/sunrgbd/000017.bin', dtype=np.float32)
points = points.reshape(-1, 3)
visualizer = Det3DLocalVisualizer()
mask = np.random.rand(points.shape[0], 3)
points_with_mask = np.concatenate((points, mask), axis=-1)
visualizer.set_points(points, pcd_mode=2, vis_mode='add')
visualizer.draw_seg_mask(points_with_mask)
visualizer.show()

Thank you for your response. However, I am still not quite clear on how to save the results from a network as a .label file. Could you provide more detailed information? Thank you!

In the config file frnet-semantickitti_seg.py, there's a line to assign test_evaluator = dict(type='SegMetric'), you should register a new one like in #13 , and use it instead of the default one.

from frnet.

Wansit99 avatar Wansit99 commented on August 21, 2024

Hi @ymlzOvO, you can save the predictions offline for visualization. We visualize the results along BEV and range image, which has not been fully supported in mmdet3d.
Moreover, we will provide a script to visualize the results in the future (due to busy recently).

@Xiangxu-0103 Thank you! I've finished saving the results as .label just like ground truth. Also, I use Det3DLocalVisualizer() to display in a static way. Could you tell me more details about realizing your demo video using BEV and range image...what library, documents, or codebase should I refer to? Thanks again!

Hello! I've also been working on visualizing results recently. May I share your code for saving the results? Thank you!

Hi, I just take inference from #13 , there's the codes you need. For a static display, I use the template given in mmdet3d, but i don't how to make it be dynamic...

import numpy as np

from mmdet3d.visualization import Det3DLocalVisualizer

points = np.fromfile('demo/data/sunrgbd/000017.bin', dtype=np.float32)
points = points.reshape(-1, 3)
visualizer = Det3DLocalVisualizer()
mask = np.random.rand(points.shape[0], 3)
points_with_mask = np.concatenate((points, mask), axis=-1)
visualizer.set_points(points, pcd_mode=2, vis_mode='add')
visualizer.draw_seg_mask(points_with_mask)
visualizer.show()

Thank you for your response. However, I am still not quite clear on how to save the results from a network as a .label file. Could you provide more detailed information? Thank you!

In the config file frnet-semantickitti_seg.py, there's a line to assign test_evaluator = dict(type='SegMetric'), you should register a new one like in #13 , and use it instead of the default one.

Thanks!I will try it

from frnet.

Wansit99 avatar Wansit99 commented on August 21, 2024

Hi @ymlzOvO, you can save the predictions offline for visualization. We visualize the results along BEV and range image, which has not been fully supported in mmdet3d.
Moreover, we will provide a script to visualize the results in the future (due to busy recently).

@Xiangxu-0103 Thank you! I've finished saving the results as .label just like ground truth. Also, I use Det3DLocalVisualizer() to display in a static way. Could you tell me more details about realizing your demo video using BEV and range image...what library, documents, or codebase should I refer to? Thanks again!

Hello! I've also been working on visualizing results recently. May I share your code for saving the results? Thank you!

Hi, I just take inference from #13 , there's the codes you need. For a static display, I use the template given in mmdet3d, but i don't how to make it be dynamic...

import numpy as np

from mmdet3d.visualization import Det3DLocalVisualizer

points = np.fromfile('demo/data/sunrgbd/000017.bin', dtype=np.float32)
points = points.reshape(-1, 3)
visualizer = Det3DLocalVisualizer()
mask = np.random.rand(points.shape[0], 3)
points_with_mask = np.concatenate((points, mask), axis=-1)
visualizer.set_points(points, pcd_mode=2, vis_mode='add')
visualizer.draw_seg_mask(points_with_mask)
visualizer.show()

Thank you for your response. However, I am still not quite clear on how to save the results from a network as a .label file. Could you provide more detailed information? Thank you!

In the config file frnet-semantickitti_seg.py, there's a line to assign test_evaluator = dict(type='SegMetric'), you should register a new one like in #13 , and use it instead of the default one.

But when I try it, it looks that, how can i solve it? Thanks!

#map_inv = self.dataset_meta['learning_map_inv'] #inv mapping
#KeyError: 'learning_map_inv'

from frnet.

ymlzOvO avatar ymlzOvO commented on August 21, 2024

Hi @ymlzOvO, you can save the predictions offline for visualization. We visualize the results along BEV and range image, which has not been fully supported in mmdet3d.
Moreover, we will provide a script to visualize the results in the future (due to busy recently).

@Xiangxu-0103 Thank you! I've finished saving the results as .label just like ground truth. Also, I use Det3DLocalVisualizer() to display in a static way. Could you tell me more details about realizing your demo video using BEV and range image...what library, documents, or codebase should I refer to? Thanks again!

Hello! I've also been working on visualizing results recently. May I share your code for saving the results? Thank you!

Hi, I just take inference from #13 , there's the codes you need. For a static display, I use the template given in mmdet3d, but i don't how to make it be dynamic...

import numpy as np

from mmdet3d.visualization import Det3DLocalVisualizer

points = np.fromfile('demo/data/sunrgbd/000017.bin', dtype=np.float32)
points = points.reshape(-1, 3)
visualizer = Det3DLocalVisualizer()
mask = np.random.rand(points.shape[0], 3)
points_with_mask = np.concatenate((points, mask), axis=-1)
visualizer.set_points(points, pcd_mode=2, vis_mode='add')
visualizer.draw_seg_mask(points_with_mask)
visualizer.show()

Thank you for your response. However, I am still not quite clear on how to save the results from a network as a .label file. Could you provide more detailed information? Thank you!

In the config file frnet-semantickitti_seg.py, there's a line to assign test_evaluator = dict(type='SegMetric'), you should register a new one like in #13 , and use it instead of the default one.

But when I try it, it looks that, how can i solve it? Thanks!

#map_inv = self.dataset_meta['learning_map_inv'] #inv mapping #KeyError: 'learning_map_inv'

use 'label_mapping' instead

from frnet.

Wansit99 avatar Wansit99 commented on August 21, 2024

Hi @ymlzOvO, you can save the predictions offline for visualization. We visualize the results along BEV and range image, which has not been fully supported in mmdet3d.
Moreover, we will provide a script to visualize the results in the future (due to busy recently).

@Xiangxu-0103 Thank you! I've finished saving the results as .label just like ground truth. Also, I use Det3DLocalVisualizer() to display in a static way. Could you tell me more details about realizing your demo video using BEV and range image...what library, documents, or codebase should I refer to? Thanks again!

Hello! I've also been working on visualizing results recently. May I share your code for saving the results? Thank you!

Hi, I just take inference from #13 , there's the codes you need. For a static display, I use the template given in mmdet3d, but i don't how to make it be dynamic...

import numpy as np

from mmdet3d.visualization import Det3DLocalVisualizer

points = np.fromfile('demo/data/sunrgbd/000017.bin', dtype=np.float32)
points = points.reshape(-1, 3)
visualizer = Det3DLocalVisualizer()
mask = np.random.rand(points.shape[0], 3)
points_with_mask = np.concatenate((points, mask), axis=-1)
visualizer.set_points(points, pcd_mode=2, vis_mode='add')
visualizer.draw_seg_mask(points_with_mask)
visualizer.show()

Thank you for your response. However, I am still not quite clear on how to save the results from a network as a .label file. Could you provide more detailed information? Thank you!

In the config file frnet-semantickitti_seg.py, there's a line to assign test_evaluator = dict(type='SegMetric'), you should register a new one like in #13 , and use it instead of the default one.

But when I try it, it looks that, how can i solve it? Thanks!
#map_inv = self.dataset_meta['learning_map_inv'] #inv mapping #KeyError: 'learning_map_inv'

use 'label_mapping' instead

Thank you for sharing, I have successfully saved the results. May I add your personal contact information? I am also currently researching FRNet, can we communicate and discuss together!

from frnet.

xiaosa269 avatar xiaosa269 commented on August 21, 2024

Hello,

Thank you very much for your contribution to the visualization of Val. I have now saved the .label files generated by the test. However, when I use the semantic-kitti-api(https://github.com/PRBonn/semantic-kitti-api) for visualization,

 python  ./visualize.py --sequence 11 --dataset /data/semantickitti_frnet/dataset --predictions /data/semantickitti_frnet/dataset

it shows that the number of labels does not match the number of points.
image

Have you encountered such an issue? If so, how did you resolve it?

from frnet.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.