SlideShare a Scribd company logo
1 of 22
MENTAL HEALTH
DIAGNOSIS SYSTEM
BY NUR ASY SYAKIRIN ZUBIR – BTAL15040564
SUPERVISOR: PN FAUZIAH AB WAHAB
THE END
INTRODUCTION
Based on a new report in Britain, shown that a third of people who consciously put off
seeing their doctor do so for fear of finding bad news with middle-aged men the worse
culprits[1]. So, Early Diseases Diagnosis System is a reliable system that can help the users to get
early diagnosis about their diseases based on the selection of the symptoms and issues. It is a
system that can let the users know about their health better before make an appointment for
further knowledge with medical practitioners. The users only need to answer a certain number of
questions regarding the symptoms that they have then the system will respond by displaying the
diseases that the users encountered with based on the selected symptoms. In order to display the
result, there are two things the system need to decide; (1) what is the disease that related with the
symptoms, (2) how severe the disease is. For the first question, the decision tree will be used.
While the second question will be answered by using weighted sum model. The higher the
weight, the more severe the disease.
OBJECTIVES
• To develop a system that meet all the requirements in minimizing time and
money consuming to go to the clinic or any health institutes for the medical
check-up.
• To design a system that ease the user in checking of their health.
• To test the system that has been implemented with Weighted Sum Model in
calculating the severity of the diseases.
SCOPE
• Target user
• The people who are scared of bad news especially regarding their health conditions and those who are trying
to help their love ones in facing the diseases are the main target as the user of the system.
• The user does needs to has an account to know about their symptoms. He /she just need to answer the
questions in order to know about their conditions. They can do so by answering the questions provided by
the system about their symptoms.
• Admin
• Admin is a person in charge and can be a doctor to manage this system. He/she can add, edit, view and delete
any questions whenever he/she needed. Admin also can add new set of questions about different diseases.
The main role of the admin is to ensure that the system is functioning well and does not give unrelated results
about the diseases. Besides, they also need to display the questionnaire that are suitable according to time and
relevant to be used.
• Target system
• This system is to be as a web-based system that can help users in knowing about their health conditions. The
results of the answered questionnaire will be regarding on what kind of diseases that the user suffered, and
what to do next about their diseases
FRAMEWORK
CONTEXT DIAGRAM
• Mental Health Diagnosis System process at the centre.
• There are two actors that mainly involved in this system, they
are USER and ADMIN.
• There are 5 flows incoming and outgoing of the ADMIN and 4
flows that incoming and outgoing of the USER. So in total
there are 9 flows incoming and outgoing the system.
• As for the USER, there are 3 outgoing flows; USERS’
INFORMATION, USERS’ ANSWER and FEEDBACK
INFORMATION, and 1 incoming flow; RESULTS’ DETAILS.
• As for the ADMIN, there are 4 outgoing flows; ADMIN’S
INFORMATIONS, QUESTIONS INFORMATION,
SUGGESTION INFORMATION and REPORT DETAILS, and 1
incoming flow; FEEDBACK DETAILS.
DFD LEVEL 0
• Consists of 8 processes, 2 entities and 6
data dictionaries.
DFD LEVEL 1
• PROCESS 2.0 : MANAGE USER
• A USER inputs USERS INFORMATION into LOGIN
process, D1-USER will retrieve USERS DETAILS that
been stored from REGISTRATION process.
• The USER will get the USER AUTHENTICATION and
capable to access VIEW DETAILS and UPDATE
DETAILS processes. The updated details will be
stored as USERS DETAILS in D1-USER thru process
UPDATE DETAILS.
• The USER also get the USER AUTHENTICATION to
go to MANAGE QUESTION process after the LOGIN.
DFD LEVEL 1
• PROCESS 3.0: MANAGE ADMIN
• An ADMIN inputs ADMINS INFORMATION into LOGIN
process, D2-ADMIN will retrieve ADMIN DETAILS that
been stored before.
• The ADMIN will get the ADMIN AUTHENTICATION and
capable to access VIEW DETAILS, UPDATE DETAILS and
ADD NEW ADMIN processes. The updated details will be
stored as ADMIN DETAILS in D2-ADMIN thru process
UPDATE DETAILS. The ADMIN DETAILS from process
ADD NEW ADMIN will be stored in D2-ADMIN.
• The ADMIN also get the ADMIN AUTHENTICATION to
go to MANAGE QUESTION process after the LOGIN.
DFD LEVEL 1
• PROCESS 4.0: MANAGE QUESTION
• The ADMIN will get the ADMIN AUTHENTICATION from
Process 3.0. He will get access to ADD NEW QUESTION, VIEW
QUESTION, UPDATE QUESTION and DELETE QUESTION.
• The ADMIN will input QUESTIONS’ INFORMARTION to ADD
NEW QUESTION, will be output as QUESTIONS’ DETAILS soon
will be stored into D3-QUESTION.
• The ADMIN can VIEW QUESTION soon can either UPDATE
QUESTION or DELETE QUESTION. The UPDATE QUESTION
output will be stored into D3-QUESTION while the DELETE
QUESTION will be retrieved from D3-QUESTION and will be
deleted.
• The USER will get the USER AUTHENTICATION from Process
2.0. The USER can VIEW QUESTION and answer the question at
the same time. The output of VIEW QUESTION will be directed
to MANAGE RESULT as USERS’ANSWER.
DFD LEVEL 1
• PROCESS 5.0: MANAGE RESULT
• The ADMIN can ADD RESULT, UPDATE RESULT
and DELETE RESULT. The RESULT INFORMATION
input by ADMIN thru ADD RESULT and UPDATE
RESULT will be stored in D4-RESULT as RESULT
DETAILS.
• The USERS ANSWER from previous process will be
calculated in this process. The USERS ANSWER will
going thru CALCULATE WSM and CALCULATE
SYMPROMS processes.
• In order to CALCULATE SYMPTOMS, the
QUESTION DETAILS from D3-QUESTION will be
retrieved.
• The USER will capable to get FULL RESULT thru
process VIEW RESULT where the data come from D4-
RESULT, CALCULATE SYMPTOMS, CALCULATE
WSM and MANAGE SUGGESTION.
DFD LEVEL 1
• PROCESS 6.0: MANAGE SUGGESTION
• The ADMIN can ADD SUGGESTION, VIEW
SUGGESTION, UPDATE SUGGESTION and DELETE
SUGGESTION. The SUGGESTION INFORMATION input
by ADMIN thru ADD SUGGESTION and UPDATE
SUGGESTION will be stored in D5-SUGGESTION as
SUGGESTION DETAILS.
• The SUGGESTION will be directed to Process MANAGE
RESULT as one of the input in displaying the FULL
RESULT to the USER.
DFD LEVEL 1
• PROCESS 7.0: MANAGE FEEDBACK
• The USER can ADD FEEDBACK and
VIEW FEEDBACK. The FEEDBACK
INFORMATION input by USER thru
ADD FEEDBACK will be stored in D6-
FEEDBACK as FEEDBACK DETAILS.
• The ADMIN can VIEW FEEDBACK and
DELETE FEEDBACK
ENTITY RELATIONSHIP DIAGRAM
PROOF OF CONCEEPT
HOMEPAGE OF MHDS
PROOF OF CONCEEPT
PAGE FOR ANXIETY TEST
PROOF OF CONCEEPT
PAGE FOR INFORMATION
SOLUTION COMPLEXITY
n = number of alternative
j = initial number of alternative
wj = weight of jth criterion
aij = value of the jth of i criterion
SOLUTION COMPLEXITY
• For example:
• Question 1 of Anxiety Test - How often have you been bothered by feeling
nervous, anxious or on edge over the last two weeks?
• Not at all [0]
• Several days [1]
• More than half the days [2]
• Nearly every days [3]
• Let’s say the user choose “Not at all” which is the weight is [0]
SOLUTION COMPLEXITY: Example of code:-
If (question1 == 0){
a++; // increment number of question with the answer weighted 0
Else if (question1 == 1){
b++; //increment number of question with the answer weighted 1
Else if (question1 == 2) {
c++; //increment number of question with the answer weighted 2
Else
d++; //increment number of question with the answer weighted 3
}}}
SOLUTION COMPLEXITY: Calculation:-
• So, the calculation will be
• wsmanxiety = ∑ weight * numberofquestion
= (0*a) + (1*b) + (2*c) + (3*d)
• By doing so, it can be concluded that the higher the value of WSM the higher the
risk.

