Skip to main content

STOCHASTIC DECISION MAKING FOR ADAPTIVE CROWDSOURCING IN MEDICAL BIG-DATA PLATFORMS


STOCHASTIC DECISION MAKING FOR ADAPTIVE CROWDSOURCING IN MEDICAL BIG-DATA PLATFORMS

ABSTRACT
Two novel algorithms for adaptive crowdsourcing in medical imaging big-data platforms is considered, namely, a max-weight scheduling algorithm for medical cloud platforms and a stochastic decision-making algorithm for distributed power-and-latency-aware dynamic buffer management in medical devices. In the first algorithm, medical cloud platforms perform a joint queue-backlog and rate-aware scheduling decisions for matching deployed access points (APs) and medical users where APs are eventually connected to medical clouds. In the second algorithm, each scheduled medical device computes the amounts of power allocation to upload its own medical data to medical big-data clouds with stochastic decision making considering joint energy-efficiency and buffer stability optimization.




INTRODUCTION
In recent years, the volume of medical data generated by large hospitals is becoming increasingly large due to technological advancements in medical devices, including high-resolution magnetic resonance imaging (MRI), motion MRI, ultrasound, and digital microscopy. Furthermore, centralized storage of medical records is a common practice for sharing medical data among medical practitioners. Oftentimes, medical records are collected and uploaded to the centralized medical record using modern mobile equipments, such as smart phones, and via wireless access points (APs). Because of the sensitive nature of medical data, data aggregation, needs to be privacy preserving. Therefore, interconnecting medical storage platforms with external networks (such as the Internet) is not recommended. Medical data in the proposed medical storage platform is often gathered and organized by fixed users—e.g., purposed medical tablets, smartphones, computed tomography scanners, etc.—with the principle of crowdsourcing.


EXISTING SYSTEM
Ø There is no prior work on scheduling and buffer management in the context of medical big-data platforms
Ø In the general wireless scheduling literature, the sum-rate-maximization (SRM) scheduling is one of the well known schemes that is most closely related to proposed max-weight scheduling.
Disadvantages
Ø Since the SRM schedules user based only on data rates
Ø SRM Schedules has no effect on buffer-backlog and management.





PROPOSED SYSTEM
Ø In this proposed medical storage system, 60-GHz wireless technologies is considered for in-hospital wireless network access. The choice of wireless technologies has been widely advocated and accepted in the literature because of high data rates achieved by ultrawide-bandwidth; e.g., 2.16 GHz in one subchannel and four subchannels in one channel.
Ø Two algorithms are proposed to address the scheduler and buffer management in medical platforms.
Ø The proposed medical platform makes scheduling decisions in each time unit for matching deployed APs and MUs, where the APs are eventually connected to medical platforms.
Ø The proposed medical platform makes the scheduling decision according to the principle of max-weight, which considers data rates between APs and MUs and the queuebacklog size for medical devices.


Advantages
Ø Efficient medical platform design
Ø Address the problem of buffer management and scheduler design
Ø Avoid data overflow and loss in medical devices.


HARDWARE REQUIREMENTS
Processor                     : Any Processor above 500 MHz.
Ram                              :  128Mb.
Hard Disk                    :  10 Gb.
Compact Disk             :  650 Mb.
Input device                :  Standard Keyboard and Mouse.
Output device             :  VGA and High Resolution Monitor.

SOFTWARE SPECIFICATION
Operating System            : Windows Family.
Programming Language   : JDK 1.5 or higher
Database                  : MySQL 5.0




Comments

Popular posts from this blog

IDENTITY-BASED PROXY-ORIENTED DATA UPLOADING AND REMOTE DATA INTEGRITY CHECKING IN PUBLIC CLOUD report

IDENTITY-BASED PROXY-ORIENTED DATA UPLOADING AND REMOTE DATA INTEGRITY CHECKING IN PUBLIC CLOUD ABSTRACT More and more clients would like to store their data to PCS (public cloud servers) along with the rapid development of cloud computing. New security problems have to be solved in order to help more clients process their data in public cloud. When the client is restricted to access PCS, he will delegate its proxy to process his data and upload them. On the other hand, remote data integrity checking is also an important security problem in public cloud storage. It makes the clients check whether their outsourced data is kept intact without downloading the whole data. From the security problems, we propose a novel proxy-oriented data uploading and remote data integrity checking model in identity-based public key cryptography: IDPUIC (identity-based proxy-oriented data uploading and remote data integrity checking in public cloud). We give the formal definition, system model and se...

A SHOULDER SURFING RESISTANT GRAPHICAL AUTHENTICATION SYSTEM

A SHOULDER SURFING RESISTANT GRAPHICAL AUTHENTICATION SYSTEM ABSTRACT Authentication based on passwords is used largely in applications for computer security and privacy. However, human actions such as choosing bad passwords and inputting passwords in an insecure way are regarded as”the weakest link” in the authentication chain. Rather than arbitrary alphanumeric strings, users tend to choose passwords either short or meaningful for easy memorization. With web applications and mobile apps piling up, people can access these applications anytime and anywhere with various devices. This evolution brings great convenience but also increases the probability of exposing passwords to shoulder surfing attacks. Attackers can observe directly or use external recording devices to collect users’ credentials. To overcome this problem, we proposed a novel authentication system PassMatrix, based on graphical passwords to resist shoulder surfing attacks. With a one-time valid login indicator and ...

garbage monitoring using arduino code with gsm

#include <SoftwareSerial.h> #include <LiquidCrystal.h> //LiquidCrystal lcd(7, 6, 5, 4, 3, 2); LiquidCrystal lcd(13, 12, 11, 10, 9, 8); SoftwareSerial mySerial(0,1); #define trigPin 2 #define echoPin 3 #define PIR_sensor 4 #define m11 5 #define m12 6 void setup() {    lcd.begin(16, 2);    lcd.print("    Garbage    ");    Serial.println("garbage ");   lcd.setCursor(0,1);   lcd.print("   Open Close    ");   Serial.println(" open close");   delay(3000);   lcd.clear();   //lcd.print(" ");   delay(2000); mySerial.begin(9600); // Setting the baud rate of GSM Module Serial.begin (9600); pinMode(trigPin, OUTPUT); pinMode(echoPin, INPUT);  pinMode(m11, OUTPUT);   pinMode(m12, OUTPUT);   } void loop() {  readPIR();  pingDist();  SendMessage(); } void pingDist ()   {     long duration, distance;...