Questions tagged [face]

A face is an elementary surface geometry. Faces are used in 3D modelling to define meshes

A face is an elementary surface geometry. A face is defined by three (sometimes four) vertices or the indices from a vertices array or collection. Faces are used in 3D modelling, for example to define faceted boundary representations.

Note: Use this tag for questions related to face geometries, do not use this tag for questions related to face recognition (use face-recognition instead).

176 questions
0
votes
1 answer

Process video in OpenCV, without playing it

I have code, which is able to capture faces, when it crossing a line in video, after that app will save it to local direction. Is it possible to process this application, with prerecorded video, without playing it. Means, if I have 2 hours video,…
0
votes
1 answer

How to write L2-softmax loss in Keras?

A Tensorflow version is like this: fc1 = alpha * tf.divide(fc1, tf.norm(fc1, ord='euclidean')) But how can I use Keras to write a L2-softmax like that?
MC jiang
  • 3
  • 3
0
votes
1 answer

Face API Invalid Image URL

I am trying to integrate Microsoft's Face API into my .NET C# Webforms application. The way I want to achieve it is from JavaScript, just like the Quickstart Guide on their site suggests. Their example is…
V.Dum
  • 33
  • 1
  • 4
0
votes
2 answers

Applying custom face in emacs

I wanted to make a derived mode for python-mode to add custom keywords and color. So I retreived the part of the code that defines the face of the keywords and added my own keywords. If I use an already existing face it works just fine. But I want…
Romain
  • 81
  • 1
  • 8
0
votes
1 answer

Simplifying mesh (selecting a face by its number or coordinates)

I have a microCT scan of a porous material. I simplify the mesh in Meshlab and when I want to import it in a Finite Element software (COMSOL), I get the error message saying "The face 14775 can not be parameterized" and it also gives me the location…
0
votes
1 answer

CGAL add data to face handle

I am using CGAL in Python and I'd like to be able to add data to the face handle in a triangulation. It seems like Python lets me store this information but it doesn't persist, for example: from CGAL.CGAL_Kernel import Point_2 from…
mv3
  • 469
  • 5
  • 16
0
votes
1 answer

Skimage similaritytransform does not work

I am trying to apply a similarity transform to align faces: from skimage.transform import SimilarityTransform, ProjectiveTransform from skimage import transform from scipy.misc import imshow # face image detected facial landmarks src =…
redsphinx
  • 91
  • 5
0
votes
1 answer

Getting the Color of the Lips using face API

The Face API gives coordinates of the lips but can we specifically get the color of the lips?
Rowdur
  • 602
  • 4
  • 11
0
votes
0 answers

Head pose estimation based on 3d facial landmarks and a 3d model

I have a 3-d face model and a detector that can get 68 3-d facial landmarks of an image. Does Opencv has API that can estimate the head pose estimation based on 3-d facial landmarks? I read its tutorials and found a function called cv2.solvePnP().…
0
votes
1 answer

Access Microsoft Face API IOS with Swift

I am trying to enter to the API from Microsoft FACE API. I created an account on Azure and created the service that they provide me the keys. The point is that I am trying to get access to the API and it's all time a 401 error let client =…
Ruffeng
  • 537
  • 7
  • 23
0
votes
0 answers

Windows Hello - detect face change

User setups Windows Hello. UWP-application can authorize user. Now user changed face in system settings. How can app detect that after it was started using UWP SDK?
Maxim Korobov
  • 2,574
  • 1
  • 26
  • 44
0
votes
1 answer

Three.js face normals doesnt rendered properly

I want to create my own model format. For that purpose I am trying to create custom geometry. I can import geometry properly. Bur face normals doesn't get rendered even I add them to geometry. Here is input file: # Coordinates 0e+0 0e+0 0e+0 …
user3160302
  • 227
  • 1
  • 4
  • 11
0
votes
1 answer

How to export After Effect face tracking data?

Is there any way to output the face tracking data that generated by AE? enter image description here
0
votes
0 answers

how to get ontouch of cube different faces?

I am making a cube using OpenGL.where I have a rotating 3d cube.All the six faces of the cube have different images.I am not getting a click of different faces of the cube. example:-cube is rotating while rotating cube if I click on cube then…
0
votes
1 answer

Placing objects on Face based on landmark positions google vision api

I am trying to detect eyes and put glasses over eyes using Google Mobile Vision api. here is what i have tried Face face = faces.valueAt(0); Landmark leftEye = null; Landmark rightEye = null; for…
Muhammad Umar
  • 11,391
  • 21
  • 91
  • 193