File tree Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -15,15 +15,9 @@ void MaskRCNNProposalLayer<Dtype>::LayerSetUp(
1515 CHECK_EQ (bottom.size (), 3 ) << " Only input 3 Tensors at a time!" ;
1616 CHECK_EQ (top.size (), 1 ) << " Only output one Tensor at a time!" ;
1717
18- int height = 1024 ;
19- if (this ->layer_param_ .maskrcnn_proposal_param ().height () != NULL ) {
20- height = this ->layer_param_ .maskrcnn_proposal_param ().height ();
21- }
22-
23- int width = 1024 ;
24- if (this ->layer_param_ .maskrcnn_proposal_param ().width () != NULL ) {
25- width = this ->layer_param_ .maskrcnn_proposal_param ().width ();
26- }
18+ // int height = this->layer_param_.maskrcnn_proposal_param().height();
19+ // int width = this->layer_param_.maskrcnn_proposal_param().width();
20+
2721
2822 rpn_bbox_std_dev.clear ();
2923 std::copy (
You can’t perform that action at this time.
0 commit comments