From 92b25a72006a77073ee99dc69557ce0cde01cc3c Mon Sep 17 00:00:00 2001 From: iovodov <b@ovdv.ru> Date: Thu, 03 May 2018 09:43:48 +0000 Subject: [PATCH] FIX #736: Detector does not draw rects for images with small resolutions --- src/image.h | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/image.h b/src/image.h index 24b8684..ebf28e8 100644 --- a/src/image.h +++ b/src/image.h @@ -77,10 +77,10 @@ YOLODLL_API image load_image_color(char *filename, int w, int h); image **load_alphabet(); -float get_pixel(image m, int x, int y, int c); -float get_pixel_extend(image m, int x, int y, int c); -void set_pixel(image m, int x, int y, int c, float val); -void add_pixel(image m, int x, int y, int c, float val); +//float get_pixel(image m, int x, int y, int c); +//float get_pixel_extend(image m, int x, int y, int c); +//void set_pixel(image m, int x, int y, int c, float val); +//void add_pixel(image m, int x, int y, int c, float val); float bilinear_interpolate(image im, float x, float y, int c); image get_image_layer(image m, int l); -- Gitblit v1.10.0