dwjlw1314

Results 2 comments of dwjlw1314

mxnet 如何替换,有没有提示性质的建议

int AnchorGenerator::FilterAnchor(mxnet::cpp::NDArray& cls, mxnet::cpp::NDArray& reg, mxnet::cpp::NDArray& pts, std::vector& result) { assert(cls.GetShape()[1] == anchor_num*2); assert(reg.GetShape()[1] == anchor_num*4); int pts_length = 0; assert(pts.GetShape()[1] % anchor_num == 0); pts_length = pts.GetShape()[1]/anchor_num/2; int w...