bwcxa

Results 1 comments of bwcxa

### 可以查看roi_forward核函数:每一个batch都调用了N * C *7 * 7个线程并行处理,即每个b_box的每个通道都用49个threads。 - 首先是对b_box的四条边分别乘以缩放的尺度(spatial_scale),然后再取四舍五入(round)的结果对应到feature map中 ``` const int roi_start_w = round(bottom_rois[num * 5 + 1] * spatial_scale); //x_min const int roi_start_h = round(bottom_rois[num * 5...