Giter Club home page Giter Club logo

retinaface-caffe's Introduction

Add mobilenet v2 0.25 with retinaface-cpp

The following to download all other converted models, mnetv1_25 and R50 are not converted by me. https://drive.google.com/open?id=1VoABSiHXiVlRCEryKtf3UG_BW9236UUp

RetinaFace-Cpp

RetinaFace detector with C++

official RetinaFace

I convert mobilenet-0.25 mxnet model (trained by yangfly) to caffe model

  • I have checked the output of the two models be the same.

  • For same input images, the output of the two detector (python version and cpp version) is same.

  • Haven't tested widerface yet, but it is in the plan.

(the code is too simple, only for reference 23333)

Please replace your own inference code (caffe/ncnn/feather .etc) in the source code

retinaface-caffe's People

Contributors

charrin avatar cholihao avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

retinaface-caffe's Issues

How to convert mxnet model to caffe?

Thanks for your work, Could you share your convert code? I try to convert it use mmdnn, but not work, if you not convenient, Could you give me some direction for it. I don't know how to process crop and upsampling layer. thx again.

error C2065: “anchor”: undeclared identifier

@cholihao
void AnchorGenerator::landmark_pred(const CRect2f anchor, const std::vectorcv::Point2f& delta, std::vectorcv::Point2f& pts) {
float w = anchor[2] - anchor[0] + 1;
float h = anchor[3] - anchor[1] + 1;
float x_ctr = anchor[0] + 0.5 * (w - 1);
float y_ctr = anchor[1] + 0.5 * (h - 1);
pts.resize(delta.size());
for (int i = 0; i < delta.size(); ++i) {
pts[i].x = (delta[i].x*w + x_ctr)ratiow;
pts[i].y = (delta[i].y
h + y_ctr)*ratioh;
}
}

about landmark

if (pts) {
			std::vector<cv::Point2f> pts_delta(pts_length);
			for (int p = 0; p < pts_length; ++p) {
			    pts_delta[p].x = pts->channel(0, a*pts_length*2+p*2)[id];
			    pts_delta[p].y = pts->channel(0, a*pts_length*2+p*2+1)[id];
			}
			printf("ready landmark_pred\n");
			landmark_pred(box, pts_delta, res.pts);
			printf("landmark_pred\n");
		    }
``` pts have no channel,  request for your help
I have succeed in running detect face, Do you succeed in predicting landmark? 

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.