Skip to content

Commit 1d033e9

Browse files
committed
update glossary
1 parent 17b7e0b commit 1d033e9

File tree

1 file changed

+54
-48
lines changed

1 file changed

+54
-48
lines changed

reference.md

Lines changed: 54 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -4,141 +4,147 @@ layout: reference
44

55
## Glossary
66

7+
(Some definitions are taken from [Glosario](https://glosario.carpentries.org).
8+
Follow the links from terms to see definitions in languages other than English.)
9+
710
{:auto_ids}
811

912
adaptive thresholding
10-
:
13+
: thresholding that uses a cut-off value that varies for pixels in different regions of the image.
1114

1215

13-
additive color model
14-
: a color model that predicts the appearance of colors by summing the numeric representations of the component colors
16+
additive colour model
17+
: a colour model that predicts the appearance of colours by summing the numeric representations of the component colours.
1518

1619

1720
bacterial colony
18-
: a visible cluster of bacteria growing on the surface of or within a solid medium, presumably cultured from a single cell
21+
: a visible cluster of bacteria growing on the surface of or within a solid medium, presumably cultured from a single cell.
1922

2023

2124
binary image
22-
: a digital image that has only two possible values for each pixel. Typically, the two colors used for a binary image are black and white.
25+
: an image of pixels with only two possible values, 0 and 1. Typically, the two colours used for a binary image are black and white.
26+
27+
28+
[bit](https://glosario.carpentries.org/en/#bit)
29+
: a unit of information representing alternatives, yes/no, true/false. In computing a state of either 0 or 1.
2330

2431

25-
Gaussian blur
26-
: a widely used effect in graphics software, typically to reduce image noise and reduce detail
32+
blur
33+
: the averaging of pixel intensities within a neighbourhood. This has the effect of "softening" the features of the image, reducing noise and finer detail.
2734

2835

2936
BMP (bitmap image file)
30-
: a raster graphics image file format used to store bitmap digital images, independently of the display device
37+
: a raster graphics image file format used to store bitmap digital images, independently of the display device.
3138

3239

3340
bounding box
34-
: the smallest enclosing box for a set of points
41+
: the smallest enclosing box for a set of points.
3542

3643

37-
colorimetrics
38-
: the science of describing human color perception
44+
[byte](https://glosario.carpentries.org/en/#byte)
45+
: a unit of digital information that typically consists of eight binary digits, or bits.
3946

4047

41-
channel
42-
: the grayscale representation of a primary color in a digital image
48+
colorimetrics
49+
: the processing and analysis of objects based on their colour.
4350

4451

45-
contour
46-
:
52+
compression
53+
: a class of data encoding methods that aims to reduce the size of a file while retaining some or all of the information it contains.
4754

4855

49-
child (in contours)
50-
:
56+
channel
57+
: a set of pixel intensities within an image that were measured in the same way e.g. at a given wavelength.
5158

5259

5360
crop
54-
: the removal of unwanted outer areas from an image
61+
: the removal of unwanted outer areas from an image.
5562

5663

57-
color histogram
58-
: a representation of the number of pixels that have colors in each of a fixed list of color ranges
64+
colour histogram
65+
: a representation of the number of pixels that have colours in each of a fixed list of colour ranges.
5966

6067

6168
edge detection
62-
: a variety of mathematical methods that aim at identifying points in a digital image at which the image brightness changes sharply
69+
: a variety of methods that attempt to automatically identify the boundaries of objects within an image.
6370

6471

6572
fixed-level thresholding
66-
: picking a constant cut-off value to distinguish between pixels considered "on" and "off"
73+
: thresholding that uses a single, constant cut-off value for every pixel in the image.
6774

6875

6976
grayscale
70-
: an image in which the value of each pixel is a single value representing only the amount of light (or intensity) of that pixel
77+
: an image in which the value of each pixel is a single value representing only the amount of light (or intensity) of that pixel.
78+
79+
80+
[histogram](https://glosario.carpentries.org/en/#histogram)
81+
: a graphical representation of the distribution of a set of numeric data, usually a vertical bar graph.
7182

7283

7384
image segmentation
74-
: the process of partitioning a digital image into multiple segments to make the image more meaningful and easier to analyze
85+
: the process of dividing an image into multiple sections, to be processed or analysed independently.
7586

7687

7788
intensity
78-
: value corresponding to amount of light in a pixel
89+
: the value measured at a given pixel in the image.
7990

8091

8192
JPEG
82-
: a commonly used method of lossy compression for digital images, particularly for those images produced by digital photography
93+
: a commonly used method of lossy compression for digital images, particularly for those images produced by digital photography
8394

8495

8596
kernel
86-
: [a small matrix. It is used for blurring, sharpening, embossing, edge detection, and more](https://en.wikipedia.org/wiki/Kernel_(image_processing))
97+
: a matrix, usually relatively small, defining a neighbourhood of pixel intensities that will be considered during blurring, edge detection, and other operations.
8798

8899

89100
left-hand coordinate system
90-
:
101+
: a system of coordinates where the origin is at the top-left extreme of the image, and coordinates increase as you move down the y axis.
91102

92103

93104
lossy compression
94-
: a class of data encoding methods that uses inexact approximations and partial data discarding to represent the content
105+
: a class of data compression methods that uses inexact approximations and partial data discarding to represent the content.
95106

96107

97108
lossless compression
98-
: a class of data compression algorithms that allows the original data to be perfectly reconstructed from the compressed data
109+
: a class of data compression methods that allows the original data to be perfectly reconstructed from the compressed data.
99110

100111

101112
maize
102-
: also known as corn
113+
: a common crop plant grown in many regions of the world. Also known as corn.
103114

104115

105116
mask
106-
: applied to digital images to "cut-out" the background or other unwanted features
117+
: a binary matrix, usually of the same dimensions as the target image, representing which pixels should be included and excluded in further processing and analysis.
107118

108119

109120
morphometrics
110-
: the quantitative analysis of form, a concept that encompasses size and shape
121+
: the processing and analysis of objects based on their size and shape.
111122

112123

113124
noise
114-
: random variation of brightness or color information in images. An undesirable by-product of image capture that obscures the desired information.
125+
: random variation of brightness or colour information in images. An undesirable by-product of image capture that obscures the desired information.
115126

116127

117-
parent (in contours)
118-
:
128+
pixel
129+
: the individual units of intensity that make up an image.
119130

120131

121-
raster graphics
122-
: a dot matrix data structure that represents a generally rectangular grid of pixels
132+
[raster graphics](https://glosario.carpentries.org/en/#raster_image)
133+
: images stored as a matrix of pixels.
123134

124135

125-
RGB color model
126-
: an additive color model in which red, green and blue light are added together in various ways to reproduce a broad array of colors. The name of the model comes from the initials of the three additive primary colors, red, green, and blue.
127-
128-
129-
root (in contours)
130-
:
136+
RGB colour model
137+
: an additive colour model describing colour in a image with a combination of pixel intensities in three channels: red, green, and blue.
131138

132139

133140
thresholding
134-
: the simplest method of image segmentation. From a grayscale image, thresholding can be used to create binary images
141+
: the process of creating a binary version of a grayscale image, based on whether pixel values fall above or below a given limit or cut-off value.
135142

136143

137144
TIFF (Tagged Image File Format)
138-
: a computer file format for storing raster graphics images; also
145+
: a computer file format for storing raster graphics images; also
139146
abbreviated TIF
140147

141148

142149
titration
143-
: a common laboratory method of quantitative chemical analysis to determine the concentration of an identified analyte (a substance to be analyzed)
144-
150+
: a common laboratory method of quantitative chemical analysis to determine the concentration of an identified analyte (a substance to be analyzed)

0 commit comments

Comments
 (0)