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 9 years ago.
Improve this question
I need to make an app that tells if the only face in a certain picture is that of a man or a woman
It would be better if it was done using python.
Any suggestions are welcome
I think this will solve your problem. Gender detection is what you need to do. Recently I have done gender detection using the below link and got a decent accuracy. Follow the link step by step.
http://docs.opencv.org/trunk/modules/contrib/doc/facerec/tutorial/facerec_gender_classification.html
And there is a C++ code in the above link for Face-recognizer which does this. You can get the equivalent python API's in opencv documentation.
This SO Answer has few more links and information.
Related
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 3 days ago.
Improve this question
Looking through the similar questions, I could not find an answer specific to this question.
My son is in the process of learning to become a back end Python developer. We're trying to find out which database framework is the most popular for employment purposes? We see Django a lot. However looking at statista.com (https://www.statista.com/statistics/1124699/worldwide-developer-survey-most-used-frameworks-web/), it's saying node.js is the most popular worldwide.
So I'm a little confused by that. Are there any professional back end Python developers who can offer some insight? Thanks in advance.
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 4 days ago.
Improve this question
I am looking forward to building a program in python which tells if a text is fake or real. This is a project I want to start for educational purposes. For example, someone is sharing a story, the program will check the input and will determine whether the author is likely telling truth or fiction based on common patterns. I am looking for some things I can start off from, like libaries or documentation. Thanks for anyone who is willimg to help.
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 10 months ago.
Improve this question
I am new to the world of image processing. And I am working on a project, where I need to find the narrowest and widest part of a letter/object like the one I have attached to the post. I have tried many things, but I do not get proper results. Can you help with a way to approach this. I am mostly using Python and OpenCV.
Thanks in advance!
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
Pretty much the title. Using NLP, i want something that can extract text from images. I am new to this and don't know where to start and how to go about it. Help will be appreciated.
Do you want to create it or use known API?
There is two good known options, Google vision or tesseract.
in tesseract the flag for Arabic is 'ara' -> https://raw.githubusercontent.com/tesseract-ocr/tessdata_best/master/ara.traineddata.
In Google vision is languageHints = 'ar'
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 am beginner of Python, does anyone knows how to make a different shapes of message windows in python? i want to design a better look and friendly GUI.
Thank you
I think Qt is what may be useful to you. Take a look at the documentation on QtProject homepage. Lots of tutorials can be found on the Internet. For your specific problem take a look at this SO question.