Face Analysis System Based on Face Recognition and Facial Physiognomy (Graduation Project)

12 Oct

Hello, My Blog Readers This is an Abstract About My Graduated Project.

Automatic Face Analysis System Based on Face Recognition and Facial Physiognomy


Abstract:

An automatic face analysis system is proposed which uses face recognition and facial physiognomy. It first detects human’s face, extracts its features, and classifies the shape of facial features. It will analyze the person’s facial physiognomy and then automatically make an avatar drawing using the facial features. The face analysis method of the proposed algorithm can recognize face at real-time and analyze facial physiognomy which is composed of inherent physiological characteristics of humans, orientalism, and fortunes with regard to human’s life. The proposed algorithm can draw the person’s avatar automatically based on face recognition. We conform that the proposed algorithm could contribute to the scientific and quantitative on-line face analysis fields as well as the biometrics.

طيب فى ناس كتير مش هيقرأو الكلام اللى فوق ده  …. ألخصه انا بقى ان المشروع ده عبارة عن تحليل شخصية الانسان عن طريق ادراكات وملامح الوجه . وذلك عن طريق شوية علوم  فى التنمية البشرية وأكيد التطبيق من

Computer Science : ” Computer Vision – Image Processing – Expert System  “.

Knowledge Base : (physiognomy – orientalism).

ادعوا لنا ” الفريق” بالتوفيق فى عمل هذا المشروع

Good programming Videos (GoodLuck .Net).

7 Oct

1- Lady java Song :

2- Java 4 ever

3- Rapping About Java

 

Java VS .Net (How Good This)?

6 Oct

This is Java Zone Film That Act The Java VS .Net

Java Web Component Course

2 Oct

Now , when I Finshed The java Standard Course With The Great Group , i will be very happy about the result of the Course and The Levels of the course group Specially :” Eng : Fatma Elmor” , “Eng : Dina Helal” ,”Eng : Dina El Sa3eed” . they have been very active Students on  the Course Online Group and in the Course Class. after finishing that course there will be another, But it will be advanced Course. The Course Will be ” Java Enterprize Edition ” (web Component) .See The Next Slide Show for Details ……….

If you interested You can Register The Course Here

thanks Eng: Marwa  for your Feedback.

Top Ten Most Popular Careers for 2010

3 Aug
  1. Network Systems Analysts: The development of IT has led to an increase in organizations seeking installation and maintenance of networked communications. Systems analysts solve problems related to networked computer technology.
  2. Physician’s Assistant: Physician assistants are trained to provide diagnostic, therapeutic and preventative healthcare services, as overseen by a physician. Primary healthcare settings include family medicine and pediatrics.
  3. Medical Assistants: The growing healthcare sector means more administrative and clinical tasks need to be performed. Other medical assistants can help with clinical tasks. Typically, work takes place in the offices of physicians, chiropractors, podiatrists, ophthalmologists and other health practitioners.
  4. Medical Records and Health Information Technicians: Case and healthcare records are increasingly used for organizational management and ongoing evaluation of healthcare progress. Records might include patient medical history, symptoms, treatments, tests, outcomes, etc. Medical tests and information management are major growth areas.
  5. Software Engineers: As IT continues to evolve, so does the work of computer software engineers, who design and develop new computer software systems. The engineer analyses users’ needs and designs software or programs to meet these needs.
  6. Physical Therapist Aides: The number of individuals with disabilities or limited physical function is growing, so the number of assistants who provide services to alleviate the difficulties is set to increase.
  7. Fitness Trainers: Aerobics instructors and fitness trainers lead groups and individuals in a range of exercise activities. More people are spending time and money on their leisure activities, meaning employment opportunities for fitness instructors will grow.
  8. Database Administrators: Many organizations now depend on the instant availability of data. Database administrators work with the relevant software to retrieve and present data. They need to understand every aspect of an organization’s database system, from its performance to security and the platform it runs on.
  9. Veterinary Technicians: Expectations for leading edge veterinary care are rising as healthcare in general progresses. Veterinary technicians perform tests, and treat and diagnose medical conditions in animals. Work can take place in domestic pet surgeries, livestock management, wildlife medicine, or pharmaceutical sales or biomedical research.
  10. Dental Hygienists: As our healthcare involves an increasing emphasis on oral health and retention of natural teeth, work opportunities for dental hygienists are set to grow. Hygienists examine patients’ gums and teeth, remove deposits, administer x-rays, and more.