More Related Content

Similar to Mental health diagnosis system

Customer Gauge - AIESEC India & CEM
Customer Gauge - AIESEC India & CEMCustomer Gauge - AIESEC India & CEM
Customer Gauge - AIESEC India & CEMarnavsachdev
 
20130624 june presentation-curamobile v2
20130624 june presentation-curamobile v220130624 june presentation-curamobile v2
20130624 june presentation-curamobile v2Meow
 
Mh0053 – hospital & healthcare information management
Mh0053 – hospital & healthcare information managementMh0053 – hospital & healthcare information management
Mh0053 – hospital & healthcare information managementsmumbahelp
 
Kcps c3 (040704)
Kcps c3 (040704)Kcps c3 (040704)
Kcps c3 (040704)Nik Syafiq
 
HCA 447Project Documentation Project OverviewHealth Care.docx
HCA 447Project Documentation Project OverviewHealth Care.docxHCA 447Project Documentation Project OverviewHealth Care.docx
HCA 447Project Documentation Project OverviewHealth Care.docxshericehewat
 
Requirements testing final
Requirements testing   finalRequirements testing   final
Requirements testing finalJash Mehta
 
Hi600 u04_inst_slides
Hi600 u04_inst_slidesHi600 u04_inst_slides
Hi600 u04_inst_slidesljmcneill33
 
