Bluenet  5.7.0
Bluenet, firmware for nRF52 smart home devices
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
optmed.h
Go to the documentation of this file.
1/*
2 * The following routines have been built from knowledge gathered
3 * around the Web. I am not aware of any copyright problem with
4 * them, so use it as you want.
5 * N. Devillard - 1998
6 */
7
8// Found here: http://ndevilla.free.fr/median/median/index.html
9
10#pragma once
11
12#include <cstdint>
13
14typedef int32_t pixelvalue;
15
16/*----------------------------------------------------------------------------
17 Function : opt_med3()
18 In : pointer to array of 3 pixel values
19 Out : a pixelvalue
20 Job : optimized search of the median of 3 pixel values
21 Notice : found on sci.image.processing
22 cannot go faster unless assumptions are made
23 on the nature of the input signal.
24 ---------------------------------------------------------------------------*/
26
27/*----------------------------------------------------------------------------
28 Function : opt_med5()
29 In : pointer to array of 5 pixel values
30 Out : a pixelvalue
31 Job : optimized search of the median of 5 pixel values
32 Notice : found on sci.image.processing
33 cannot go faster unless assumptions are made
34 on the nature of the input signal.
35 ---------------------------------------------------------------------------*/
37
38/*----------------------------------------------------------------------------
39 Function : opt_med6()
40 In : pointer to array of 6 pixel values
41 Out : a pixelvalue
42 Job : optimized search of the median of 6 pixel values
43 Notice : from Christoph_John@gmx.de
44 based on a selection network which was proposed in
45 "FAST, EFFICIENT MEDIAN FILTERS WITH EVEN LENGTH WINDOWS"
46 J.P. HAVLICEK, K.A. SAKADY, G.R.KATZ
47 If you need larger even length kernels check the paper
48 ---------------------------------------------------------------------------*/
50
51/*----------------------------------------------------------------------------
52 Function : opt_med7()
53 In : pointer to array of 7 pixel values
54 Out : a pixelvalue
55 Job : optimized search of the median of 7 pixel values
56 Notice : found on sci.image.processing
57 cannot go faster unless assumptions are made
58 on the nature of the input signal.
59 ---------------------------------------------------------------------------*/
61
62/*----------------------------------------------------------------------------
63 Function : opt_med9()
64 In : pointer to an array of 9 pixelvalues
65 Out : a pixelvalue
66 Job : optimized search of the median of 9 pixelvalues
67 Notice : in theory, cannot go faster without assumptions on the
68 signal.
69 Formula from:
70 XILINX XCELL magazine, vol. 23 by John L. Smith
71
72 The input array is modified in the process
73 The result array is guaranteed to contain the median
74 value
75 in middle position, but other elements are NOT sorted.
76 ---------------------------------------------------------------------------*/
78
79/*----------------------------------------------------------------------------
80 Function : opt_med25()
81 In : pointer to an array of 25 pixelvalues
82 Out : a pixelvalue
83 Job : optimized search of the median of 25 pixelvalues
84 Notice : in theory, cannot go faster without assumptions on the
85 signal.
86 Code taken from Graphic Gems.
87 ---------------------------------------------------------------------------*/
pixelvalue opt_med7(pixelvalue *p)
pixelvalue opt_med9(pixelvalue *p)
pixelvalue opt_med3(pixelvalue *p)
pixelvalue opt_med5(pixelvalue *p)
int32_t pixelvalue
Definition: optmed.h:14
pixelvalue opt_med6(pixelvalue *p)
pixelvalue opt_med25(pixelvalue *p)