Face Recognition using c++ and opencv [closed] - c++

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I want to compare between two faces using openCV , how can I do that ?

Comparing between 2 images can be done by accessing each pixels and taking the difference or use the absolutedifference () to compare the two frames

Related

Turning a string that contains a equation into an integer [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I would like to be able to convert a string such as "(5+6)*6" and get the resulting integer from that equation. It is important that it starts out as a string.
You can use library fastmathparser for c++.
In link is example how use this library.
If you really want write alone this parser, I recomended use Shunting-yard algorithm

how to implement any genetic ant finding food in Push,Clojush,Clojure? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I am trying to use Push,Clojush,Clojure to implement an ant finding food in a 2d map, but I am not sure how to represent map? Could someone give me a example? Thank you.
You have a whole implementation of an ant simulation in Clojure at https://github.com/juliangamble/clojure-ants-simulation
To your specific question, it uses a vector of vectors:
https://github.com/juliangamble/clojure-ants-simulation/blob/master/src/ants.clj#L36

Leaving a mark on a textured wall in OpenGL [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I don't know the actual term of this technique but how do I apply a texture (say a bullet-hole texture) somewhere in my 3D map (where my character shot)?
Here's what I'm talking about:

How can i implement ambient Occlusion (SSAO) for Horde3d? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
i've read couple of blog posts about the ssao effect but so far but i dont' know where to begin im beginner on the whole thing of GPU programming. Can anybody help me?
http://kuko.serveblog.net/2012/05/08/horde3d-ssao-effect-ambient-occlusion-tutorial/

Can we reach the same results with ogl and dx? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
Can we reach the same graphics results with OpenGL and DirectX?
Yes, you can. OpenGL 4.1 and Direct3D 11 have equal functionality.