Project proposal (14 mei 2019)
Project proposal (14 mei 2019)Project proposal (14 mei 2019)
Project proposal (14 mei 2019)fazrilzuhair
 
Mh0053 – hospital & healthcare information management
Mh0053 – hospital & healthcare information managementMh0053 – hospital & healthcare information management
Mh0053 – hospital & healthcare information managementsmumbahelp
 
Quality and Safety in Primary Care by VLE
Quality and Safety in Primary Care by VLEQuality and Safety in Primary Care by VLE
Quality and Safety in Primary Care by VLEAtlantic Training, LLC.
 
Ict research
Ict researchIct research
Ict researchMAS1996OM
 
Health Prediction System - an Artificial Intelligence Project 2015
Health Prediction System - an Artificial Intelligence Project 2015Health Prediction System - an Artificial Intelligence Project 2015
Health Prediction System - an Artificial Intelligence Project 2015Maruf Abdullah (Rion)
 
The Medical Guidance: Medical Ways of Prophet Muhammad SAW
The Medical Guidance: Medical Ways of Prophet Muhammad SAWThe Medical Guidance: Medical Ways of Prophet Muhammad SAW
The Medical Guidance: Medical Ways of Prophet Muhammad SAWSiti Nurathira
 
Quality tools, data collection and indicators
Quality tools, data collection and indicatorsQuality tools, data collection and indicators
Quality tools, data collection and indicatorsAlaa Elbaraa
 
9 Quality Management System_EAT G H 2021.pptx
9 Quality Management System_EAT G H 2021.pptx9 Quality Management System_EAT G H 2021.pptx
9 Quality Management System_EAT G H 2021.pptxNagaraju94925
 
Health Care Improvement By Management Tools
Health Care Improvement By Management ToolsHealth Care Improvement By Management Tools
Health Care Improvement By Management ToolsDr.Ashok Khandelwal
 
Audit Training ©
Audit Training ©Audit Training ©
Audit Training ©Tim Coupe
 
Absence Management Express DMEC April, 2013
Absence Management Express DMEC April, 2013Absence Management Express DMEC April, 2013
Absence Management Express DMEC April, 2013Sedgwick
 

Similar to Mental health diagnosis system (20)

Customer Gauge - AIESEC India & CEM
Customer Gauge - AIESEC India & CEMCustomer Gauge - AIESEC India & CEM
Customer Gauge - AIESEC India & CEM
 
20130624 june presentation-curamobile v2
20130624 june presentation-curamobile v220130624 june presentation-curamobile v2
20130624 june presentation-curamobile v2
 
Mh0053 – hospital & healthcare information management
Mh0053 – hospital & healthcare information managementMh0053 – hospital & healthcare information management
Mh0053 – hospital & healthcare information management
 
Kcps c3 (040704)
Kcps c3 (040704)Kcps c3 (040704)
Kcps c3 (040704)
 
HCA 447Project Documentation Project OverviewHealth Care.docx
HCA 447Project Documentation Project OverviewHealth Care.docxHCA 447Project Documentation Project OverviewHealth Care.docx
HCA 447Project Documentation Project OverviewHealth Care.docx
 
Requirements testing final
Requirements testing   finalRequirements testing   final
Requirements testing final
 
Hi600 u04_inst_slides
Hi600 u04_inst_slidesHi600 u04_inst_slides
Hi600 u04_inst_slides
 
Project proposal (14 mei 2019)
Project proposal (14 mei 2019)Project proposal (14 mei 2019)
Project proposal (14 mei 2019)
 
Mh0053 – hospital & healthcare information management
Mh0053 – hospital & healthcare information managementMh0053 – hospital & healthcare information management
Mh0053 – hospital & healthcare information management
 
Quality and Safety in Primary Care by VLE
Quality and Safety in Primary Care by VLEQuality and Safety in Primary Care by VLE
Quality and Safety in Primary Care by VLE
 
Ict research
Ict researchIct research
Ict research
 
Health Prediction System - an Artificial Intelligence Project 2015
Health Prediction System - an Artificial Intelligence Project 2015Health Prediction System - an Artificial Intelligence Project 2015
Health Prediction System - an Artificial Intelligence Project 2015
 
Stroke supervision system
Stroke supervision systemStroke supervision system
Stroke supervision system
 
The Medical Guidance: Medical Ways of Prophet Muhammad SAW
The Medical Guidance: Medical Ways of Prophet Muhammad SAWThe Medical Guidance: Medical Ways of Prophet Muhammad SAW
The Medical Guidance: Medical Ways of Prophet Muhammad SAW
 
Quality tools, data collection and indicators
Quality tools, data collection and indicatorsQuality tools, data collection and indicators
Quality tools, data collection and indicators
 
