File: image_u8_parallel.h

package info (click to toggle)
apriltag 3.4.5-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,660 kB
  • sloc: ansic: 174,732; cpp: 153; xml: 21; makefile: 10
file content (19 lines) | stat: -rw-r--r-- 506 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**
 * @file image_u8_parallel.h
 * @author MqCreaple (gmq14159@gmail.com)
 * @brief Parallelized processing of various image_u8 related functions.
 * @version 0.1
 * @date 2025-08-07
 * 
 * @copyright Copyright (c) 2025
 * 
 */
#pragma once

#include "image_u8.h"
#include "workerpool.h"
#include "math_util.h"

void image_u8_convolve_2D_parallel(workerpool_t *wp, image_u8_t *im, const uint8_t *k, int ksz);

void image_u8_gaussian_blur_parallel(workerpool_t *wp, image_u8_t *im, double sigma, int ksz);