KiCad PCB EDA Suite
Loading...
Searching...
No Matches
image.h File Reference

one 8bit-channel image definition. More...

#include <wx/string.h>

Go to the source code of this file.

Classes

struct  S_FILTER
 5x5 Filter struct parameters More...
 
class  IMAGE
 Manage an 8-bit channel image. More...
 

Enumerations

enum class  IMAGE_OP {
  RAW , ADD , SUB , DIF ,
  MUL , AND , OR , XOR ,
  BLEND50 , MIN , MAX
}
 Image operation type. More...
 
enum class  IMAGE_WRAP { ZERO , CLAMP , WRAP }
 Image wrap type enumeration. More...
 
enum class  IMAGE_FILTER {
  HIPASS , GAUSSIAN_BLUR , GAUSSIAN_BLUR2 , INVERT_BLUR ,
  CARTOON , EMBOSS , SHARPEN , MELT ,
  SOBEL_GX , SOBEL_GY , BLUR_3X3
}
 Filter type enumeration. More...
 

Detailed Description

one 8bit-channel image definition.

Definition in file image.h.

Enumeration Type Documentation

◆ IMAGE_FILTER

enum class IMAGE_FILTER
strong

Filter type enumeration.

Enumerator
HIPASS 
GAUSSIAN_BLUR 
GAUSSIAN_BLUR2 
INVERT_BLUR 
CARTOON 
EMBOSS 
SHARPEN 
MELT 
SOBEL_GX 
SOBEL_GY 
BLUR_3X3 

Definition at line 62 of file image.h.

◆ IMAGE_OP

enum class IMAGE_OP
strong

Image operation type.

Enumerator
RAW 
ADD 
SUB 
DIF 
MUL 
AND 
OR 
XOR 
BLEND50 
MIN 
MAX 

Definition at line 36 of file image.h.

◆ IMAGE_WRAP

enum class IMAGE_WRAP
strong

Image wrap type enumeration.

Enumerator
ZERO 

Coords that wraps are not evaluated.

CLAMP 

Coords are clamped to image size.

WRAP 

Coords are wrapped around.

Definition at line 53 of file image.h.