9 Quality Management System_EAT G H 2021.pptx
9 Quality Management System_EAT G H 2021.pptx9 Quality Management System_EAT G H 2021.pptx
9 Quality Management System_EAT G H 2021.pptx
 
Health Care Improvement By Management Tools
Health Care Improvement By Management ToolsHealth Care Improvement By Management Tools
Health Care Improvement By Management Tools
 
Introducing CMAP-Pro for Medical Practices
Introducing CMAP-Pro for Medical PracticesIntroducing CMAP-Pro for Medical Practices
Introducing CMAP-Pro for Medical Practices
 
Audit Training ©
Audit Training ©Audit Training ©
Audit Training ©
 
Absence Management Express DMEC April, 2013
Absence Management Express DMEC April, 2013Absence Management Express DMEC April, 2013
Absence Management Express DMEC April, 2013
 

Recently uploaded

❤️♀️@ Jaipur Call Girl Agency ❤️♀️@ Manjeet Russian Call Girls Service in Jai...
❤️♀️@ Jaipur Call Girl Agency ❤️♀️@ Manjeet Russian Call Girls Service in Jai...❤️♀️@ Jaipur Call Girl Agency ❤️♀️@ Manjeet Russian Call Girls Service in Jai...
❤️♀️@ Jaipur Call Girl Agency ❤️♀️@ Manjeet Russian Call Girls Service in Jai...Gfnyt.com
 
pOOJA sexy Call Girls In Sector 49,9999965857 Young Female Escorts Service In...
pOOJA sexy Call Girls In Sector 49,9999965857 Young Female Escorts Service In...pOOJA sexy Call Girls In Sector 49,9999965857 Young Female Escorts Service In...
pOOJA sexy Call Girls In Sector 49,9999965857 Young Female Escorts Service In...Call Girls Noida
 
Call Now ☎ 9999965857 !! Call Girls in Hauz Khas Escort Service Delhi N.C.R.
Call Now ☎ 9999965857 !! Call Girls in Hauz Khas Escort Service Delhi N.C.R.Call Now ☎ 9999965857 !! Call Girls in Hauz Khas Escort Service Delhi N.C.R.
Call Now ☎ 9999965857 !! Call Girls in Hauz Khas Escort Service Delhi N.C.R.ktanvi103
 
💚😋Mumbai Escort Service Call Girls, ₹5000 To 25K With AC💚😋
💚😋Mumbai Escort Service Call Girls, ₹5000 To 25K With AC💚😋💚😋Mumbai Escort Service Call Girls, ₹5000 To 25K With AC💚😋
💚😋Mumbai Escort Service Call Girls, ₹5000 To 25K With AC💚😋Sheetaleventcompany
 
VIP Kolkata Call Girl New Town 👉 8250192130 Available With Room
VIP Kolkata Call Girl New Town 👉 8250192130  Available With RoomVIP Kolkata Call Girl New Town 👉 8250192130  Available With Room
VIP Kolkata Call Girl New Town 👉 8250192130 Available With Roomdivyansh0kumar0
 
Local Housewife and effective ☎️ 8250192130 🍉🍓 Sexy Girls VIP Call Girls Chan...
Local Housewife and effective ☎️ 8250192130 🍉🍓 Sexy Girls VIP Call Girls Chan...Local Housewife and effective ☎️ 8250192130 🍉🍓 Sexy Girls VIP Call Girls Chan...
Local Housewife and effective ☎️ 8250192130 🍉🍓 Sexy Girls VIP Call Girls Chan...Russian Call Girls Amritsar
 
Call Girl Raipur 📲 9999965857 ヅ10k NiGhT Call Girls In Raipur
Call Girl Raipur 📲 9999965857 ヅ10k NiGhT Call Girls In RaipurCall Girl Raipur 📲 9999965857 ヅ10k NiGhT Call Girls In Raipur
Call Girl Raipur 📲 9999965857 ヅ10k NiGhT Call Girls In Raipurgragmanisha42
 
Call Girls Hyderabad Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Hyderabad Just Call 9907093804 Top Class Call Girl Service AvailableCall Girls Hyderabad Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Hyderabad Just Call 9907093804 Top Class Call Girl Service AvailableDipal Arora
 
VIP Call Girl Sector 32 Noida Just Book Me 9711199171
VIP Call Girl Sector 32 Noida Just Book Me 9711199171VIP Call Girl Sector 32 Noida Just Book Me 9711199171
VIP Call Girl Sector 32 Noida Just Book Me 9711199171Call Girls Service Gurgaon
 
raisen Call Girls 👙 6297143586 👙 Genuine WhatsApp Number for Real Meet
raisen Call Girls 👙 6297143586 👙 Genuine WhatsApp Number for Real Meetraisen Call Girls 👙 6297143586 👙 Genuine WhatsApp Number for Real Meet
raisen Call Girls 👙 6297143586 👙 Genuine WhatsApp Number for Real MeetCall Girls Service
 
