- Brain
- Chest
- Blood
- Tissue
- Atelectasis
- Consolidation
- Infiltration
- Pneumothorax
- Edema
- Emphysema
- Fibrosis
- Effusion
- Pneumonia
- Pleural thickening
- Cardiomegaly
- Nodule Mass
- Hernia
- Tuberculosis
- Brain tumour
- Leukaemia
- Kidney
- Lungs
- Spleen
- Prostate
- Intestine
- NIH Chest X-rays: This NIH Chest X-ray Dataset is comprised of 112,120 X-ray images with disease labels from 30,805 unique patients.
- Tuberculosis (TB) Chest X-ray Database: A team of researchers from Qatar University, Doha, Qatar, and the University of Dhaka, Bangladesh along with their collaborators from Malaysia in collaboration with medical doctors from Hamad Medical Corporation and Bangladesh have created a database of chest X-ray images for Tuberculosis (TB) positive cases along with Normal images. In our current release, there are 700 TB images publicly accessible and 2800 TB images can be downloaded from NIAID TB portal[3] by signing an agreement, and 3500 normal images.
- Brain Tumor Segmentation Dataset: BraTS has always been focusing on the evaluation of state-of-the-art methods for the segmentation of brain tumors in multimodal magnetic resonance imaging (MRI) scans.
- Leukemia Classification Dataset: In total there are 15,135 images from 118 patients with two labelled classes Normal and Leukemia cells. It is from National Cancer institute.
- Blood Cell Image: The diagnosis of blood-based diseases often involves identifying and characterizing patient blood samples. Automated methods to detect and classify blood cell subtypes have important medical applications.
- Hubmap: The Human BioMolecular Atlas Program (HuBMAP) is working to create a Human Reference Atlas at the cellular level. In this competition, you’ll identify and segment functional tissue units (FTUs) across five human organs.
Check this website https://base64.guru/converter/encode/image to know what kind of input goes into api( you can convert you image to base 64 and use postman to check if api working fine by passing input image through there as base 64 ) Header
let headersList = {
"Accept": "*/*",
"User-Agent": "Thunder Client (https://www.thunderclient.com)",
"x-api-key": "<key>",
"Content-Type": "application/json"
}
Endpoint: https://lrblt6nnp4.execute-api.ap-south-1.amazonaws.com/beta/brain Input type: dcm Payload
{
"Image": "<image in base 64>"
}
Return
{
"Result": "Image is of tumour/ not tumour"
}
Endpoint: https://lrblt6nnp4.execute-api.ap-south-1.amazonaws.com/beta/chest Input type: png Payload
{
"Image": "<image in base 64>"
}
Return
{
"Result": "Image is of x disease"
}
Endpoint: https://lrblt6nnp4.execute-api.ap-south-1.amazonaws.com/beta/leukaemia Input type: bmp Payload
{
"Image": "<image in base 64>"
}
Return
{
"Result": "Image is of leukaemia/or not"
}
Endpoint: https://lrblt6nnp4.execute-api.ap-south-1.amazonaws.com/beta/tissue Input type: Tiff Output type: jpg Payload
{
"Image": "<image in base 64>",
"Organ": "spleen" // there is 4 option 'kidney', 'largeintestine', 'lung', 'prostate', 'spleen'
}
Return
{
"Result": "<Image result in base64>"
}