欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

yolo - train_detector - Resizing

程序员文章站 2024-03-18 22:42:40
...

yolo - train_detector - Resizing

/home/strong/eclipse-workspace/darknet_0921/examples/detector.c
void train_detector(char *datacfg, char *cfgfile, char *weightfile, int *gpus, int ngpus, int clear)
{
}

printf("Resizing\n");

1. Resizing
int dim = (rand() % 10 + 10) * 32;
yolo - train_detector - Resizing

2. Resizing
int dim = (rand() % 4 + 16) * 32;

yolo - train_detector - Resizing

3. Resizing

int dim = (rand() % 10 + 16) * 32;

yolo - train_detector - Resizing


4. Resizing

int dim = (rand() % 12 + 16) * 32;

yolo - train_detector - Resizing