Udaipur Call Girls 📲 9999965857 Call Girl in Udaipur
Udaipur Call Girls 📲 9999965857 Call Girl in UdaipurUdaipur Call Girls 📲 9999965857 Call Girl in Udaipur
Udaipur Call Girls 📲 9999965857 Call Girl in Udaipurseemahedar019
 
Call Girls Thane Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Thane Just Call 9907093804 Top Class Call Girl Service AvailableCall Girls Thane Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Thane Just Call 9907093804 Top Class Call Girl Service AvailableDipal Arora
 
Nanded Call Girls 👙 6297143586 👙 Genuine WhatsApp Number for Real Meet
Nanded Call Girls 👙 6297143586 👙 Genuine WhatsApp Number for Real MeetNanded Call Girls 👙 6297143586 👙 Genuine WhatsApp Number for Real Meet
Nanded Call Girls 👙 6297143586 👙 Genuine WhatsApp Number for Real MeetCall Girls Service
 
Call Girls Service Chandigarh Gori WhatsApp ❤7710465962 VIP Call Girls Chandi...
Call Girls Service Chandigarh Gori WhatsApp ❤7710465962 VIP Call Girls Chandi...Call Girls Service Chandigarh Gori WhatsApp ❤7710465962 VIP Call Girls Chandi...
Call Girls Service Chandigarh Gori WhatsApp ❤7710465962 VIP Call Girls Chandi...Niamh verma
 
Russian Escorts Aishbagh Road * 9548273370 Naughty Call Girls Service in Lucknow
Russian Escorts Aishbagh Road * 9548273370 Naughty Call Girls Service in LucknowRussian Escorts Aishbagh Road * 9548273370 Naughty Call Girls Service in Lucknow
Russian Escorts Aishbagh Road * 9548273370 Naughty Call Girls Service in Lucknowgragteena
 
Krishnagiri call girls Tamil aunty 7877702510
Krishnagiri call girls Tamil aunty 7877702510Krishnagiri call girls Tamil aunty 7877702510
Krishnagiri call girls Tamil aunty 7877702510Vipesco
 
Dehradun Call Girls Service ❤️🍑 8854095900 👄🫦Independent Escort Service Dehradun
Dehradun Call Girls Service ❤️🍑 8854095900 👄🫦Independent Escort Service DehradunDehradun Call Girls Service ❤️🍑 8854095900 👄🫦Independent Escort Service Dehradun
Dehradun Call Girls Service ❤️🍑 8854095900 👄🫦Independent Escort Service DehradunNiamh verma
 
No Advance 9053900678 Chandigarh Call Girls , Indian Call Girls For Full Ni...
No Advance 9053900678 Chandigarh  Call Girls , Indian Call Girls  For Full Ni...No Advance 9053900678 Chandigarh  Call Girls , Indian Call Girls  For Full Ni...
No Advance 9053900678 Chandigarh Call Girls , Indian Call Girls For Full Ni...Vip call girls In Chandigarh
 
Jalandhar Female Call Girls Contact Number 9053900678 💚Jalandhar Female Call...
Jalandhar  Female Call Girls Contact Number 9053900678 💚Jalandhar Female Call...Jalandhar  Female Call Girls Contact Number 9053900678 💚Jalandhar Female Call...
Jalandhar Female Call Girls Contact Number 9053900678 💚Jalandhar Female Call...Call Girls Service Chandigarh Ayushi
 
VIP Call Girls Sector 67 Gurgaon Just Call Me 9711199012
VIP Call Girls Sector 67 Gurgaon Just Call Me 9711199012VIP Call Girls Sector 67 Gurgaon Just Call Me 9711199012
VIP Call Girls Sector 67 Gurgaon Just Call Me 9711199012Call Girls Service Gurgaon
 

Recently uploaded (20)

❤️♀️@ Jaipur Call Girl Agency ❤️♀️@ Manjeet Russian Call Girls Service in Jai...
❤️♀️@ Jaipur Call Girl Agency ❤️♀️@ Manjeet Russian Call Girls Service in Jai...❤️♀️@ Jaipur Call Girl Agency ❤️♀️@ Manjeet Russian Call Girls Service in Jai...
❤️♀️@ Jaipur Call Girl Agency ❤️♀️@ Manjeet Russian Call Girls Service in Jai...
 
pOOJA sexy Call Girls In Sector 49,9999965857 Young Female Escorts Service In...
pOOJA sexy Call Girls In Sector 49,9999965857 Young Female Escorts Service In...pOOJA sexy Call Girls In Sector 49,9999965857 Young Female Escorts Service In...
pOOJA sexy Call Girls In Sector 49,9999965857 Young Female Escorts Service In...
 
