Bin
2025-12-16 9e0b2ba2c317b1a86212f24cbae3195ad1f3dbfa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
title: Medical Image Classification with Bounding Boxes
type: community
group: Computer Vision
image: /static/templates/medical-image-classification.png
details: |
  <h1>Classify medical images and draw regions</h1>
  <dl>
    <dt>Industry Applications</dt>
    <dd>radiology, pathology, oncology, diagnostic imaging, medical diagnosis, clinical decision support, medical AI, healthcare AI, X-ray, CT scan, MRI, ultrasound, mammography, histopathology, digital pathology, medical imaging, radiological imaging, cancer detection, tumor segmentation, lesion detection, abnormality detection, screening programs, early detection, medical screening</dd>
    <dt>Domain Terminology</dt>
    <dd>FDA approval, medical device, clinical validation, regulatory submission, HIPAA compliance, medical data, patient privacy</dd>
  </dl>
config: |
  <View>
    <Image name="image" value="$image"/>
 
    <RectangleLabels name="label" toName="image">
      <Label value="Tumor" background="green"/>
    </RectangleLabels>
 
    <Choices name="classification" toName="image">
      <Choice value="Benign"/>
      <Choice value="Malignant"/>
      <Choice value="Normal"/>
    </Choices>
  </View>