The  Source

http://www.alec.co.uk/free-career-assessment/top-10-most-popular-careers.htm

Nested Classes In java

17 Jul

بسم الله الرحمن الرحيم

هلا بيكم ياشباب مجددا

الدرس ده طبعا ردا على استفسار كان معانا فى الكورس

وكان عبارة عن سؤالين :

الاول : يعنى ايه

Top Inner Class

والتانى : هو ينفع نحط كلمة

Static before any class


وللإجابة عن السؤالين  هشرح حالا ان شاء رب العالمين

Netsed Classes

ايوة  زى منتوا بتقولو كده :::::::

Class inside Class

Nested classes are divided into two categories:

static and non-static. Nested classes that are declared static are simply called static nested classes. Non-static nested classes are called inner classes.

نطلع من دى بخلاصة كده ان

Nested Class

1- Static Class  (Static nested Class).

2-Non Static (Inner Class).

مع بعض هنشوف كل واحد وكده

1- Static class

هو كلاس هيتعامل معاملة اى حاجة

Static  such as ” Static Variable – Static methods “

يعنى انادى عليه باسم

Class Outer

مرة واحده

ناخد مثال :

class OuterClass {
    ...
    static class StaticNestedClass {
        ...
    }// end of static class
    
}// end of outer class 
 
يبقى هو كده كلاس عادى جدا 
ولكن
لما اجى انادى عليه او أعمله 
Instantiated

OuterClass.StaticNestedClass nestedObject = new OuterClass.StaticNestedClass();
تمام كده :::: من اى مكان بقى انادى عليه كده 

نروح بقى كده لتانى مثال وهو 

2- Non Static Nested Class (Inner Class ):

 ده كلاس جوة كلا بس لا يحمل كلمة 
Static 
وفى هذه الحالة يسمى 
Inner Class 

 ناخد مثال 

class Outer{

         class InnerClass{
                    
              // Any Code 
  


}



}


ده بقى قدامى حلين
ياإما استدعية جوه الكلاس الذى يحتويه
فكده هيكون متشاف عادى
فيكون الاستدعاء على طول
InnerClass x=new InnerClass();
او اننا نستدعية بره الكلاس الكبير
فيكون الاستدعاء
Outer outr=new Outer();
Outer.InnerClass inner=outr.new InnerClass();

كده تمام

نرد بقى على السؤالين
1- مينفعش احط
Static before Class ELa Static Nested Class
2-Top Inner Class
There are Somthing Named Top Level Class (Class Defined Within The Package).
but There are no Thing Named Top Inner Class

شوفو التصنيف ده كده
Types of classes:

  • Top Level – normal class.  A class that is not within another class.  A class defined at the package level.
    Example of .class naming:
    TopLevelName.class
  • Outer Class – a class that has another class inside it. A top level class is an outer class.  Another example is inner class that has an inner class inside it.
  • Inner Class, at class level – a class defined within another class, but not within a method.
    Example of .class naming:
    TopLevelName$InnerName.class
  • Inner Class, at method level – a class defined within another class, but not within a method.
    Example of .class naming: (same as at class level)


حكم الغناء فى الأسلام

17 Jul

بسم الله الرحمن الرحيم

هنا شوية فيديوهات  لحكم الغناء فى الاسلام

الشيخ  :: محمد حسان

  :::::::

الشيخ :: سالم ابو الفتوح

طيب لو عايز تعرف لكل الشيوخ والائمة ادخل على

Youtube

وربنا يحفظنا