Skip to content

Commit ee78d30

Browse files
committed
add description of 19a compat
1 parent 495a855 commit ee78d30

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ _Note: This code supports inference using a pretrained model. Training from scra
1818
## Installation
1919

2020
- Face Detection and Alignment MTCNN requires the following products:
21-
- MATLAB R2019b or later
21+
- MATLAB R2019a or later (_now works in R2019a and later!_)
2222
- Deep Learning Toolbox
2323
- Computer Vision Toolbox
2424
- Image Processing Toolbox
@@ -65,10 +65,6 @@ _Face detection from MTCNN in yellow, detections from the built in vision.Cascad
6565

6666
## Contribute
6767

68-
Please file any bug reports or feature requests as [GitHub issues](https://github.com/matlab-deep-learning/mtcnn-face-detection/issues). In particular comment on the following two issues if they interest you!
69-
70-
- [Support training MTCNN](https://github.com/matlab-deep-learning/mtcnn-face-detection/issues/1)
71-
- [Support MATLAB versions earlier than R2019b](https://github.com/matlab-deep-learning/mtcnn-face-detection/issues/2)
72-
68+
Please file any bug reports or feature requests as [GitHub issues](https://github.com/matlab-deep-learning/mtcnn-face-detection/issues). In particular if you'd be interested in training your own MTCNN network comment on the following issue: [Support training MTCNN](https://github.com/matlab-deep-learning/mtcnn-face-detection/issues/1)
7369

7470
_Copyright 2019 The MathWorks, Inc._

code/mtcnn/+mtcnn/Detector.m

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@
2525
UseGPU = false
2626
% Use DAG Network for pre 19b compatibility
2727
UseDagNet = verLessThan('matlab', '9.7')
28+
end
29+
30+
properties (Access=private)
2831
% An object providing an inteface to the networks
2932
Networks
3033
end

code/mtcnn/+mtcnn/detectFaces.m

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@
2424
% (default=[0.5, 0.5, 0.5])
2525
% - UseGPU - Use GPU for processing or not
2626
% (default=false)
27+
% - UseDagNet - Use DAGNetwork for prediction (for
28+
% compatibility with R2019a)
29+
% (default=false R2019b+, =true R2019a)
2730
%
2831
% Note:
2932
% The 5 landmarks detector are in the order:

0 commit comments

Comments
 (0)