Giter Site home page Giter Site logo

Comments (1)

OuyangJunyuan avatar OuyangJunyuan commented on July 21, 2024

Sry for the late reply.
To run sampler sperately, you can refer to this repo for pytorch version implementation of HAVS.
There is a simple unit test script that shows how to use our sampler:

import unittest
import torch
import open3d
import numpy as np
from rd3d.models.backbones_3d.pfe.ops import SAMPLERS

visualize = False


def add_masked_color(vis, p1, c1):
    from rd3d.utils.viz_utils import add_points
    if vis:
        point = p1.cpu().detach().numpy()
        color = np.array([c1]).repeat(point.shape[0], axis=0)
        add_points(vis, point, color)


class TestSampler(unittest.TestCase):
    @classmethod
    def setUpClass(cls):
        cls.xyz, cls.bid, cls.boxes = torch.load("tests/data/sampler/xyz_bid_16384x8.cache")
        print(f"xyz: {cls.xyz.shape}")
        print(f"bid: {cls.bid.shape}")
        print(f"box: {cls.boxes.shape}")
        cls.vis = None

    def setUp(self) -> None:
        if visualize:
            self.vis = open3d.visualization.Visualizer()
            self.vis.create_window(window_name=self._testMethodName)
            self.vis.get_render_option().point_size = 1.0
            self.vis.get_render_option().background_color = np.ones(3) * 0.1
            axis_pcd = open3d.geometry.TriangleMesh.create_coordinate_frame(size=10.0, origin=[0, 0, 0])
            self.vis.clear_geometries()
            self.vis.add_geometry(axis_pcd)

    def tearDown(self) -> None:
        if visualize:
            self.vis.run()
            self.vis.destroy_window()

    def test_0_select(self):
        s = SAMPLERS.build_from_cfg(dict(name="select", sample=[0, 4096]))
        indices = s(self.xyz)
        add_masked_color(self.vis, self.xyz[-1], [0.2, 0.2, 0.2])
        add_masked_color(self.vis, self.xyz[-1, indices[-1]], [1, 0.2, 0.2])

    def test_1_rps(self):
        s = SAMPLERS.build_from_cfg(dict(name="rps", sample=4096))
        indices = s(self.xyz)
        add_masked_color(self.vis, self.xyz[-1], [0.2, 0.2, 0.2])
        add_masked_color(self.vis, self.xyz[-1, indices[-1]], [1, 0.2, 0.2])

    def test_2_rvs(self):
        s1 = SAMPLERS.build_from_cfg(dict(name="rvs", sample=4096, voxel=[0.4, 0.4, 0.3],
                                          coors_range=[0, -40, -3, 70.4, 40, 1],
                                          channel=3, pool='rand', max_pts_per_voxel=5))
        s2 = SAMPLERS.build_from_cfg(dict(name="rvs", sample=4096, voxel=[0.4, 0.4, 0.3],
                                          coors_range=[0, -40, -3, 70.4, 40, 1],
                                          channel=3, pool='mean', max_pts_per_voxel=5))

        xyz_1 = s1(self.xyz)
        xyz_2 = s2(self.xyz)
        add_masked_color(self.vis, self.xyz[-1], [0.2, 0.2, 0.2])
        add_masked_color(self.vis, xyz_1[-1], [1, 0.2, 0.2])

    def test_2_rvs_adaptive(self):
        s3 = SAMPLERS.build_from_cfg(dict(name="rvs", sample=4096, voxel=[0.4, 0.4, 0.3],
                                          coors_range=[0, -40, -3, 70.4, 40, 1],
                                          channel=3, pool='mean', max_pts_per_voxel=5, adaptive=True))

        xyz_3 = s3(self.xyz)
        add_masked_color(self.vis, self.xyz[-1], [0.2, 0.2, 0.2])
        add_masked_color(self.vis, xyz_3[-1], [1, 0.2, 0.2])

    def test_3_d_fps(self):
        s = SAMPLERS.build_from_cfg(dict(name="d-fps", sample=4096))
        indices = s(self.xyz)
        add_masked_color(self.vis, self.xyz[-1], [0.2, 0.2, 0.2])
        add_masked_color(self.vis, self.xyz[-1, indices[-1]], [1, 0.2, 0.2])

    def test_4_f_fps(self):
        s = SAMPLERS.build_from_cfg(dict(name="f-fps", sample=1024, gamma=1.0))
        mlps = torch.nn.Linear(in_features=3, out_features=32, device=self.xyz.device)
        xyz = self.xyz[:, :4096].contiguous()
        feats = mlps(xyz)
        indices = s(xyz, feats)
        add_masked_color(self.vis, self.xyz[-1], [0.2, 0.2, 0.2])
        add_masked_color(self.vis, self.xyz[-1, indices[-1]], [1, 0.2, 0.2])

    def test_5_s_fps(self):
        s = SAMPLERS.build_from_cfg(dict(name="s-fps", sample=1024, gamma=1.0, mlps=[32],
                                         train=dict(target={'set_ignore_flag': True, 'extra_width': [1.0, 1.0, 1.0]},
                                                    loss={'weight': 0.01, 'tb_tag': 'sasa_1'})
                                         ), input_channels=32)
        s.train()
        s.to(self.xyz.device)
        mlps = torch.nn.Linear(in_features=3, out_features=32, device=self.xyz.device)
        xyz = self.xyz[:, :4096].contiguous()
        feats = mlps(xyz)
        indices = s(xyz, feats)
        batch_dict = dict(gt_boxes=self.boxes)
        s.assign_targets(batch_dict)
        loss = s.get_loss({})
        add_masked_color(self.vis, self.xyz[-1], [0.2, 0.2, 0.2])
        add_masked_color(self.vis, self.xyz[-1, indices[-1]], [1, 0.2, 0.2])

    def test_6_ctr(self):
        s = SAMPLERS.build_from_cfg(dict(name='ctr', range=[0, 512], sample=256, mlps=[256],
                                         class_names=['Car', 'Pedestrian', 'Cyclist'],
                                         train=dict(target={'extra_width': [0.5, 0.5, 0.5]},
                                                    loss={'weight': 1.0, 'tb_tag': 'sasa_2'})
                                         ), input_channels=32)
        s.train()
        s.to(self.xyz.device)
        mlps = torch.nn.Linear(in_features=3, out_features=32, device=self.xyz.device)
        xyz = self.xyz[:, :4096].contiguous()
        feats = mlps(xyz)
        indices = s(xyz, feats)
        batch_dict = dict(gt_boxes=self.boxes)
        s.assign_targets(batch_dict)
        loss = s.get_loss({})
        add_masked_color(self.vis, self.xyz[-1], [0.2, 0.2, 0.2])
        add_masked_color(self.vis, self.xyz[-1, indices[-1]], [1, 0.2, 0.2])

    def test_7_havs(self):
        s = SAMPLERS.build_from_cfg(dict(name='havs', sample=4096, voxel=[0.4, 0.4, 0.35]))
        indices = s(self.xyz)
        print((indices!=0).sum())
        add_masked_color(self.vis, self.xyz[-1], [0.2, 0.2, 0.2])
        add_masked_color(self.vis, self.xyz[-1, indices[-1]], [1, 0.2, 0.2])


if __name__ == '__main__':
    unittest.main()

from pointcloud-3d-detector-tensorrt.

Related Issues (8)

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.