error C2065: 'anet_type': undeclared identifier , any help on this #2787
Unanswered
ranjith502
asked this question in
Q&A
Replies: 1 comment 2 replies
-
|
That |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
iam trying emotion detection encountering below error any help
#include <dlib/dnn.h>
#include <dlib/gui_widgets.h>
#include <dlib/clustering.h>
#include <dlib/string.h>
#include <dlib/image_io.h>
#include <dlib/image_processing/frontal_face_detector.h>
using namespace dlib;
using namespace std;
int main()
{
try
{
// Load face detection model
frontal_face_detector detector = get_frontal_face_detector();
// Load shape predictor model
shape_predictor sp;
deserialize("shape_predictor_68_face_landmarks.dat") >> sp;
}
Beta Was this translation helpful? Give feedback.
All reactions