OpenCV Module
OpenCV
OpenCV utility class for image processing.
Source code in devices\raspberry_pi_5\src\opencv\__init__.py
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 |
|
get_bgr_color(class_number, rgb_colors=None)
classmethod
Get BGR color.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
class_number
|
int
|
Class number. |
required |
rgb_colors
|
tuple[tuple[int, int, int]]
|
Tuple mapping class indices to RGB colors. |
None
|
Returns:
tuple[int, int, int]: BGR color tuple for the class number.
Source code in devices\raspberry_pi_5\src\opencv\__init__.py
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
|
get_model_classes_color_palette(model_name)
staticmethod
Get the model classes color palette.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model_name
|
str
|
Name of the YOLO model. |
required |
Returns:
tuple[tuple[int, int, int]]: Tuple mapping class indices to RGB color tuples.
Raises:
ValueError: If the model name does not have a defined color palette.
Source code in devices\raspberry_pi_5\src\opencv\__init__.py
309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 |
|
get_rgb_color(class_number, rgb_colors=None)
classmethod
Get RGB color.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
class_number
|
int
|
Class number. |
required |
rgb_colors
|
tuple[tuple[int, int, int]]
|
Tuple mapping class indices to RGB colors. |
None
|
Returns:
tuple[int, int, int]: RGB color tuple for the class number.
Source code in devices\raspberry_pi_5\src\opencv\__init__.py
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
|
load_and_preprocess_image(image_path, image_size=(SIZE, SIZE), to_rgb=True, interpolation=cv2.INTER_LINEAR)
classmethod
Load and preprocess an image.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
image_path
|
str | PathLike[str]
|
Path to the image file. |
required |
image_size
|
tuple[int, int]
|
Size to resize the image to. |
(SIZE, SIZE)
|
to_rgb
|
bool
|
Whether to convert the image to RGB format. |
True
|
interpolation
|
Interpolation method used for resizing. |
INTER_LINEAR
|
Returns:
tuple[np.ndarray, np.ndarray]: Original image and preprocessed image tensor.
Source code in devices\raspberry_pi_5\src\opencv\__init__.py
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 |
|
load_image(image_path, image_size=None, to_rgb=True, interpolation=cv2.INTER_LINEAR)
classmethod
Load an image from a file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
image_path
|
str
|
Path to the image file. |
required |
image_size
|
tuple[int, int]
|
Size to resize the image to. |
None
|
to_rgb
|
bool
|
Whether to convert the image to RGB format. |
True
|
interpolation
|
Interpolation method used for resizing. |
INTER_LINEAR
|
Returns:
np.ndarray: Loaded image.
Raises:
ValueError: If the image path is invalid or the image cannot be loaded.
Source code in devices\raspberry_pi_5\src\opencv\__init__.py
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
|
preprocess(image)
classmethod
Preprocess the image.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
image
|
ndarray
|
Image to preprocess. |
required |
Returns:
np.ndarray: Preprocessed image tensor.
Source code in devices\raspberry_pi_5\src\opencv\__init__.py
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 |
|
preprocess_images_to_npy(input_folder, output_file, target_shape=SHAPE)
classmethod
Preprocess images from a folder and save them as a .npy file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
input_folder
|
str | PathLike[str]
|
Path to the folder containing images. |
required |
output_file
|
str | PathLike[str]
|
Path where the .npy file will be saved. |
required |
target_shape
|
tuple
|
Desired shape of the images (height, width, channels). |
SHAPE
|
Source code in devices\raspberry_pi_5\src\opencv\__init__.py
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 |
|
preprocess_pil_image(image)
classmethod
Preprocess a PIL image.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
image
|
Image
|
PIL image to preprocess. |
required |
Returns:
np.ndarray: Preprocessed image tensor.
Source code in devices\raspberry_pi_5\src\opencv\__init__.py
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 |
|
resize_image(image, size=(SIZE, SIZE), interpolation=cv2.INTER_LINEAR)
staticmethod
Resize an image to the specified size.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
image
|
ndarray
|
Image to resize. |
required |
size
|
tuple[int, int
|
Desired size (width, height). |
(SIZE, SIZE)
|
interpolation
|
Interpolation method used for resizing. |
INTER_LINEAR
|
Returns:
np.ndarray: Resized image.
Source code in devices\raspberry_pi_5\src\opencv\__init__.py
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
|
resize_images(input_to_process_dir, output_resized_to_process_dir, output_processed_dir=None, new_image_size=SIZE, interpolation=cv2.INTER_LINEAR)
classmethod
Resize images function.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
input_to_process_dir
|
str | PathLike[str]
|
Directory containing images to be resized. |
required |
output_resized_to_process_dir
|
str | PathLike[str]
|
Directory where resized images will be saved. |
required |
new_image_size
|
tuple[int, int]
|
New size for the images as (width, height). |
SIZE
|
output_processed_dir
|
Optional[str | PathLike[str]]
|
Directory where original images will be moved after processing. |
None
|
interpolation
|
Interpolation method used for resizing. |
INTER_LINEAR
|
Source code in devices\raspberry_pi_5\src\opencv\__init__.py
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 |
|
rgb_to_bgr(rgb)
staticmethod
Convert RGB to BGR.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
rgb
|
tuple[int, int, int]
|
RGB color tuple. |
required |
Returns:
tuple: BGR color tuple.
Source code in devices\raspberry_pi_5\src\opencv\__init__.py
44 45 46 47 48 49 50 51 52 53 54 |
|