| #include "mtmd-image.h" |
|
|
| #include <algorithm> |
| #include <cmath> |
| #include <vector> |
|
|
| void mtmd_image_preproc_out::append(const clip_hparams & hparams, const clip_image_u8 & img, bool normalized) { |
| clip_image_f32 dst; |
| dst.from_u8(img); |
| if (normalized) { |
| dst.normalize(hparams.image_mean, hparams.image_std); |
| } |
| entries.push_back(std::move(dst)); |
| } |
|
|
| void mtmd_image_preproc_out::append(const clip_hparams & hparams, const std::vector<clip_image_u8> & imgs, bool normalized) { |
| for (const auto & img : imgs) { |
| append(hparams, img, normalized); |
| } |
| } |
|
|
| void mtmd_image_preproc_out::append(const clip_hparams & hparams, clip_image_f32 & img, bool normalized) { |
| if (normalized) { |
| img.normalize(hparams.image_mean, hparams.image_std); |
| } |
| entries.push_back(std::move(img)); |
| } |
|
|
| void mtmd_image_preproc_out::append_overview(const clip_hparams & hparams, const clip_image_u8 & img, bool normalized) { |
| overview.from_u8(img); |
| if (normalized) { |
| overview.normalize(hparams.image_mean, hparams.image_std); |
| } |
| } |
|
|
| |
| |
| struct img_tool { |
| static void resize( |
| const clip_image_u8 & src, |
| clip_image_u8 & dst, |
| const clip_image_size & target_resolution, |
| resize_algo algo, |
| pad_style padding = PAD_CEIL, |
| std::array<uint8_t, 3> pad_color = {0, 0, 0}) { |
| dst.set_size(target_resolution, src.is_placeholder()); |
|
|
| if (src.is_placeholder()) { |
| |
| return; |
| } |
|
|
| if (dst.get_size() == src.get_size()) { |
| |
| dst.cpy_buf(src.get_ro_buf()); |
| return; |
| } |
|
|
| if (padding == PAD_NONE) { |
| |
| switch (algo) { |
| case RESIZE_ALGO_BILINEAR: |
| resize_bilinear(src, dst, target_resolution.width, target_resolution.height); |
| break; |
| case RESIZE_ALGO_BICUBIC: |
| resize_bicubic(src, dst, target_resolution.width, target_resolution.height); |
| break; |
| case RESIZE_ALGO_BICUBIC_PILLOW: |
| resize_bicubic_pillow(src, dst, target_resolution.width, target_resolution.height); |
| break; |
| case RESIZE_ALGO_LANCZOS: |
| resize_lanczos_pillow(src, dst, target_resolution.width, target_resolution.height); |
| break; |
| default: |
| throw std::runtime_error("Unsupported resize algorithm"); |
| } |
| } else { |
| |
| clip_image_u8 resized_image; |
| float scale_w = static_cast<float>(target_resolution.width) / src.get_size().width; |
| float scale_h = static_cast<float>(target_resolution.height) / src.get_size().height; |
| float scale = std::min(scale_w, scale_h); |
|
|
| int new_width, new_height; |
| if (padding == PAD_NEAREST) { |
| new_width = std::min(static_cast<int>(std::round(src.get_size().width * scale)), target_resolution.width); |
| new_height = std::min(static_cast<int>(std::round(src.get_size().height * scale)), target_resolution.height); |
| } else { |
| new_width = std::min(static_cast<int>(std::ceil(src.get_size().width * scale)), target_resolution.width); |
| new_height = std::min(static_cast<int>(std::ceil(src.get_size().height * scale)), target_resolution.height); |
| } |
|
|
| switch (algo) { |
| case RESIZE_ALGO_BILINEAR: |
| resize_bilinear(src, resized_image, new_width, new_height); |
| break; |
| case RESIZE_ALGO_BICUBIC: |
| resize_bicubic(src, resized_image, new_width, new_height); |
| break; |
| case RESIZE_ALGO_BICUBIC_PILLOW: |
| resize_bicubic_pillow(src, resized_image, new_width, new_height); |
| break; |
| case RESIZE_ALGO_LANCZOS: |
| resize_lanczos_pillow(src, resized_image, new_width, new_height); |
| break; |
| default: |
| throw std::runtime_error("Unsupported resize algorithm"); |
| } |
|
|
| |
| fill(dst, pad_color); |
|
|
| int offset_x, offset_y; |
| if (padding == PAD_NEAREST) { |
| offset_x = static_cast<int>(std::round((target_resolution.width - new_width) / 2.0f)); |
| offset_y = static_cast<int>(std::round((target_resolution.height - new_height) / 2.0f)); |
| } else { |
| offset_x = (target_resolution.width - new_width) / 2; |
| offset_y = (target_resolution.height - new_height) / 2; |
| } |
| composite(dst, resized_image, offset_x, offset_y); |
| } |
| } |
|
|
| static void crop(const clip_image_u8 & image, clip_image_u8 & dst, int x, int y, int w, int h) { |
| GGML_ASSERT(x >= 0 && y >= 0 && w > 0 && h > 0); |
| GGML_ASSERT(x + w <= image.get_size().width && y + h <= image.get_size().height); |
| dst.set_size({w, h}, image.is_placeholder()); |
|
|
| if (image.is_placeholder()) { |
| |
| return; |
| } |
|
|
| for (int i = 0; i < h; ++i) { |
| for (int j = 0; j < w; ++j) { |
| dst.set_pixel(j, i, image.get_pixel(x + j, y + i)); |
| } |
| } |
| } |
|
|
| struct calc_size_opt { |
| int align_size = 1; |
| int min_pixels = 0; |
| int max_pixels = 0; |
| |
| int longest_edge = 0; |
| }; |
|
|
| |
| |
| static clip_image_size calc_size_preserved_ratio(const clip_image_size & inp_size, const calc_size_opt & opts) { |
| GGML_ASSERT(opts.align_size > 0); |
| const int width = inp_size.width; |
| const int height = inp_size.height; |
| if (width <= 0 || height <= 0) { |
| return {0, 0}; |
| } |
|
|
| auto round_by_factor = [f = opts.align_size](float x) { return static_cast<int>(std::round(x / static_cast<float>(f))) * f; }; |
| auto ceil_by_factor = [f = opts.align_size](float x) { return static_cast<int>(std::ceil(x / static_cast<float>(f))) * f; }; |
| auto floor_by_factor = [f = opts.align_size](float x) { return static_cast<int>(std::floor(x / static_cast<float>(f))) * f; }; |
|
|
| int w_bar, h_bar; |
| if (opts.longest_edge > 0) { |
| const float scale = std::min(static_cast<float>(opts.longest_edge) / width, |
| static_cast<float>(opts.longest_edge) / height); |
| w_bar = ceil_by_factor(width * scale); |
| h_bar = ceil_by_factor(height * scale); |
| } else { |
| |
| w_bar = std::max(opts.align_size, round_by_factor(width)); |
| h_bar = std::max(opts.align_size, round_by_factor(height)); |
| } |
|
|
| if (opts.max_pixels > 0 && h_bar * w_bar > opts.max_pixels) { |
| const auto beta = std::sqrt(static_cast<float>(height) * width / opts.max_pixels); |
| h_bar = std::max(opts.align_size, floor_by_factor(height / beta)); |
| w_bar = std::max(opts.align_size, floor_by_factor(width / beta)); |
| } else if (opts.min_pixels > 0 && h_bar * w_bar < opts.min_pixels) { |
| const auto beta = std::sqrt(static_cast<float>(opts.min_pixels) / (static_cast<float>(height) * width)); |
| h_bar = ceil_by_factor(height * beta); |
| w_bar = ceil_by_factor(width * beta); |
| } |
|
|
| return {w_bar, h_bar}; |
| } |
|
|
| |
| static void composite(clip_image_u8 & dst, const clip_image_u8 & src, int offset_x, int offset_y) { |
| if (src.is_placeholder()) { |
| |
| return; |
| } |
|
|
| const auto src_size = src.get_size(); |
| const auto dst_size = dst.get_size(); |
| for (int y = 0; y < src_size.height; ++y) { |
| for (int x = 0; x < src_size.width; ++x) { |
| int dx = x + offset_x; |
| int dy = y + offset_y; |
| |
| if (dx < 0 || dy < 0 || dx >= dst_size.width || dy >= dst_size.height) { |
| continue; |
| } |
| dst.set_pixel(dx, dy, src.get_pixel(x, y)); |
| } |
| } |
| } |
|
|
| |
| static void fill(clip_image_u8 & img, const std::array<uint8_t, 3> & color) { |
| if (img.is_placeholder()) { |
| |
| return; |
| } |
|
|
| const auto size = img.get_size(); |
| for (int y = 0; y < size.height; ++y) { |
| for (int x = 0; x < size.width; ++x) { |
| img.set_pixel(x, y, color); |
| } |
| } |
| } |
|
|
| private: |
| |
| static void resize_bilinear(const clip_image_u8 & src, clip_image_u8 & dst, int target_width, int target_height) { |
| const auto src_size = src.get_size(); |
| if (src_size.width == 0 || src_size.height == 0) { dst.set_size({0, 0}, false); return; } |
| if (target_width <= 0) target_width = 1; |
| if (target_height <= 0) target_height = 1; |
|
|
| dst.set_size({target_width, target_height}, false); |
|
|
| if (src.is_placeholder()) { |
| |
| return; |
| } |
|
|
| float x_ratio = target_width > 1 ? static_cast<float>(src_size.width - 1) / (target_width - 1) : 0.0f; |
| float y_ratio = target_height > 1 ? static_cast<float>(src_size.height - 1) / (target_height - 1) : 0.0f; |
|
|
| for (int y = 0; y < target_height; ++y) { |
| for (int x = 0; x < target_width; ++x) { |
| float px = x * x_ratio; |
| float py = y * y_ratio; |
|
|
| int x0 = std::min(static_cast<int>(px), src_size.width - 1); |
| int y0 = std::min(static_cast<int>(py), src_size.height - 1); |
| int x1 = std::min(x0 + 1, src_size.width - 1); |
| int y1 = std::min(y0 + 1, src_size.height - 1); |
|
|
| float xf = px - x0; |
| float yf = py - y0; |
|
|
| const auto p00 = src.get_pixel(x0, y0); |
| const auto p10 = src.get_pixel(x1, y0); |
| const auto p01 = src.get_pixel(x0, y1); |
| const auto p11 = src.get_pixel(x1, y1); |
|
|
| std::array<uint8_t, 3> pixel; |
| for (int c = 0; c < 3; ++c) { |
| float top = lerp(static_cast<float>(p00[c]), static_cast<float>(p10[c]), xf); |
| float bottom = lerp(static_cast<float>(p01[c]), static_cast<float>(p11[c]), xf); |
| pixel[c] = static_cast<uint8_t>(lerp(top, bottom, yf)); |
| } |
| dst.set_pixel(x, y, pixel); |
| } |
| } |
| } |
|
|
| |
| |
| static void resize_bicubic(const clip_image_u8 & img, clip_image_u8 & dst, int target_width, int target_height) { |
| const auto img_size = img.get_size(); |
| const int nx = img_size.width; |
| const int ny = img_size.height; |
|
|
| dst.set_size({target_width, target_height}, false); |
|
|
| if (img.is_placeholder()) { |
| |
| return; |
| } |
|
|
| float Cc; |
| float C[5] = {}; |
| float d0, d2, d3, a0, a1, a2, a3; |
| int i, j, k, jj; |
| int x, y; |
| float dx, dy; |
| float tx, ty; |
|
|
| tx = (float)nx / (float)target_width; |
| ty = (float)ny / (float)target_height; |
|
|
| |
| |
| |
|
|
| for (i = 0; i < target_height; i++) { |
| for (j = 0; j < target_width; j++) { |
| x = (int)(tx * j); |
| y = (int)(ty * i); |
|
|
| dx = tx * j - x; |
| dy = ty * i - y; |
|
|
| std::array<uint8_t, 3> pixel; |
| for (k = 0; k < 3; k++) { |
| for (jj = 0; jj <= 3; jj++) { |
| d0 = img.get_pixel(clip(x - 1, 0, nx - 1), clip(y - 1 + jj, 0, ny - 1))[k] - img.get_pixel(clip(x, 0, nx - 1), clip(y - 1 + jj, 0, ny - 1))[k]; |
| d2 = img.get_pixel(clip(x + 1, 0, nx - 1), clip(y - 1 + jj, 0, ny - 1))[k] - img.get_pixel(clip(x, 0, nx - 1), clip(y - 1 + jj, 0, ny - 1))[k]; |
| d3 = img.get_pixel(clip(x + 2, 0, nx - 1), clip(y - 1 + jj, 0, ny - 1))[k] - img.get_pixel(clip(x, 0, nx - 1), clip(y - 1 + jj, 0, ny - 1))[k]; |
| a0 = img.get_pixel(clip(x, 0, nx - 1), clip(y - 1 + jj, 0, ny - 1))[k]; |
|
|
| a1 = -1.0 / 3 * d0 + d2 - 1.0 / 6 * d3; |
| a2 = 1.0 / 2 * d0 + 1.0 / 2 * d2; |
| a3 = -1.0 / 6 * d0 - 1.0 / 2 * d2 + 1.0 / 6 * d3; |
|
|
| C[jj] = a0 + a1 * dx + a2 * dx * dx + a3 * dx * dx * dx; |
|
|
| d0 = C[0] - C[1]; |
| d2 = C[2] - C[1]; |
| d3 = C[3] - C[1]; |
| a0 = C[1]; |
| a1 = -1.0 / 3 * d0 + d2 - 1.0 / 6 * d3; |
| a2 = 1.0 / 2 * d0 + 1.0 / 2 * d2; |
| a3 = -1.0 / 6 * d0 - 1.0 / 2 * d2 + 1.0 / 6 * d3; |
| Cc = a0 + a1 * dy + a2 * dy * dy + a3 * dy * dy * dy; |
|
|
| const uint8_t Cc2 = std::min(std::max(std::round(Cc), 0.0f), 255.0f); |
| pixel[k] = Cc2; |
| } |
| } |
| dst.set_pixel(j, i, pixel); |
| } |
| } |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| static bool resize_bicubic_pillow(const clip_image_u8 & img, clip_image_u8 & dst, int target_width, int target_height) { |
| return resize_pillow(img, dst, target_width, target_height, false); |
| } |
|
|
| |
| static bool resize_lanczos_pillow(const clip_image_u8 & img, clip_image_u8 & dst, int target_width, int target_height) { |
| return resize_pillow(img, dst, target_width, target_height, true); |
| } |
|
|
| static bool resize_pillow( |
| const clip_image_u8 & img, |
| clip_image_u8 & dst, |
| int target_width, |
| int target_height, |
| bool use_lanczos) { |
| |
| |
| const int PRECISION_BITS = 32 - 8 - 2; |
|
|
| |
| |
| |
| auto resample_filter = [use_lanczos](double x) -> double { |
| if (use_lanczos) { |
| if (-3.0 <= x && x < 3.0) { |
| auto sinc = [](double v) { |
| if (v == 0.0) { |
| return 1.0; |
| } |
| const double pi_v = v * 3.141592653589793238462643383279502884; |
| return std::sin(pi_v) / pi_v; |
| }; |
| return sinc(x) * sinc(x / 3.0); |
| } |
| return 0.0; |
| } |
|
|
| constexpr double a = -0.5; |
| if (x < 0.0) { |
| x = -x; |
| } |
| if (x < 1.0) { |
| return ((a + 2.0) * x - (a + 3.0)) * x * x + 1; |
| } |
| if (x < 2.0) { |
| return (((x - 5) * x + 8) * x - 4) * a; |
| } |
| return 0.0; |
| }; |
|
|
| |
| const double filter_support = use_lanczos ? 3.0 : 2.0; |
|
|
| |
| auto clip8 = [](int val) -> uint8_t { |
| if (val < 0) return 0; |
| if (val > 255) return 255; |
| return static_cast<uint8_t>(val); |
| }; |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| auto precompute_weights = [&](int inSize, int outSize, |
| std::vector<int> & bounds, std::vector<int32_t> & weights) -> int { |
| GGML_ASSERT(inSize > 0 && outSize > 0); |
| double support, scale, filterscale; |
| double center, ww, ss; |
| int xx, x, ksize, xmin, xmax; |
|
|
| |
| filterscale = scale = static_cast<double>(inSize) / outSize; |
| |
| |
| if (filterscale < 1.0) { |
| filterscale = 1.0; |
| } |
|
|
| |
| support = filter_support * filterscale; |
| ksize = static_cast<int>(std::ceil(support)) * 2 + 1; |
|
|
| std::vector<double> pre_weights(outSize * ksize); |
| bounds.resize(outSize * 2); |
|
|
|
|
| |
| for (xx = 0; xx < outSize; xx++) { |
| |
| center = (xx + 0.5) * scale; |
| ww = 0.0; |
| ss = 1.0 / filterscale; |
|
|
| |
| xmin = static_cast<int>(center - support + 0.5); |
| if (xmin < 0) { |
| xmin = 0; |
| } |
|
|
| xmax = static_cast<int>(center + support + 0.5); |
| if (xmax > inSize) { |
| xmax = inSize; |
| } |
|
|
| xmax -= xmin; |
|
|
| |
| for (x = 0; x < xmax; x++) { |
| |
| double w = resample_filter((x + xmin - center + 0.5) * ss); |
| pre_weights[xx * ksize + x] = w; |
| ww += w; |
| } |
|
|
| |
| for (x = 0; x < xmax; x++) { |
| if (ww != 0.0) { |
| pre_weights[xx * ksize + x] /= ww; |
| } |
| } |
|
|
| |
| for (; x < ksize; x++) { |
| pre_weights[xx * ksize + x] = 0; |
| } |
|
|
| |
| bounds[xx * 2 + 0] = xmin; |
| bounds[xx * 2 + 1] = xmax; |
| } |
|
|
| |
| |
| weights.resize(outSize * ksize); |
|
|
| const double fxp_scale = std::ldexp(1.0, PRECISION_BITS); |
|
|
| for (int i = 0; i < outSize * ksize; i++) { |
| if (use_lanczos) { |
| |
| const double rounded = pre_weights[i] * fxp_scale + (pre_weights[i] < 0 ? -0.5 : 0.5); |
| weights[i] = static_cast<int32_t>(rounded); |
| continue; |
| } |
| double tmp_val = pre_weights[i] * fxp_scale; |
| if (pre_weights[i] < 0) { |
| tmp_val -= 0.5; |
| } else { |
| tmp_val += 0.5; |
| } |
| tmp_val = std::round(tmp_val); |
| tmp_val = std::clamp(tmp_val, |
| static_cast<double>(std::numeric_limits<int32_t>::min()), |
| static_cast<double>(std::numeric_limits<int32_t>::max())); |
| weights[i] = static_cast<int32_t>(tmp_val); |
| } |
|
|
| return ksize; |
| }; |
|
|
| |
| |
| auto resample_horizontal = [&](const clip_image_u8 & imIn, clip_image_u8 & imOut, |
| int out_nx, |
| int ksize, const std::vector<int> & bounds, const std::vector<int32_t> & weights) { |
| const int in_ny = imIn.get_size().height; |
| imOut.set_size({out_nx, in_ny}, false); |
|
|
| |
| for (int yy = 0; yy < in_ny; yy++) { |
| |
| for (int xx = 0; xx < out_nx; xx++) { |
| |
| int xmin = bounds[xx * 2 + 0]; |
| int xcnt = bounds[xx * 2 + 1]; |
|
|
| |
| int32_t ss0 = 1 << (PRECISION_BITS - 1); |
| int32_t ss1 = 1 << (PRECISION_BITS - 1); |
| int32_t ss2 = 1 << (PRECISION_BITS - 1); |
|
|
| |
| for (int x = 0; x < xcnt; x++) { |
| const auto src_px = imIn.get_pixel(x + xmin, yy); |
| ss0 += src_px[0] * weights[xx * ksize + x]; |
| ss1 += src_px[1] * weights[xx * ksize + x]; |
| ss2 += src_px[2] * weights[xx * ksize + x]; |
| } |
|
|
| |
| imOut.set_pixel(xx, yy, {clip8(ss0 >> PRECISION_BITS), |
| clip8(ss1 >> PRECISION_BITS), |
| clip8(ss2 >> PRECISION_BITS)}); |
| } |
| } |
| }; |
|
|
| |
| |
| auto resample_vertical = [&](const clip_image_u8 & imIn, clip_image_u8 & imOut, |
| int out_ny, |
| int ksize, const std::vector<int> & bounds, const std::vector<int32_t> & weight) { |
| const int in_nx = imIn.get_size().width; |
| imOut.set_size({in_nx, out_ny}, false); |
|
|
| |
| for (int yy = 0; yy < out_ny; yy++) { |
| |
| int ymin = bounds[yy * 2 + 0]; |
| int ycnt = bounds[yy * 2 + 1]; |
|
|
| |
| for (int xx = 0; xx < in_nx; xx++) { |
| |
| int32_t ss0 = 1 << (PRECISION_BITS - 1); |
| int32_t ss1 = 1 << (PRECISION_BITS - 1); |
| int32_t ss2 = 1 << (PRECISION_BITS - 1); |
|
|
| |
| for (int y = 0; y < ycnt; y++) { |
| const auto src_px = imIn.get_pixel(xx, y + ymin); |
| ss0 += src_px[0] * weight[yy * ksize + y]; |
| ss1 += src_px[1] * weight[yy * ksize + y]; |
| ss2 += src_px[2] * weight[yy * ksize + y]; |
| } |
|
|
| |
| imOut.set_pixel(xx, yy, {clip8(ss0 >> PRECISION_BITS), |
| clip8(ss1 >> PRECISION_BITS), |
| clip8(ss2 >> PRECISION_BITS)}); |
| } |
| } |
| }; |
|
|
| |
| const int src_width = img.get_size().width; |
| const int src_height = img.get_size().height; |
|
|
| bool need_horizontal = (target_width != src_width); |
| bool need_vertical = (target_height != src_height); |
|
|
| |
| std::vector<int> bounds_horiz, bounds_vert; |
| std::vector<int32_t> weights_horiz, weights_vert; |
| int ksize_horiz = 0, ksize_vert = 0; |
|
|
| if (need_horizontal) { |
| ksize_horiz = precompute_weights(src_width, target_width, bounds_horiz, weights_horiz); |
| } |
|
|
| if (need_vertical) { |
| ksize_vert = precompute_weights(src_height, target_height, bounds_vert, weights_vert); |
| } |
|
|
| |
| if (need_horizontal && need_vertical) { |
| |
| clip_image_u8 temp; |
| resample_horizontal(img, temp, target_width, ksize_horiz, bounds_horiz, weights_horiz); |
| resample_vertical(temp, dst, target_height, ksize_vert, bounds_vert, weights_vert); |
| } else if (need_horizontal) { |
| |
| resample_horizontal(img, dst, target_width, ksize_horiz, bounds_horiz, weights_horiz); |
| } else if (need_vertical) { |
| |
| resample_vertical(img, dst, target_height, ksize_vert, bounds_vert, weights_vert); |
| } else { |
| |
| dst.set_size(img.get_size(), img.is_placeholder()); |
| if (!img.is_placeholder()) { |
| dst.cpy_buf(img.get_ro_buf()); |
| } |
| } |
|
|
| return true; |
| } |
|
|
| static inline int clip(int x, int lower, int upper) { |
| return std::max(lower, std::min(x, upper)); |
| } |
|
|
| |
| static inline float lerp(float s, float e, float t) { |
| return s + (e - s) * t; |
| } |
| }; |
|
|
|
|
| |
| |
| |
|
|
| mtmd_image_preproc_out mtmd_image_preprocessor_llava_uhd::preprocess(const clip_image_u8 & img) { |
| const clip_image_size original_size = img.get_size(); |
| auto const inst = get_slice_instructions(original_size); |
| auto sliced = slice_image(img, inst); |
|
|
| mtmd_image_preproc_out output; |
| output.append_overview(hparams, sliced.overview, true); |
| output.append(hparams, sliced.slices, true); |
| output.grid_x = inst.grid_size.width; |
| output.grid_y = inst.grid_size.height; |
|
|
| return output; |
| } |
|
|
| mtmd_image_preprocessor_llava_uhd::slice_instructions mtmd_image_preprocessor_llava_uhd::get_slice_instructions(const clip_image_size & original_size) { |
| mtmd_image_preprocessor_llava_uhd::slice_instructions res; |
| |
| const int n_merge = hparams.n_merge; |
| const int patch_size = hparams.patch_size * n_merge; |
| const int slice_size = hparams.image_size; |
| const int original_width = original_size.width; |
| const int original_height = original_size.height; |
|
|
| const bool has_slices = original_size.width > slice_size || original_size.height > slice_size; |
| const bool has_pinpoints = !hparams.image_res_candidates.empty(); |
|
|
| if (!has_slices) { |
| |
| res.overview_size = clip_image_size{slice_size, slice_size}; |
| res.refined_size = clip_image_size{0, 0}; |
| res.grid_size = clip_image_size{0, 0}; |
|
|
| return res; |
| } |
|
|
| if (has_pinpoints) { |
| |
| auto refine_size = select_best_resolution( |
| original_size, |
| hparams.image_res_candidates); |
| res.overview_size = clip_image_size{slice_size, slice_size}; |
| res.refined_size = refine_size; |
| res.grid_size = clip_image_size{0, 0}; |
|
|
| LOG_DBG("%s: using pinpoints for slicing\n", __func__); |
| LOG_DBG("%s: original size: %d x %d, overview size: %d x %d, refined size: %d x %d\n", |
| __func__, original_width, original_height, |
| res.overview_size.width, res.overview_size.height, |
| res.refined_size.width, res.refined_size.height); |
|
|
| for (int y = 0; y < refine_size.height; y += slice_size) { |
| for (int x = 0; x < refine_size.width; x += slice_size) { |
| slice_coordinates slice; |
| slice.x = x; |
| slice.y = y; |
| slice.size.width = std::min(slice_size, refine_size.width - x); |
| slice.size.height = std::min(slice_size, refine_size.height - y); |
| res.slices.push_back(slice); |
| LOG_DBG("%s: slice %d: x=%d, y=%d, size=%dx%d\n", |
| __func__, (int)res.slices.size() - 1, |
| slice.x, slice.y, slice.size.width, slice.size.height); |
| } |
| } |
|
|
| res.grid_size.height = refine_size.height / slice_size; |
| res.grid_size.width = refine_size.width / slice_size; |
| LOG_DBG("%s: grid size: %d x %d\n", __func__, res.grid_size.width, res.grid_size.height); |
|
|
| return res; |
| } |
|
|
| |
|
|
| auto best_size = get_best_resize(original_size, slice_size, patch_size, !has_slices); |
| res.overview_size = best_size; |
|
|
| { |
| const int max_slice_nums = 9; |
| const float log_ratio = log((float)original_width / original_height); |
| const float ratio = (float)original_width * original_height / (slice_size * slice_size); |
| const int multiple = fmin(ceil(ratio), max_slice_nums); |
|
|
| auto best_grid = get_best_grid(max_slice_nums, multiple, log_ratio); |
| auto refine_size = get_refine_size(original_size, best_grid, slice_size, patch_size, true); |
| res.grid_size = best_grid; |
| res.refined_size = refine_size; |
|
|
| LOG_DBG("%s: original size: %d x %d, overview size: %d x %d, refined size: %d x %d, grid size: %d x %d\n", |
| __func__, original_width, original_height, |
| res.overview_size.width, res.overview_size.height, |
| res.refined_size.width, res.refined_size.height, |
| res.grid_size.width, res.grid_size.height); |
|
|
| int width = refine_size.width; |
| int height = refine_size.height; |
| int grid_x = int(width / best_grid.width); |
| int grid_y = int(height / best_grid.height); |
| for (int patches_y = 0, ic = 0; |
| patches_y < refine_size.height && ic < best_grid.height; |
| patches_y += grid_y, ic += 1) { |
| for (int patches_x = 0, jc = 0; |
| patches_x < refine_size.width && jc < best_grid.width; |
| patches_x += grid_x, jc += 1) { |
| slice_coordinates slice; |
| slice.x = patches_x; |
| slice.y = patches_y; |
| slice.size.width = grid_x; |
| slice.size.height = grid_y; |
| res.slices.push_back(slice); |
| LOG_DBG("%s: slice %d: x=%d, y=%d, size=%dx%d\n", |
| __func__, (int)res.slices.size() - 1, |
| slice.x, slice.y, slice.size.width, slice.size.height); |
| } |
| } |
| } |
|
|
| return res; |
| } |
|
|
| mtmd_image_preprocessor_llava_uhd::slice_output mtmd_image_preprocessor_llava_uhd::slice_image(const clip_image_u8 & img, const mtmd_image_preprocessor_llava_uhd::slice_instructions & inst) { |
| slice_output output; |
|
|
| |
| img_tool::resize(img, output.overview, inst.overview_size, hparams.image_resize_algo_ov, |
| hparams.image_pad_ov, hparams.image_pad_color_ov); |
|
|
| if (inst.slices.empty()) { |
| |
| return output; |
| } |
|
|
| |
| clip_image_u8 refined_img; |
| img_tool::resize(img, refined_img, inst.refined_size, hparams.image_resize_algo_rf, |
| hparams.image_pad_rf, hparams.image_pad_color_rf); |
|
|
| |
| for (const auto & slice : inst.slices) { |
| int x = slice.x; |
| int y = slice.y; |
| int w = slice.size.width; |
| int h = slice.size.height; |
|
|
| clip_image_u8 img_slice; |
| img_tool::crop(refined_img, img_slice, x, y, w, h); |
| output.slices.push_back(std::move(img_slice)); |
| } |
|
|
| return output; |
| } |
|
|
| clip_image_size mtmd_image_preprocessor_llava_uhd::get_best_resize(const clip_image_size & original_size, int scale_resolution, int patch_size, bool allow_upscale) { |
| int width = original_size.width; |
| int height = original_size.height; |
| if ((width * height > scale_resolution * scale_resolution) || allow_upscale) { |
| float r = static_cast<float>(width) / height; |
| height = static_cast<int>(scale_resolution / std::sqrt(r)); |
| width = static_cast<int>(height * r); |
| } |
| clip_image_size res; |
| res.width = ensure_divide(width, patch_size); |
| res.height = ensure_divide(height, patch_size); |
| return res; |
| } |
|
|
| clip_image_size mtmd_image_preprocessor_llava_uhd::resize_maintain_aspect_ratio(const clip_image_size & orig, const clip_image_size & target_max) { |
| float scale_width = static_cast<float>(target_max.width) / orig.width; |
| float scale_height = static_cast<float>(target_max.height) / orig.height; |
| float scale = std::min(scale_width, scale_height); |
| return clip_image_size{ |
| static_cast<int>(orig.width * scale), |
| static_cast<int>(orig.height * scale), |
| }; |
| } |
|
|
| clip_image_size mtmd_image_preprocessor_llava_uhd::select_best_resolution(const clip_image_size & original_size, const std::vector<clip_image_size> & possible_resolutions) { |
| clip_image_size best_fit; |
| int min_wasted_area = std::numeric_limits<int>::max(); |
| int max_effective_resolution = 0; |
|
|
| for (const clip_image_size & candidate : possible_resolutions) { |
| auto target_size = resize_maintain_aspect_ratio(original_size, candidate); |
| int effective_resolution = std::min( |
| target_size.width * target_size.height, |
| original_size.width * original_size.height); |
| int wasted_area = (candidate.width * candidate.height) - effective_resolution; |
|
|
| if (effective_resolution > max_effective_resolution || (effective_resolution == max_effective_resolution && wasted_area < min_wasted_area)) { |
| max_effective_resolution = effective_resolution; |
| min_wasted_area = wasted_area; |
| best_fit = candidate; |
| } |
|
|
| LOG_DBG("%s: candidate: %d x %d, target: %d x %d, wasted: %d, effective: %d\n", __func__, candidate.width, candidate.height, target_size.width, target_size.height, wasted_area, effective_resolution); |
| } |
|
|
| return best_fit; |
| } |
|
|
| int mtmd_image_preprocessor_llava_uhd::ensure_divide(int length, int patch_size) { |
| return std::max(static_cast<int>(std::round(static_cast<float>(length) / patch_size) * patch_size), patch_size); |
| } |
|
|
| clip_image_size mtmd_image_preprocessor_llava_uhd::get_refine_size(const clip_image_size & original_size, const clip_image_size & grid, int scale_resolution, int patch_size, bool allow_upscale) { |
| int width = original_size.width; |
| int height = original_size.height; |
| int grid_x = grid.width; |
| int grid_y = grid.height; |
|
|
| int refine_width = ensure_divide(width, grid_x); |
| int refine_height = ensure_divide(height, grid_y); |
|
|
| clip_image_size grid_size; |
| grid_size.width = refine_width / grid_x; |
| grid_size.height = refine_height / grid_y; |
|
|
| auto best_grid_size = get_best_resize(grid_size, scale_resolution, patch_size, allow_upscale); |
| int best_grid_width = best_grid_size.width; |
| int best_grid_height = best_grid_size.height; |
|
|
| clip_image_size refine_size; |
| refine_size.width = best_grid_width * grid_x; |
| refine_size.height = best_grid_height * grid_y; |
| return refine_size; |
| } |
|
|
| clip_image_size mtmd_image_preprocessor_llava_uhd::get_best_grid(const int max_slice_nums, const int multiple, const float log_ratio) { |
| std::vector<int> candidate_split_grids_nums; |
| for (int i : {multiple - 1, multiple, multiple + 1}) { |
| if (i == 1 || i > max_slice_nums) { |
| continue; |
| } |
| candidate_split_grids_nums.push_back(i); |
| } |
|
|
| std::vector<clip_image_size> candidate_grids; |
| for (int split_grids_nums : candidate_split_grids_nums) { |
| int m = 1; |
| while (m <= split_grids_nums) { |
| if (split_grids_nums % m == 0) { |
| candidate_grids.push_back(clip_image_size{m, split_grids_nums / m}); |
| } |
| ++m; |
| } |
| } |
|
|
| clip_image_size best_grid{1, 1}; |
| float min_error = std::numeric_limits<float>::infinity(); |
| for (const auto& grid : candidate_grids) { |
| float error = std::abs(log_ratio - std::log(1.0 * grid.width / grid.height)); |
| if (error < min_error) { |
| best_grid = grid; |
| min_error = error; |
| } |
| } |
| return best_grid; |
| } |
|
|
| |
| |
| |
|
|
| mtmd_image_preproc_out mtmd_image_preprocessor_fixed_size::preprocess(const clip_image_u8 & img) { |
| clip_image_u8 resized_image; |
| int sz = hparams.image_size; |
| img_tool::resize(img, resized_image, {sz, sz}, |
| hparams.image_resize_algo, |
| hparams.image_resize_pad, |
| hparams.image_pad_color); |
| mtmd_image_preproc_out output; |
| output.append(hparams, resized_image, true); |
| return output; |
| } |
|
|
| |
| |
| |
|
|
| mtmd_image_preproc_out mtmd_image_preprocessor_dyn_size::preprocess(const clip_image_u8 & img) { |
| GGML_ASSERT(hparams.image_min_pixels > 0 && hparams.image_max_pixels > 0); |
| clip_image_u8 resized_image; |
| const clip_image_size original_size = img.get_size(); |
| |
| const int cur_merge = hparams.n_merge; |
| const clip_image_size target_size = img_tool::calc_size_preserved_ratio( |
| original_size, |
| { |
| hparams.patch_size * cur_merge, |
| hparams.image_min_pixels, |
| hparams.image_max_pixels, |
| 0, |
| }); |
| img_tool::resize(img, resized_image, target_size, |
| hparams.image_resize_algo, |
| hparams.image_resize_pad, |
| hparams.image_pad_color); |
| mtmd_image_preproc_out output; |
| output.append(hparams, resized_image, true); |
| return output; |
| } |
|
|
| |
| |
| |
|
|
| mtmd_image_preproc_out mtmd_image_preprocessor_longest_edge::preprocess(const clip_image_u8 & img) { |
| GGML_ASSERT(hparams.image_longest_edge > 0); |
| clip_image_u8 resized_image; |
| const clip_image_size original_size = img.get_size(); |
| |
| const int cur_merge = hparams.n_merge == 0 ? 1 : hparams.n_merge; |
| const clip_image_size target_size = img_tool::calc_size_preserved_ratio( |
| original_size, |
| { |
| hparams.patch_size * cur_merge, |
| std::max(0, hparams.image_min_pixels), |
| std::max(0, hparams.image_max_pixels), |
| hparams.image_longest_edge, |
| }); |
| img_tool::resize(img, resized_image, target_size, |
| hparams.image_resize_algo, |
| hparams.image_resize_pad, |
| hparams.image_pad_color); |
| mtmd_image_preproc_out output; |
| output.append(hparams, resized_image, true); |
| return output; |
| } |
|
|
| |
| |
| |
|
|
| mtmd_image_preprocessor_llava_uhd::slice_instructions mtmd_image_preprocessor_minicpmv::get_slice_instructions(const clip_image_size & original_size) { |
| if (hparams.n_merge == 2) { |
| const int slice_size = hparams.image_size; |
| const float ratio = (float)original_size.width * original_size.height / (slice_size * slice_size); |
| if (ratio <= 1.0f) { |
| mtmd_image_preprocessor_llava_uhd::slice_instructions inst; |
| const int patch_size = hparams.patch_size * hparams.n_merge; |
| inst.overview_size = get_best_resize(original_size, slice_size, patch_size, true); |
| inst.refined_size = clip_image_size{0, 0}; |
| inst.grid_size = clip_image_size{0, 0}; |
| return inst; |
| } |
| } |
| return mtmd_image_preprocessor_llava_uhd::get_slice_instructions(original_size); |
| } |
|
|
| |
| |
| |
|
|
| mtmd_image_preprocessor_llava_uhd::slice_instructions mtmd_image_preprocessor_lfm2::get_slice_instructions(const clip_image_size & original_size) { |
| mtmd_image_preprocessor_llava_uhd::slice_instructions inst; |
| const int align_size = hparams.patch_size * hparams.n_merge; |
| inst.overview_size = img_tool::calc_size_preserved_ratio( |
| original_size, |
| { align_size, hparams.image_min_pixels, hparams.image_max_pixels, 0 }); |
| |
| const bool needs_tiling = original_size.width > tile_size * max_pixels_tolerance || original_size.height > tile_size * max_pixels_tolerance; |
|
|
| if (!needs_tiling) { |
| inst.refined_size = clip_image_size{0, 0}; |
| inst.grid_size = clip_image_size{0, 0}; |
| return inst; |
| } |
|
|
| const clip_image_size grid = get_grid_layout(original_size.height, original_size.width); |
|
|
| inst.grid_size = grid; |
| inst.refined_size = clip_image_size{tile_size * grid.width, tile_size * grid.height}; |
|
|
| LOG_DBG("%s: original size: %d x %d, overview size: %d x %d, refined size: %d x %d, grid size: %d x %d\n", |
| __func__, |
| original_size.width, original_size.height, |
| inst.overview_size.width, inst.overview_size.height, |
| inst.refined_size.width, inst.refined_size.height, |
| grid.width, grid.height); |
|
|
| for (int row = 0; row < grid.height; row++) { |
| for (int col = 0; col < grid.width; col++) { |
| mtmd_image_preprocessor_llava_uhd::slice_coordinates slice; |
| slice.x = col * tile_size; |
| slice.y = row * tile_size; |
| slice.size = clip_image_size{tile_size, tile_size}; |
| inst.slices.push_back(slice); |
| LOG_DBG("%s: slice %d: x=%d, y=%d, size=%d x %d\n", |
| __func__, (int)inst.slices.size() - 1, |
| slice.x, slice.y, slice.size.width, slice.size.height); |
| } |
| } |
|
|
| return inst; |
| } |
|
|
| clip_image_size mtmd_image_preprocessor_lfm2::find_closest_aspect_ratio( |
| float aspect_ratio, |
| const std::vector<clip_image_size> & target_ratios, |
| int width, int height) { |
| float best_ratio_diff = std::numeric_limits<float>::max(); |
| clip_image_size best_ratio = {1, 1}; |
| const float area = static_cast<float>(width * height); |
|
|
| for (const auto & ratio : target_ratios) { |
| const float target_aspect_ratio = static_cast<float>(ratio.width) / ratio.height; |
| const float ratio_diff = std::abs(aspect_ratio - target_aspect_ratio); |
| if (ratio_diff < best_ratio_diff) { |
| best_ratio_diff = ratio_diff; |
| best_ratio = ratio; |
| } else if (ratio_diff == best_ratio_diff) { |
| const float target_area = static_cast<float>(tile_size * tile_size * ratio.width * ratio.height); |
| if (area > 0.5f * target_area) { |
| best_ratio = ratio; |
| } |
| } |
| } |
| return best_ratio; |
| } |
|
|
| std::vector<clip_image_size> mtmd_image_preprocessor_lfm2::get_target_ratios() { |
| std::vector<clip_image_size> ratios; |
| for (int n = min_tiles; n <= max_tiles; n++) { |
| for (int w = 1; w <= n; w++) { |
| for (int h = 1; h <= n; h++) { |
| if (w * h >= min_tiles && w * h <= max_tiles) { |
| bool found = false; |
| for (const auto & r : ratios) { |
| if (r.width == w && r.height == h) { |
| found = true; |
| break; |
| } |
| } |
| if (!found) { |
| ratios.push_back({w, h}); |
| } |
| } |
| } |
| } |
| } |
| std::sort(ratios.begin(), ratios.end(), [](const clip_image_size & a, const clip_image_size & b) { |
| return a.width * a.height < b.width * b.height; |
| }); |
| return ratios; |
| } |
|
|
| clip_image_size mtmd_image_preprocessor_lfm2::get_grid_layout(int height, int width) { |
| const float aspect_ratio = static_cast<float>(width) / height; |
| const auto ratios = get_target_ratios(); |
| return find_closest_aspect_ratio(aspect_ratio, ratios, width, height); |
| } |
|
|
| |
| |
| |
|
|
| mtmd_image_preproc_out mtmd_image_preprocessor_idefics3::preprocess(const clip_image_u8 & img) { |
| |
| |
| |
| |
| |
| |
| |
| const clip_image_size original_size = img.get_size(); |
| const clip_image_size refined_size = img_tool::calc_size_preserved_ratio( |
| original_size, |
| { hparams.image_size, std::max(0, hparams.image_min_pixels), std::max(0, hparams.image_max_pixels), hparams.image_longest_edge }); |
| |
| |
| |
|
|
| mtmd_image_preprocessor_llava_uhd::slice_instructions instructions; |
| instructions.overview_size = clip_image_size{hparams.image_size, hparams.image_size}; |
| instructions.refined_size = refined_size; |
| instructions.grid_size = clip_image_size{ |
| static_cast<int>(std::ceil(static_cast<float>(refined_size.width) / hparams.image_size)), |
| static_cast<int>(std::ceil(static_cast<float>(refined_size.height) / hparams.image_size)), |
| }; |
| for (int y = 0; y < refined_size.height; y += hparams.image_size) { |
| for (int x = 0; x < refined_size.width; x += hparams.image_size) { |
| |
| instructions.slices.push_back(mtmd_image_preprocessor_llava_uhd::slice_coordinates{ |
| x, |
| y, |
| clip_image_size{ |
| std::min(hparams.image_size, refined_size.width - x), |
| std::min(hparams.image_size, refined_size.height - y) |
| } |
| }); |
| } |
| } |
| auto sliced = slice_image(img, instructions); |
|
|
| mtmd_image_preproc_out output; |
| output.append_overview(hparams, sliced.overview, true); |
| output.append(hparams, sliced.slices, true); |
| output.grid_x = instructions.grid_size.width; |
| output.grid_y = instructions.grid_size.height; |
| return output; |
| } |
|
|
| |
| |
| |
|
|
| mtmd_image_preproc_out mtmd_image_preprocessor_internvl::preprocess(const clip_image_u8 & img) { |
| GGML_ASSERT(!hparams.image_res_candidates.empty()); |
| const clip_image_size original_size = img.get_size(); |
| auto const inst = get_slice_instructions(original_size); |
| auto sliced = slice_image(img, inst); |
|
|
| mtmd_image_preproc_out output; |
| |
| output.append(hparams, sliced.slices, true); |
| output.append_overview(hparams, sliced.overview, true); |
| output.grid_x = inst.grid_size.width; |
| output.grid_y = inst.grid_size.height; |
| return output; |
| } |
|
|
| |
| |
| |
|
|
| std::vector<clip_image_size> mtmd_image_preprocessor_deepseekocr::get_target_ratios() const { |
| std::vector<clip_image_size> ratios; |
| for (int n = min_tiles; n <= max_tiles; n++) { |
| for (int w = 1; w <= n; w++) { |
| for (int h = 1; h <= n; h++) { |
| if (w * h < min_tiles || w * h > max_tiles) { |
| continue; |
| } |
| bool found = false; |
| for (const auto & r : ratios) { |
| if (r.width == w && r.height == h) { |
| found = true; |
| break; |
| } |
| } |
| if (!found) { |
| ratios.push_back({ w, h }); |
| } |
| } |
| } |
| } |
| std::sort(ratios.begin(), ratios.end(), [](const clip_image_size & a, const clip_image_size & b) { |
| return a.width * a.height < b.width * b.height; |
| }); |
| return ratios; |
| } |
|
|
| clip_image_size mtmd_image_preprocessor_deepseekocr::find_closest_aspect_ratio( |
| float aspect_ratio, |
| const std::vector<clip_image_size> & target_ratios, |
| int width, |
| int height) const { |
| float best_ratio_diff = std::numeric_limits<float>::max(); |
| clip_image_size best_ratio = { 1, 1 }; |
| const float area = static_cast<float>(width * height); |
|
|
| for (const auto & ratio : target_ratios) { |
| const float target_aspect_ratio = static_cast<float>(ratio.width) / ratio.height; |
| const float ratio_diff = std::abs(aspect_ratio - target_aspect_ratio); |
| if (ratio_diff < best_ratio_diff) { |
| best_ratio_diff = ratio_diff; |
| best_ratio = ratio; |
| } else if (ratio_diff == best_ratio_diff) { |
| const float target_area = static_cast<float>(tile_size * tile_size * ratio.width * ratio.height); |
| if (area > 0.5f * target_area) { |
| best_ratio = ratio; |
| } |
| } |
| } |
| return best_ratio; |
| } |
|
|
| mtmd_image_preproc_out mtmd_image_preprocessor_deepseekocr::preprocess(const clip_image_u8 & img) { |
| mtmd_image_preproc_out output; |
| int grid_w = 0; |
| int grid_h = 0; |
| const auto img_size = img.get_size(); |
|
|
| |
| clip_image_u8 padded; |
| img_tool::resize(img, padded, |
| { base_size, base_size }, |
| RESIZE_ALGO_BICUBIC_PILLOW, |
| PAD_NEAREST, |
| hparams.image_pad_color); |
| output.append_overview(hparams, padded, true); |
| output.overview.add_viewsep = true; |
|
|
| |
| if (img_size.width > tile_size || img_size.height > tile_size) { |
| const float aspect_ratio = static_cast<float>(img_size.width) / img_size.height; |
| const auto target_ratios = get_target_ratios(); |
| const clip_image_size grid = |
| find_closest_aspect_ratio(aspect_ratio, target_ratios, img_size.width, img_size.height); |
| grid_w = grid.width; |
| grid_h = grid.height; |
|
|
| clip_image_u8 refined; |
| img_tool::resize(img, refined, { tile_size * grid_w, tile_size * grid_h }, RESIZE_ALGO_BICUBIC_PILLOW, |
| PAD_NONE); |
|
|
| for (int row = 0; row < grid_h; row++) { |
| if (fuse_row) { |
| |
| |
| |
| clip_image_u8 row_img; |
| row_img.set_size({tile_size, tile_size * grid_w}, false); |
| for (int col = 0; col < grid_w; col++) { |
| for (int py = 0; py < tile_size; py++) { |
| for (int px = 0; px < tile_size; px++) { |
| row_img.set_pixel(px, col * tile_size + py, |
| refined.get_pixel(col * tile_size + px, row * tile_size + py)); |
| } |
| } |
| } |
| output.append(hparams, row_img, true); |
| } else { |
| for (int col = 0; col < grid_w; col++) { |
| clip_image_u8 tile; |
| img_tool::crop(refined, tile, col * tile_size, row * tile_size, tile_size, tile_size); |
| output.append(hparams, tile, true); |
| } |
| } |
| } |
| if (fuse_row) { |
| grid_w = 1; |
| } |
| } |
|
|
| LOG_DBG("%s: grid size: %d x %d (%d tiles) + global view\n", __func__, grid_w, grid_h, grid_w * grid_h); |
| LOG_DBG("%s: overview size: %d x %d\n", __func__, padded.get_size().width, padded.get_size().height); |
|
|
| output.grid_x = grid_w; |
| output.grid_y = grid_h; |
| return output; |
| } |
|
|
| |
| |
| |
|
|
| void mtmd_image_preprocessor_step3vl::img_u8_resize_bilinear_to_f32( |
| const clip_image_u8 & src, |
| clip_image_f32 & dst, |
| int target_width, |
| int target_height, |
| const float mean[3], |
| const float std[3]) { |
| const auto src_size = src.get_size(); |
| if (src_size.width == target_width && src_size.height == target_height) { |
| dst.from_u8(src); |
| dst.normalize(mean, std); |
| return; |
| } |
|
|
| dst.set_size({target_width, target_height}, false, false); |
|
|
| if (src.is_placeholder()) { |
| |
| return; |
| } |
|
|
| const float scale_x = static_cast<float>(src_size.width) / target_width; |
| const float scale_y = static_cast<float>(src_size.height) / target_height; |
|
|
| std::vector<float> local_buf(3 * target_width * target_height); |
|
|
| for (int y = 0; y < target_height; ++y) { |
| const float src_y = (static_cast<float>(y) + 0.5f) * scale_y - 0.5f; |
| const int y0_floor = static_cast<int>(std::floor(src_y)); |
| const int y0 = std::max(0, std::min(y0_floor, src_size.height - 1)); |
| const int y1 = std::max(0, std::min(y0_floor + 1, src_size.height - 1)); |
| const float ly = src_y - y0_floor; |
|
|
| for (int x = 0; x < target_width; ++x) { |
| const float src_x = (static_cast<float>(x) + 0.5f) * scale_x - 0.5f; |
| const int x0_floor = static_cast<int>(std::floor(src_x)); |
| const int x0 = std::max(0, std::min(x0_floor, src_size.width - 1)); |
| const int x1 = std::max(0, std::min(x0_floor + 1, src_size.width - 1)); |
| const float lx = src_x - x0_floor; |
|
|
| const auto p00 = src.get_pixel(x0, y0); |
| const auto p01 = src.get_pixel(x1, y0); |
| const auto p10 = src.get_pixel(x0, y1); |
| const auto p11 = src.get_pixel(x1, y1); |
|
|
| const size_t idx_dst = 3 * (y * target_width + x); |
| for (int c = 0; c < 3; ++c) { |
| const float v00 = (static_cast<float>(p00[c]) / 255.0f - mean[c]) / std[c]; |
| const float v01 = (static_cast<float>(p01[c]) / 255.0f - mean[c]) / std[c]; |
| const float v10 = (static_cast<float>(p10[c]) / 255.0f - mean[c]) / std[c]; |
| const float v11 = (static_cast<float>(p11[c]) / 255.0f - mean[c]) / std[c]; |
|
|
| const float top = v00 + (v01 - v00) * lx; |
| const float bot = v10 + (v11 - v10) * lx; |
| local_buf[idx_dst + c] = top + (bot - top) * ly; |
| } |
| } |
| } |
| dst.cpy_buf(local_buf); |
| } |
|
|
| int mtmd_image_preprocessor_step3vl::get_image_longest_edge(const clip_hparams & params) { |
| return params.image_longest_edge > 0 ? params.image_longest_edge : default_image_longest_edge; |
| } |
|
|
| int mtmd_image_preprocessor_step3vl::determine_window_size(const clip_hparams & params, int longer, int shorter) { |
| const int image_size = params.image_size; |
| const int crop_size = default_image_crop_size; |
| const float aspect_ratio = static_cast<float>(longer) / shorter; |
|
|
| if (longer <= image_size) { |
| return aspect_ratio > small_aspect_ratio_limit ? shorter : 0; |
| } |
|
|
| return aspect_ratio > wide_aspect_ratio_limit ? std::min(shorter, crop_size) : crop_size; |
| } |
|
|
| int mtmd_image_preprocessor_step3vl::calc_crop_extent(int length, int window_size) { |
| const float ratio = static_cast<float>(length) / window_size; |
| if (ratio < 1.0f) { |
| return length; |
| } |
|
|
| const float decimal = ratio - std::floor(ratio); |
| const int rounded = decimal > crop_rounding_threshold |
| ? static_cast<int>(std::floor(ratio)) + 1 |
| : static_cast<int>(std::floor(ratio)); |
| return window_size * rounded; |
| } |
|
|
| std::vector<int> mtmd_image_preprocessor_step3vl::calc_grid(int length, int window_size) { |
| const int n = length <= window_size |
| ? 1 |
| : static_cast<int>(std::ceil(static_cast<float>(length - window_size) / window_size + 1.0f)); |
| std::vector<int> starts(n); |
|
|
| for (int i = 0; i < n; ++i) { |
| starts[i] = window_size * i; |
| } |
|
|
| if (n > 1 && starts.back() + window_size > length) { |
| starts.back() = length - window_size; |
| } |
|
|
| return starts; |
| } |
|
|
| clip_image_u8 mtmd_image_preprocessor_step3vl::prepare_image(const clip_image_u8 & img, const clip_hparams & params) { |
| clip_image_u8 resized = img; |
| const auto img_size = img.get_size(); |
| const float aspect_ratio = img_size.height > 0 ? static_cast<float>(img_size.width) / img_size.height : 1.0f; |
| if (std::min(img_size.width, img_size.height) < 32 && |
| (aspect_ratio > wide_aspect_ratio_limit || |
| aspect_ratio < 1.0f / wide_aspect_ratio_limit)) { |
| const int square_size = std::max(img_size.width, img_size.height); |
| clip_image_u8 padded; |
| padded.set_size({square_size, square_size}, false); |
| img_tool::fill(padded, {0, 0, 0}); |
| img_tool::composite(padded, img, 0, 0); |
| resized = std::move(padded); |
| } |
|
|
| const int max_image_size = get_image_longest_edge(params); |
| const auto resized_size = resized.get_size(); |
| if (std::max(resized_size.width, resized_size.height) > max_image_size) { |
| const float scale = static_cast<float>(max_image_size) / std::max(resized_size.width, resized_size.height); |
| const clip_image_size new_size = { |
| std::max(1, static_cast<int>(std::floor(resized_size.width * scale))), |
| std::max(1, static_cast<int>(std::floor(resized_size.height * scale))), |
| }; |
| clip_image_u8 scaled; |
| img_tool::resize(resized, scaled, new_size, RESIZE_ALGO_BILINEAR, PAD_NONE); |
| resized = std::move(scaled); |
| } |
|
|
| return resized; |
| } |
|
|
| clip_image_u8 mtmd_image_preprocessor_step3vl::crop_with_black_padding(const clip_image_u8 & image, int x, int y, int w, int h) { |
| clip_image_u8 dst; |
| dst.set_size({w, h}, false); |
| img_tool::fill(dst, {0, 0, 0}); |
|
|
| const auto img_size = image.get_size(); |
| const int src_x0 = std::max(0, x); |
| const int src_y0 = std::max(0, y); |
| const int src_x1 = std::min(img_size.width, x + w); |
| const int src_y1 = std::min(img_size.height, y + h); |
|
|
| if (src_x0 >= src_x1 || src_y0 >= src_y1) { |
| return dst; |
| } |
|
|
| const int dst_x0 = src_x0 - x; |
| const int dst_y0 = src_y0 - y; |
|
|
| for (int yy = 0; yy < src_y1 - src_y0; ++yy) { |
| for (int xx = 0; xx < src_x1 - src_x0; ++xx) { |
| dst.set_pixel(dst_x0 + xx, dst_y0 + yy, image.get_pixel(src_x0 + xx, src_y0 + yy)); |
| } |
| } |
|
|
| return dst; |
| } |
|
|
| mtmd_image_preprocessor_step3vl::slice_instructions mtmd_image_preprocessor_step3vl::build_slice_instructions( |
| const clip_hparams & params, |
| const clip_image_size & prepared_size) { |
| slice_instructions instructions; |
| instructions.overview_size = prepared_size; |
|
|
| const int window_size = determine_window_size( |
| params, |
| std::max(prepared_size.width, prepared_size.height), |
| std::min(prepared_size.width, prepared_size.height)); |
| if (window_size <= 0) { |
| instructions.refined_size = clip_image_size{0, 0}; |
| instructions.grid_size = clip_image_size{0, 0}; |
| return instructions; |
| } |
|
|
| const int crop_width = calc_crop_extent(prepared_size.width, window_size); |
| const int crop_height = calc_crop_extent(prepared_size.height, window_size); |
| instructions.refined_size = clip_image_size{crop_width, crop_height}; |
|
|
| const auto xs = calc_grid(crop_width, window_size); |
| const auto ys = calc_grid(crop_height, window_size); |
| instructions.grid_size = clip_image_size{ |
| static_cast<int>(xs.size()), |
| static_cast<int>(ys.size()), |
| }; |
|
|
| for (int y : ys) { |
| for (int x : xs) { |
| instructions.slices.push_back(slice_coordinates{ |
| x, |
| y, |
| clip_image_size{window_size, window_size}, |
| }); |
| } |
| } |
|
|
| return instructions; |
| } |
|
|
| mtmd_image_preproc_out mtmd_image_preprocessor_step3vl::preprocess(const clip_image_u8 & img) { |
| clip_image_u8 prepared = prepare_image(img, hparams); |
| const auto instructions = build_slice_instructions(hparams, prepared.get_size()); |
|
|
| mtmd_image_preproc_out output; |
| |
| img_u8_resize_bilinear_to_f32( |
| prepared, |
| output.overview, |
| hparams.image_size, |
| hparams.image_size, |
| hparams.image_mean, |
| hparams.image_std); |
|
|
| if (instructions.slices.empty()) { |
| output.grid_x = 0; |
| output.grid_y = 0; |
| return output; |
| } |
|
|
| clip_image_u8 img_for_crop = prepared; |
| const auto prepared_size = prepared.get_size(); |
| if (instructions.refined_size.width != prepared_size.width || instructions.refined_size.height != prepared_size.height) { |
| clip_image_u8 refined; |
| img_tool::resize(prepared, refined, instructions.refined_size, RESIZE_ALGO_BILINEAR, PAD_NONE); |
| img_for_crop = std::move(refined); |
| } |
|
|
| const int crop_size = default_image_crop_size; |
| for (const auto & slice : instructions.slices) { |
| |
| clip_image_u8 patch = crop_with_black_padding(img_for_crop, slice.x, slice.y, slice.size.width, slice.size.height); |
|
|
| clip_image_f32 patch_f32; |
| img_u8_resize_bilinear_to_f32( |
| patch, |
| patch_f32, |
| crop_size, |
| crop_size, |
| hparams.image_mean, |
| hparams.image_std); |
| output.append(hparams, patch_f32, false); |
| } |
|
|
| output.grid_x = instructions.grid_size.width; |
| output.grid_y = instructions.grid_size.height; |
|
|
| return output; |
| } |
|
|
| |
| |
| |
|
|
| mtmd_image_preproc_out mtmd_image_preprocessor_youtuvl::preprocess(const clip_image_u8 & img) { |
| const int patch_size = hparams.patch_size; |
| const int merge_size = hparams.n_merge; |
| const int align_size = patch_size * merge_size; |
|
|
| const int max_num_patches = hparams.image_max_pixels > 0 ? |
| hparams.image_max_pixels / (patch_size * patch_size) : 256; |
|
|
| |
| const auto img_size = img.get_size(); |
| float scale = 1.0f; |
| int target_height = img_size.height; |
| int target_width = img_size.width; |
|
|
| auto get_scaled_image_size = [align_size](float scale, int size) -> int { |
| float scaled_size = size * scale; |
| |
| int aligned = static_cast<int>(std::ceil(scaled_size / align_size)) * align_size; |
| |
| return std::max(align_size, aligned); |
| }; |
|
|
| |
| while (scale > 0.0f) { |
| target_height = get_scaled_image_size(scale, img_size.height); |
| target_width = get_scaled_image_size(scale, img_size.width); |
|
|
| int num_patches_h = target_height / patch_size; |
| int num_patches_w = target_width / patch_size; |
| int num_patches = num_patches_h * num_patches_w; |
|
|
| if (num_patches > max_num_patches) { |
| scale -= 0.02f; |
| } else { |
| break; |
| } |
| } |
|
|
| clip_image_size new_size = {target_width, target_height}; |
|
|
| |
| clip_image_u8 resized; |
| img_tool::resize(img, resized, new_size, hparams.image_resize_algo, hparams.image_resize_pad); |
|
|
| mtmd_image_preproc_out output; |
| output.append(hparams, resized, true); |
| return output; |
| } |
|
|
| mtmd_image_preproc_out mtmd_image_preprocessor_granite::preprocess(const clip_image_u8 & img) { |
| auto output = mtmd_image_preprocessor_llava_uhd::preprocess(img); |
| if (output.entries.size() == 0) { |
| |
| output.overview.add_newline = true; |
| } else { |
| |
| output.overview.add_newline = false; |
| for (size_t i = 0; i < output.entries.size(); ++i) { |
| output.entries[i].add_newline = true; |
| } |
| } |
| return output; |
| } |
|
|
| |
| |
| |
|
|
| |
| static clip_image_size muse_glimmer_grid_size(int img_w, int img_h, int patch_hw, int max_tokens) { |
| double i_nph = (double) img_h / patch_hw; |
| double i_npw = (double) img_w / patch_hw; |
| const double ratio = i_nph > 0.0 ? i_npw / i_nph : 1.0; |
| if (i_nph * i_npw > (double) max_tokens) { |
| i_nph = std::sqrt((double) max_tokens / ratio); |
| i_npw = i_nph * ratio; |
| } |
| const int hs[2] = { (int) std::floor(i_nph), (int) std::ceil(i_nph) }; |
| const int ws[2] = { (int) std::floor(i_npw), (int) std::ceil(i_npw) }; |
| const double target_ar = (double) img_h / (double) img_w; |
| int best_nph = -1; |
| int best_npw = -1; |
| double best_d = 0.0; |
| for (int a = 0; a < 2; ++a) { |
| for (int b = 0; b < 2; ++b) { |
| const int nph = hs[a]; |
| const int npw = ws[b]; |
| if (nph < 1 || npw < 1 || nph * npw > max_tokens) { |
| continue; |
| } |
| const double d = std::fabs((double) nph / (double) npw - target_ar); |
| const int n_tokens = nph * npw; |
| const int best_n_tokens = best_nph * best_npw; |
| if (best_nph < 0 || d < best_d || (d == best_d && n_tokens > best_n_tokens)) { |
| best_nph = nph; |
| best_npw = npw; |
| best_d = d; |
| } |
| } |
| } |
| if (best_nph < 0) { |
| best_nph = std::max(1, (int) std::lround(i_nph)); |
| best_npw = std::max(1, (int) std::lround(i_npw)); |
| } |
| return clip_image_size{ best_npw * patch_hw, best_nph * patch_hw }; |
| } |
|
|
| mtmd_image_preproc_out mtmd_image_preprocessor_muse_glimmer::preprocess(const clip_image_u8 & img) { |
| const int patch_hw = hparams.patch_size * hparams.n_merge; |
| const int patch_area = hparams.patch_size * hparams.patch_size * hparams.n_merge * hparams.n_merge; |
| GGML_ASSERT(patch_area > 0 && hparams.image_max_pixels > 0); |
| const int max_tokens = hparams.image_max_pixels / patch_area; |
|
|
| const clip_image_size original_size = img.get_size(); |
| const clip_image_size target_size = muse_glimmer_grid_size( |
| original_size.width, original_size.height, patch_hw, max_tokens); |
|
|
| |
| clip_image_u8 resized_image; |
| img_tool::resize(img, resized_image, target_size, hparams.image_resize_algo, PAD_NONE); |
|
|
| mtmd_image_preproc_out output; |
| output.append(hparams, resized_image, true); |
| return output; |
| } |
|
|