Skip to content

Commit 44596d4

Browse files
Initial Commit
1 parent dbf0455 commit 44596d4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Discover pretrained models for deep learning in MATLAB.
3232

3333
Pretrained image classification networks have already learned to extract powerful and informative features from natural images. Use them as a starting point to learn a new task using transfer learning.
3434

35-
The inputs to all networks are RGB images, the output is the predicted label and score:
35+
Inputs are RGB images, the output is the predicted label and score:
3636

3737
![](Images/classification_workflow.png)
3838

@@ -76,7 +76,7 @@ Figure. Comparing image classification model accuracy, speed and size.
7676

7777
Object detection is a computer vision technique used for locating instances of objects in images or videos. When humans look at images or video, we can recognize and locate objects of interest within a matter of moments. The goal of object detection is to replicate this intelligence using a computer.
7878

79-
The inputs to all networks are RGB images, the output is the predicted label, bounding box and score:
79+
Inputs are RGB images, the output is the predicted label, bounding box and score:
8080

8181
![](Images/objectdetection_workflow.png)
8282

@@ -108,7 +108,7 @@ These networks have been trained to detect specific objects for a given applicat
108108

109109
Segmentation is essential for image analysis tasks. Semantic segmentation describes the process of associating each pixel of an image with a class label, (such as flower, person, road, sky, ocean, or car).
110110

111-
All inputs are RGB images, outputs are pixel classifications (semantic maps).
111+
Inputs are RGB images, outputs are pixel classifications (semantic maps).
112112
<img src="Images/semanticseg.png" class="center">
113113

114114
This network has been trained to detect 20 objects classes from the PASCAL VOC dataset:
@@ -131,7 +131,7 @@ This network has been trained to detect 20 objects classes from the PASCAL VOC d
131131

132132
Instance segmentation is an enhanced type of object detection that generates a segmentation map for each detected instance of an object. Instance segmentation treats individual objects as distinct entities, regardless of the class of the objects. In contrast, semantic segmentation considers all objects of the same class as belonging to a single entity.
133133

134-
All inputs are RGB images, outputs are pixel classifications (semantic maps), bounding boxes and classification labels.
134+
Inputs are RGB images, outputs are pixel classifications (semantic maps), bounding boxes and classification labels.
135135

136136
![](Images/maskrcnn.png)
137137

@@ -145,7 +145,7 @@ All inputs are RGB images, outputs are pixel classifications (semantic maps), bo
145145

146146
Image translation is the task of transferring styles and characteristics from one image domain to another. This technique can be extended to other image-to-image learning operations, such as image enhancement, image colorization, defect generation, and medical image analysis.
147147

148-
All inputs are images, outputs are translated RGB images. This example workflow shows how a semantic segmentation map input translates to a synthetic image via a pretrained model (Pix2PixHD):
148+
Inputs are images, outputs are translated RGB images. This example workflow shows how a semantic segmentation map input translates to a synthetic image via a pretrained model (Pix2PixHD):
149149

150150
![](Images/generativeimage.png)
151151

0 commit comments

Comments
 (0)