I just upgraded to Mathematica 11.3. but now my FindFaces
instructions do not work anymore.
I guess they changed the syntax in 11.3.
Here is the original code:
boxes = FindFaces[image, {190, Infinity}];
I want to find all faces in an image which are greater than a certain scale. How can I do it in Mathematica 11.3?
Answer
Unless I'm mistaken V11.2 syntax:
FindFaces[image, {190, Infinity}];
in V11.3 can be achieved with
List @@@ FindFaces[image, {190, Infinity}, "BoundingBox"]
Comments
Post a Comment