Call Now ☎ 9999965857 !! Call Girls in Hauz Khas Escort Service Delhi N.C.R.
Call Now ☎ 9999965857 !! Call Girls in Hauz Khas Escort Service Delhi N.C.R.Call Now ☎ 9999965857 !! Call Girls in Hauz Khas Escort Service Delhi N.C.R.
Call Now ☎ 9999965857 !! Call Girls in Hauz Khas Escort Service Delhi N.C.R.
 
💚😋Mumbai Escort Service Call Girls, ₹5000 To 25K With AC💚😋
💚😋Mumbai Escort Service Call Girls, ₹5000 To 25K With AC💚😋💚😋Mumbai Escort Service Call Girls, ₹5000 To 25K With AC💚😋
💚😋Mumbai Escort Service Call Girls, ₹5000 To 25K With AC💚😋
 
VIP Kolkata Call Girl New Town 👉 8250192130 Available With Room
VIP Kolkata Call Girl New Town 👉 8250192130  Available With RoomVIP Kolkata Call Girl New Town 👉 8250192130  Available With Room
VIP Kolkata Call Girl New Town 👉 8250192130 Available With Room
 
Local Housewife and effective ☎️ 8250192130 🍉🍓 Sexy Girls VIP Call Girls Chan...
Local Housewife and effective ☎️ 8250192130 🍉🍓 Sexy Girls VIP Call Girls Chan...Local Housewife and effective ☎️ 8250192130 🍉🍓 Sexy Girls VIP Call Girls Chan...
Local Housewife and effective ☎️ 8250192130 🍉🍓 Sexy Girls VIP Call Girls Chan...
 
Call Girl Raipur 📲 9999965857 ヅ10k NiGhT Call Girls In Raipur
Call Girl Raipur 📲 9999965857 ヅ10k NiGhT Call Girls In RaipurCall Girl Raipur 📲 9999965857 ヅ10k NiGhT Call Girls In Raipur
Call Girl Raipur 📲 9999965857 ヅ10k NiGhT Call Girls In Raipur
 
Call Girls Hyderabad Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Hyderabad Just Call 9907093804 Top Class Call Girl Service AvailableCall Girls Hyderabad Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Hyderabad Just Call 9907093804 Top Class Call Girl Service Available
 
VIP Call Girl Sector 32 Noida Just Book Me 9711199171
VIP Call Girl Sector 32 Noida Just Book Me 9711199171VIP Call Girl Sector 32 Noida Just Book Me 9711199171
VIP Call Girl Sector 32 Noida Just Book Me 9711199171
 
raisen Call Girls 👙 6297143586 👙 Genuine WhatsApp Number for Real Meet
raisen Call Girls 👙 6297143586 👙 Genuine WhatsApp Number for Real Meetraisen Call Girls 👙 6297143586 👙 Genuine WhatsApp Number for Real Meet
raisen Call Girls 👙 6297143586 👙 Genuine WhatsApp Number for Real Meet
 
Udaipur Call Girls 📲 9999965857 Call Girl in Udaipur
Udaipur Call Girls 📲 9999965857 Call Girl in UdaipurUdaipur Call Girls 📲 9999965857 Call Girl in Udaipur
Udaipur Call Girls 📲 9999965857 Call Girl in Udaipur
 
Call Girls Thane Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Thane Just Call 9907093804 Top Class Call Girl Service AvailableCall Girls Thane Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Thane Just Call 9907093804 Top Class Call Girl Service Available
 
Nanded Call Girls 👙 6297143586 👙 Genuine WhatsApp Number for Real Meet
Nanded Call Girls 👙 6297143586 👙 Genuine WhatsApp Number for Real MeetNanded Call Girls 👙 6297143586 👙 Genuine WhatsApp Number for Real Meet
Nanded Call Girls 👙 6297143586 👙 Genuine WhatsApp Number for Real Meet
 
Call Girls Service Chandigarh Gori WhatsApp ❤7710465962 VIP Call Girls Chandi...
Call Girls Service Chandigarh Gori WhatsApp ❤7710465962 VIP Call Girls Chandi...Call Girls Service Chandigarh Gori WhatsApp ❤7710465962 VIP Call Girls Chandi...
Call Girls Service Chandigarh Gori WhatsApp ❤7710465962 VIP Call Girls Chandi...
 
Russian Escorts Aishbagh Road * 9548273370 Naughty Call Girls Service in Lucknow
Russian Escorts Aishbagh Road * 9548273370 Naughty Call Girls Service in LucknowRussian Escorts Aishbagh Road * 9548273370 Naughty Call Girls Service in Lucknow
Russian Escorts Aishbagh Road * 9548273370 Naughty Call Girls Service in Lucknow
 
Krishnagiri call girls Tamil aunty 7877702510
Krishnagiri call girls Tamil aunty 7877702510Krishnagiri call girls Tamil aunty 7877702510
Krishnagiri call girls Tamil aunty 7877702510
 
