0
私は画像の中のランドマークの点を得るためにDlibライブラリを実装したiOsアプリケーションを開発しています。以下は私が実装したコードです。Dlib画像の読み込みエラー、画像を読み込むことができません
dlib::frontal_face_detector detector = dlib::get_frontal_face_detector();
dlib::shape_predictor shapePredictor;
NSBundle *mainBundle = [NSBundle mainBundle];
NSString *landmarkdat = [[NSString alloc] initWithFormat:@"%@/%s",
mainBundle.bundlePath,"shape_predictor_68_face_landmarks.dat"];
dlib::deserialize(landmarkdat.UTF8String) >> shapePredictor;
dlib::array2d<dlib::rgb_pixel> img;
dlib::load_image(img,"001.png");
しかし、私はXcodeの8.3でコードを実行すると、私はあなたが私のために働いているイメージのバンドルパスを指定する必要がありerror.dlib::image_load_error: Unable to open file
ファイルをインポートするときに** [必要に応じてアイテムをコピーする] **を確認してください。 –
ファイルをプロジェクトフォルダにコピーしました –