| 29 | * @interface ImageGray |
| 30 | */ |
| 31 | export interface ImageGray { |
| 32 | |
| 33 | /** |
| 34 | * Get the number of columns |
| 35 | * @type {number} |
| 36 | * @memberof ImageGray |
| 37 | */ |
| 38 | readonly cols: number; |
| 39 | |
| 40 | /** |
| 41 | * Get the number of rows |
| 42 | * @type {number} |
| 43 | * @memberof ImageGray |
| 44 | */ |
| 45 | readonly rows: number; |
| 46 | } |
| 47 | |
| 48 | /** |
| 49 | * Represents the ImageRGB object |
nothing calls this directly
no outgoing calls
no test coverage detected