Dehradun Call Girls Service ❤️🍑 8854095900 👄🫦Independent Escort Service Dehradun
Dehradun Call Girls Service ❤️🍑 8854095900 👄🫦Independent Escort Service DehradunDehradun Call Girls Service ❤️🍑 8854095900 👄🫦Independent Escort Service Dehradun
Dehradun Call Girls Service ❤️🍑 8854095900 👄🫦Independent Escort Service Dehradun
 
No Advance 9053900678 Chandigarh Call Girls , Indian Call Girls For Full Ni...
No Advance 9053900678 Chandigarh  Call Girls , Indian Call Girls  For Full Ni...No Advance 9053900678 Chandigarh  Call Girls , Indian Call Girls  For Full Ni...
No Advance 9053900678 Chandigarh Call Girls , Indian Call Girls For Full Ni...
 
Jalandhar Female Call Girls Contact Number 9053900678 💚Jalandhar Female Call...
Jalandhar  Female Call Girls Contact Number 9053900678 💚Jalandhar Female Call...Jalandhar  Female Call Girls Contact Number 9053900678 💚Jalandhar Female Call...
Jalandhar Female Call Girls Contact Number 9053900678 💚Jalandhar Female Call...
 
VIP Call Girls Sector 67 Gurgaon Just Call Me 9711199012
VIP Call Girls Sector 67 Gurgaon Just Call Me 9711199012VIP Call Girls Sector 67 Gurgaon Just Call Me 9711199012
VIP Call Girls Sector 67 Gurgaon Just Call Me 9711199012
 

