Face Detection with JAVA [closed] - image

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I am planning to develop a web app which will detect faces in a jpeg image. I will use tomcat for deployment. I want help on how to proceed.
I dont want any code.
Just a flowchart of steps will do. I want to avoid use of third party libraries for face detection. But please list all options.
Any information, algorithm, resource will be greatly helpful.
Thank you..

I would recommend using a 3rd party lib such as OpenCV. You'll want to look at the Haar feature detector. There's some info here http://opencv.willowgarage.com/wiki/FaceDetection and plenty more on the OpenCV mailing list.
There are Java bindings for OpenCV http://code.google.com/p/javacv/ . But it might be easiest to produce a separate command line util that you shell out to in Tomcat.

Related

Options to learn in Ruby besides IRB and FXRI [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I Was wondering if anyone had some suggestions to quickly test their coding lines in windows. Right now, I am currently using repl.it
I used to use fxri, but it doesn't work in later versions and I feel that irb lacks a lot of the useful tools that fxri has (example:built in, easily accessible library with descriptions of commands)
Any help would be much appreciated.
The Pry tool is a great learning resource. You can view source code and documentation on demand, and trivially explore a library or program using an intuitive file system metaphor.

User interface of desktop application using SWT [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm working on a desktop application using SWT. I need to make the UI look and feel like Skype's interface. Can anybody suggest me something?
The presentations package allows the customization of the look of a SWT application.
Here's a general presentation, including a lot of links : http://jroller.com/mpermar/date/20050619#eclipse_presentations_jlibrary_and_vs
Of course you'll have a lot of work if you don't find an existing skin suitable to your need.

Posting a picture from a Facebook app [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I am writing a little Facebook application and I would like to publish a picture and a link when the user selects a certain option. Its been hard to find good resources about specific API calls like this (most of the books I've find were from 2008 and seem outdated). Can anyone explain how I might do this (I would I assume I would do this with a php call). Also, if anyone knows any good literature or resources on this topic that are not out of date that would be very helpful.
Your answer is here: http://developers.facebook.com/docs/reference/api/post/
They give you a CURL example, and if you're familiar with PHP's curl api you can trivially replicate it.

Creating games for wp7 [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
i'm new to wp7 and want to develop 3d games. please help...
I'd suggest starting here: http://create.msdn.com/en-US/
That at least will get you the tools you need for this platform.
You will also want to familiarize yourself with both C# and Xaml languages.
Edit: Almost forgot. XNA is probably going to be your friend too if you are headed for game development. I rather like it as a framework since its fairly easy to port stuff back and forth from pc to xbox. Never used it with wp7 but....good luck :)
On this website you can find all what you need.

Where to find wscript hooks? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I need to automate an IM client to update a status every few hours, basically log in, update status, log out. I'm trying to do this with windows scripting, but cannot seem to find the proper hook names to the application. Is there somewhere specific I can look to find this kind of information about an application, or am I merely going about this with the wrong tool in hand?
What IM client are you trying to automate?
Many popular IM services now have their own official API's that you can use to interface with their service programatically rather than having to 'hook' into a client. Third party libraries are also fairly widely available (Google around).
I used the AIM API to write a couple of fairly nifty utilities recently. AOL offers SDK's for several popular platforms including C, Java and C#.

Resources