Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PointRCNN ops #3021

Merged
merged 13 commits into from
Feb 16, 2021
328 changes: 328 additions & 0 deletions cpp/open3d/ml/contrib/RoIPoolKernel.cu
Original file line number Diff line number Diff line change
@@ -0,0 +1,328 @@
//***************************************************************************************/
//
// Based on PointRCNN Library (MIT License):
// https://github.com/sshaoshuai/PointRCNN
//
// Copyright (c) 2019 Shaoshuai Shi
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
//
//***************************************************************************************/

#include <math.h>
#include <stdio.h>

#include "open3d/ml/contrib/RoIPoolKernel.h"

namespace open3d {
namespace ml {
namespace contrib {

#define THREADS_PER_BLOCK 256
#define DIVUP(m, n) ((m) / (n) + ((m) % (n) > 0))

__device__ inline int pt_in_box3d(float x,
float y,
float z,
float cx,
float bottom_y,
float cz,
float h,
float w,
float l,
float angle,
float max_dis) {
float x_rot, z_rot, cosa, sina, cy;
int in_flag;
cy = bottom_y - h / 2.0;
if ((fabsf(x - cx) > max_dis) || (fabsf(y - cy) > h / 2.0) ||
(fabsf(z - cz) > max_dis)) {
return 0;
}
cosa = cos(angle);
sina = sin(angle);
x_rot = (x - cx) * cosa + (z - cz) * (-sina);
z_rot = (x - cx) * sina + (z - cz) * cosa;

in_flag = (x_rot >= -l / 2.0) & (x_rot <= l / 2.0) & (z_rot >= -w / 2.0) &
(z_rot <= w / 2.0);
return in_flag;
}

__global__ void roipool3d_forward(int batch_size,
int pts_num,
int boxes_num,
int feature_in_len,
int sampled_pts_num,
const float *xyz,
const float *boxes3d,
const float *pts_feature,
float *pooled_features,
int *pooled_empty_flag) {
// params xyz: (B, N, 3)
// params boxes3d: (B, M, 7)
// params pts_feature: (B, N, C)
// params pooled_features: (B, M, 512, 3+C)
// params pooled_empty_flag: (B, M)

int boxes_idx = blockIdx.x * blockDim.x + threadIdx.x;
if (boxes_idx >= boxes_num) {
return;
}

for (int i = 0; i < batch_size; i++) {
int cnt = 0;
for (int k = 0; k < pts_num; k++) {
int pt_offset = i * pts_num * 3 + k * 3;
int box_offset = i * boxes_num * 7 + boxes_idx * 7;

int cur_in_flag = pt_in_box3d(
xyz[pt_offset], xyz[pt_offset + 1], xyz[pt_offset + 2],
boxes3d[box_offset], boxes3d[box_offset + 1],
boxes3d[box_offset + 2], boxes3d[box_offset + 3],
boxes3d[box_offset + 4], boxes3d[box_offset + 5],
boxes3d[box_offset + 6], 10.0);
if (cur_in_flag) {
if (cnt < sampled_pts_num) {
int feature_out_offset =
i * boxes_num * sampled_pts_num *
(3 + feature_in_len) +
boxes_idx * sampled_pts_num * (3 + feature_in_len) +
cnt * (3 + feature_in_len);

int feature_in_offset =
i * pts_num * feature_in_len + k * feature_in_len;

// copy xyz
for (int j = 0; j < 3; j++)
pooled_features[feature_out_offset + j] =
xyz[pt_offset + j];

// copy feature
for (int j = 0; j < feature_in_len; j++)
pooled_features[feature_out_offset + 3 + j] =
pts_feature[feature_in_offset + j];

cnt++;
} else
break;
}
}

if (cnt == 0) {
pooled_empty_flag[i * boxes_num + boxes_idx] = 1;
} else if (cnt < sampled_pts_num) {
// duplicate same points for sampling
for (int k = cnt; k < sampled_pts_num; k++) {
int duplicate_idx = k % cnt;
int src_offset =
i * boxes_num * sampled_pts_num * (3 + feature_in_len) +
boxes_idx * sampled_pts_num * (3 + feature_in_len) +
duplicate_idx * (3 + feature_in_len);
int dst_offset =
i * boxes_num * sampled_pts_num * (3 + feature_in_len) +
boxes_idx * sampled_pts_num * (3 + feature_in_len) +
k * (3 + feature_in_len);
for (int j = 0; j < 3 + feature_in_len; j++)
pooled_features[dst_offset + j] =
pooled_features[src_offset + j];
}
}
}
}

__global__ void assign_pts_to_box3d(int batch_size,
int pts_num,
int boxes_num,
const float *xyz,
const float *boxes3d,
int *pts_assign) {
// params xyz: (B, N, 3)
// params boxes3d: (B, M, 7)
// params pts_assign: (B, N, M): idx of the corresponding box3d, -1 means
// background points
int pt_idx = blockIdx.x * blockDim.x + threadIdx.x;
int box_idx = blockIdx.y;
int bs_idx = blockIdx.z;

if (pt_idx >= pts_num || box_idx >= boxes_num || bs_idx >= batch_size) {
return;
}
int assign_idx =
bs_idx * pts_num * boxes_num + pt_idx * boxes_num + box_idx;
pts_assign[assign_idx] = 0;

int box_offset = bs_idx * boxes_num * 7 + box_idx * 7;
int pt_offset = bs_idx * pts_num * 3 + pt_idx * 3;

int cur_in_flag =
pt_in_box3d(xyz[pt_offset], xyz[pt_offset + 1], xyz[pt_offset + 2],
boxes3d[box_offset], boxes3d[box_offset + 1],
boxes3d[box_offset + 2], boxes3d[box_offset + 3],
boxes3d[box_offset + 4], boxes3d[box_offset + 5],
boxes3d[box_offset + 6], 10.0);

pts_assign[assign_idx] = cur_in_flag;
// printf("bs=%d, pt=%d, in=%d\n", bs_idx, pt_idx, pts_assign[bs_idx *
// pts_num + pt_idx]);
}

__global__ void get_pooled_idx(int batch_size,
int pts_num,
int boxes_num,
int sampled_pts_num,
const int *pts_assign,
int *pts_idx,
int *pooled_empty_flag) {
// params xyz: (B, N, 3)
// params pts_feature: (B, N, C)
// params pts_assign: (B, N)
// params pts_idx: (B, M, 512)
// params pooled_empty_flag: (B, M)

int boxes_idx = blockIdx.x * blockDim.x + threadIdx.x;
if (boxes_idx >= boxes_num) {
return;
}

int bs_idx = blockIdx.y;

int cnt = 0;
for (int k = 0; k < pts_num; k++) {
if (pts_assign[bs_idx * pts_num * boxes_num + k * boxes_num +
boxes_idx]) {
if (cnt < sampled_pts_num) {
pts_idx[bs_idx * boxes_num * sampled_pts_num +
boxes_idx * sampled_pts_num + cnt] = k;
cnt++;
} else
break;
}
}

if (cnt == 0) {
pooled_empty_flag[bs_idx * boxes_num + boxes_idx] = 1;
} else if (cnt < sampled_pts_num) {
// duplicate same points for sampling
for (int k = cnt; k < sampled_pts_num; k++) {
int duplicate_idx = k % cnt;
int base_offset = bs_idx * boxes_num * sampled_pts_num +
boxes_idx * sampled_pts_num;
pts_idx[base_offset + k] = pts_idx[base_offset + duplicate_idx];
}
}
}

__global__ void roipool3d_forward(int batch_size,
int pts_num,
int boxes_num,
int feature_in_len,
int sampled_pts_num,
const float *xyz,
const int *pts_idx,
const float *pts_feature,
float *pooled_features,
int *pooled_empty_flag) {
// params xyz: (B, N, 3)
// params pts_idx: (B, M, 512)
// params pts_feature: (B, N, C)
// params pooled_features: (B, M, 512, 3+C)
// params pooled_empty_flag: (B, M)

int sample_pt_idx = blockIdx.x * blockDim.x + threadIdx.x;
int box_idx = blockIdx.y;
int bs_idx = blockIdx.z;

if (sample_pt_idx >= sampled_pts_num || box_idx >= boxes_num ||
bs_idx >= batch_size) {
return;
}

if (pooled_empty_flag[bs_idx * boxes_num + box_idx]) {
return;
}

int temp_idx = bs_idx * boxes_num * sampled_pts_num +
box_idx * sampled_pts_num + sample_pt_idx;
int src_pt_idx = pts_idx[temp_idx];
int dst_feature_offset = temp_idx * (3 + feature_in_len);

for (int j = 0; j < 3; j++)
pooled_features[dst_feature_offset + j] =
xyz[bs_idx * pts_num * 3 + src_pt_idx * 3 + j];

int src_feature_offset =
bs_idx * pts_num * feature_in_len + src_pt_idx * feature_in_len;
for (int j = 0; j < feature_in_len; j++)
pooled_features[dst_feature_offset + 3 + j] =
pts_feature[src_feature_offset + j];
}

void roipool3dLauncher(int batch_size,
int pts_num,
int boxes_num,
int feature_in_len,
int sampled_pts_num,
const float *xyz,
const float *boxes3d,
const float *pts_feature,
float *pooled_features,
int *pooled_empty_flag) {
// printf("batch_size=%d, pts_num=%d, boxes_num=%d\n", batch_size, pts_num,
// boxes_num);
int *pts_assign = NULL;
cudaMalloc(&pts_assign, batch_size * pts_num * boxes_num *
sizeof(int)); // (batch_size, N, M)
// cudaMemset(&pts_assign, -1, batch_size * pts_num * boxes_num *
// sizeof(int));

dim3 blocks(DIVUP(pts_num, THREADS_PER_BLOCK), boxes_num,
batch_size); // blockIdx.x(col), blockIdx.y(row)
dim3 threads(THREADS_PER_BLOCK);
assign_pts_to_box3d<<<blocks, threads>>>(batch_size, pts_num, boxes_num,
xyz, boxes3d, pts_assign);

int *pts_idx = NULL;
cudaMalloc(&pts_idx,
batch_size * boxes_num * sampled_pts_num *
sizeof(int)); // (batch_size, M, sampled_pts_num)

dim3 blocks2(DIVUP(boxes_num, THREADS_PER_BLOCK),
batch_size); // blockIdx.x(col), blockIdx.y(row)
get_pooled_idx<<<blocks2, threads>>>(batch_size, pts_num, boxes_num,
sampled_pts_num, pts_assign, pts_idx,
pooled_empty_flag);

dim3 blocks_pool(DIVUP(sampled_pts_num, THREADS_PER_BLOCK), boxes_num,
batch_size);
roipool3d_forward<<<blocks_pool, threads>>>(
batch_size, pts_num, boxes_num, feature_in_len, sampled_pts_num,
xyz, pts_idx, pts_feature, pooled_features, pooled_empty_flag);

cudaFree(pts_assign);
cudaFree(pts_idx);

#ifdef DEBUG
cudaDeviceSynchronize(); // for using printf in kernel function
#endif
}

} // namespace contrib
} // namespace ml
} // namespace open3d
50 changes: 50 additions & 0 deletions cpp/open3d/ml/contrib/RoIPoolKernel.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
//***************************************************************************************/
//
// Based on PointRCNN Library (MIT License):
// https://github.com/sshaoshuai/PointRCNN
//
// Copyright (c) 2019 Shaoshuai Shi
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
//
//***************************************************************************************/

#pragma once

namespace open3d {
namespace ml {
namespace contrib {

#ifdef BUILD_CUDA_MODULE

void roipool3dLauncher(int batch_size,
int pts_num,
int boxes_num,
int feature_in_len,
int sampled_pts_num,
const float *xyz,
const float *boxes3d,
const float *pts_feature,
float *pooled_features,
int *pooled_empty_flag);
#endif

} // namespace contrib
} // namespace ml
} // namespace open3d
Loading