Mental health diagnosis system

  • 1. MENTAL HEALTH DIAGNOSIS SYSTEM BY NUR ASY SYAKIRIN ZUBIR – BTAL15040564 SUPERVISOR: PN FAUZIAH AB WAHAB
  • 3. INTRODUCTION Based on a new report in Britain, shown that a third of people who consciously put off seeing their doctor do so for fear of finding bad news with middle-aged men the worse culprits[1]. So, Early Diseases Diagnosis System is a reliable system that can help the users to get early diagnosis about their diseases based on the selection of the symptoms and issues. It is a system that can let the users know about their health better before make an appointment for further knowledge with medical practitioners. The users only need to answer a certain number of questions regarding the symptoms that they have then the system will respond by displaying the diseases that the users encountered with based on the selected symptoms. In order to display the result, there are two things the system need to decide; (1) what is the disease that related with the symptoms, (2) how severe the disease is. For the first question, the decision tree will be used. While the second question will be answered by using weighted sum model. The higher the weight, the more severe the disease.
  • 4. OBJECTIVES • To develop a system that meet all the requirements in minimizing time and money consuming to go to the clinic or any health institutes for the medical check-up. • To design a system that ease the user in checking of their health. • To test the system that has been implemented with Weighted Sum Model in calculating the severity of the diseases.
  • 5. SCOPE • Target user • The people who are scared of bad news especially regarding their health conditions and those who are trying to help their love ones in facing the diseases are the main target as the user of the system. • The user does needs to has an account to know about their symptoms. He /she just need to answer the questions in order to know about their conditions. They can do so by answering the questions provided by the system about their symptoms. • Admin • Admin is a person in charge and can be a doctor to manage this system. He/she can add, edit, view and delete any questions whenever he/she needed. Admin also can add new set of questions about different diseases. The main role of the admin is to ensure that the system is functioning well and does not give unrelated results about the diseases. Besides, they also need to display the questionnaire that are suitable according to time and relevant to be used. • Target system • This system is to be as a web-based system that can help users in knowing about their health conditions. The results of the answered questionnaire will be regarding on what kind of diseases that the user suffered, and what to do next about their diseases
  • 7. CONTEXT DIAGRAM • Mental Health Diagnosis System process at the centre. • There are two actors that mainly involved in this system, they are USER and ADMIN. • There are 5 flows incoming and outgoing of the ADMIN and 4 flows that incoming and outgoing of the USER. So in total there are 9 flows incoming and outgoing the system. • As for the USER, there are 3 outgoing flows; USERS’ INFORMATION, USERS’ ANSWER and FEEDBACK INFORMATION, and 1 incoming flow; RESULTS’ DETAILS. • As for the ADMIN, there are 4 outgoing flows; ADMIN’S INFORMATIONS, QUESTIONS INFORMATION, SUGGESTION INFORMATION and REPORT DETAILS, and 1 incoming flow; FEEDBACK DETAILS.
  • 8. DFD LEVEL 0 • Consists of 8 processes, 2 entities and 6 data dictionaries.
  • 9. DFD LEVEL 1 • PROCESS 2.0 : MANAGE USER • A USER inputs USERS INFORMATION into LOGIN process, D1-USER will retrieve USERS DETAILS that been stored from REGISTRATION process. • The USER will get the USER AUTHENTICATION and capable to access VIEW DETAILS and UPDATE DETAILS processes. The updated details will be stored as USERS DETAILS in D1-USER thru process UPDATE DETAILS. • The USER also get the USER AUTHENTICATION to go to MANAGE QUESTION process after the LOGIN.
  • 10. DFD LEVEL 1 • PROCESS 3.0: MANAGE ADMIN • An ADMIN inputs ADMINS INFORMATION into LOGIN process, D2-ADMIN will retrieve ADMIN DETAILS that been stored before. • The ADMIN will get the ADMIN AUTHENTICATION and capable to access VIEW DETAILS, UPDATE DETAILS and ADD NEW ADMIN processes. The updated details will be stored as ADMIN DETAILS in D2-ADMIN thru process UPDATE DETAILS. The ADMIN DETAILS from process ADD NEW ADMIN will be stored in D2-ADMIN. • The ADMIN also get the ADMIN AUTHENTICATION to go to MANAGE QUESTION process after the LOGIN.
  • 11. DFD LEVEL 1 • PROCESS 4.0: MANAGE QUESTION • The ADMIN will get the ADMIN AUTHENTICATION from Process 3.0. He will get access to ADD NEW QUESTION, VIEW QUESTION, UPDATE QUESTION and DELETE QUESTION. • The ADMIN will input QUESTIONS’ INFORMARTION to ADD NEW QUESTION, will be output as QUESTIONS’ DETAILS soon will be stored into D3-QUESTION. • The ADMIN can VIEW QUESTION soon can either UPDATE QUESTION or DELETE QUESTION. The UPDATE QUESTION output will be stored into D3-QUESTION while the DELETE QUESTION will be retrieved from D3-QUESTION and will be deleted. • The USER will get the USER AUTHENTICATION from Process 2.0. The USER can VIEW QUESTION and answer the question at the same time. The output of VIEW QUESTION will be directed to MANAGE RESULT as USERS’ANSWER.
  • 12. DFD LEVEL 1 • PROCESS 5.0: MANAGE RESULT • The ADMIN can ADD RESULT, UPDATE RESULT and DELETE RESULT. The RESULT INFORMATION input by ADMIN thru ADD RESULT and UPDATE RESULT will be stored in D4-RESULT as RESULT DETAILS. • The USERS ANSWER from previous process will be calculated in this process. The USERS ANSWER will going thru CALCULATE WSM and CALCULATE SYMPROMS processes. • In order to CALCULATE SYMPTOMS, the QUESTION DETAILS from D3-QUESTION will be retrieved. • The USER will capable to get FULL RESULT thru process VIEW RESULT where the data come from D4- RESULT, CALCULATE SYMPTOMS, CALCULATE WSM and MANAGE SUGGESTION.
  • 13. DFD LEVEL 1 • PROCESS 6.0: MANAGE SUGGESTION • The ADMIN can ADD SUGGESTION, VIEW SUGGESTION, UPDATE SUGGESTION and DELETE SUGGESTION. The SUGGESTION INFORMATION input by ADMIN thru ADD SUGGESTION and UPDATE SUGGESTION will be stored in D5-SUGGESTION as SUGGESTION DETAILS. • The SUGGESTION will be directed to Process MANAGE RESULT as one of the input in displaying the FULL RESULT to the USER.
  • 14. DFD LEVEL 1 • PROCESS 7.0: MANAGE FEEDBACK • The USER can ADD FEEDBACK and VIEW FEEDBACK. The FEEDBACK INFORMATION input by USER thru ADD FEEDBACK will be stored in D6- FEEDBACK as FEEDBACK DETAILS. • The ADMIN can VIEW FEEDBACK and DELETE FEEDBACK
  • 17. PROOF OF CONCEEPT PAGE FOR ANXIETY TEST
  • 18. PROOF OF CONCEEPT PAGE FOR INFORMATION
  • 19. SOLUTION COMPLEXITY n = number of alternative j = initial number of alternative wj = weight of jth criterion aij = value of the jth of i criterion
  • 20. SOLUTION COMPLEXITY • For example: • Question 1 of Anxiety Test - How often have you been bothered by feeling nervous, anxious or on edge over the last two weeks? • Not at all [0] • Several days [1] • More than half the days [2] • Nearly every days [3] • Let’s say the user choose “Not at all” which is the weight is [0]
  • 21. SOLUTION COMPLEXITY: Example of code:- If (question1 == 0){ a++; // increment number of question with the answer weighted 0 Else if (question1 == 1){ b++; //increment number of question with the answer weighted 1 Else if (question1 == 2) { c++; //increment number of question with the answer weighted 2 Else d++; //increment number of question with the answer weighted 3 }}}
  • 22. SOLUTION COMPLEXITY: Calculation:- • So, the calculation will be • wsmanxiety = ∑ weight * numberofquestion = (0*a) + (1*b) + (2*c) + (3*d) • By doing so, it can be concluded that the higher the value of WSM the higher the risk.