Skip to content

Commit 47ac253

Browse files
committed
update
1 parent caa0323 commit 47ac253

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

FaceAlignment/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ This version is developed to detect five facial landmarks, i.e., two eyes' cente
3939
To detect these facial landmarks, one should first instantiate an object of `seeta::FaceAlignment` with path of the model file.
4040

4141
```c++
42-
seeta::FaceAlignment landmark_detector("seeta_fa_v1.0.dat");
42+
seeta::FaceAlignment landmark_detector("seeta_fa_v1.0.bin");
4343
```
4444
4545
Then one can call `PointDetectLandmarks(ImageData gray_im, FaceInfo face_info, FacialLandmark *points)` to detect landmarks.

FaceIdentification/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ of [OpenCV](http://opencv.org/) is correctly set.
3737

3838
The class for face identification is included in `seeta` namespace. To use the
3939
function of SeetaFace Identification, one should first instantiate an object of
40-
`seeta::FaceIdentification` with path of the model file.
40+
`seeta::FaceIdentification` with path of the model file. The model file seeta_fr_v1.0.bin can be achieved by unzipping the files seeta_fr_v1.0.part1.rar and seeta_fr_v1.0.part2.rar in [model](./model) directory.
4141

4242
```c++
4343
FaceIdentification face_recognizer("seeta_fr_v1.0.bin");

0 commit comments

Comments
 (0)