This repository has been archived on 2026-04-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
c-net/image.c

11 lines
129 B
C

#pragma once
#include "image.h"
#include "matrix.h"
typedef struct {
Matrix* pixel_values;
int image_label;
} Image;