view Meerwald/bruyn_common.h @ 22:d8551fb39a5e default tip

Added tag v0.6 for changeset 1c4ccd635a68
author Peter Meerwald-Stadler <pmeerw@pmeerw.net>
date Sat, 28 Jan 2023 23:57:51 +0100
parents acb6967ee76d
children
line wrap: on
line source

#ifndef BRUYN_COMMON_H
#define BRUYN_COMMON_H

#include "pgm.h"

// for block type classification
#define BLOCKTYPE_UNKNOWN 0
#define BLOCKTYPE_HARD 1
#define BLOCKTYPE_PROGRESSIVE 2
#define BLOCKTYPE_NOISE 3

// thresholds
#define THRESHOLD_NOISE 10.0
#define THRESHOLD_SLOPE 5.0
#define THRESHOLD_NOISE_USAGE "10.0"
#define THRESHOLD_SLOPE_USAGE "5.0"

// zone classification
#define ZONE_VOID 0
#define ZONE_1 1
#define ZONE_2 2

// category classification
#define CATEGORY_VOID 0
#define CATEGORY_A 4
#define CATEGORY_B 8

// classifiction = zone | category
#define CLASSIFICATION_1A (ZONE_1 | CATEGORY_A)
#define CLASSIFICATION_1B (ZONE_1 | CATEGORY_B)
#define CLASSIFICATION_2A (ZONE_2 | CATEGORY_A)
#define CLASSIFICATION_2B (ZONE_2 | CATEGORY_B)
#define CLASSIFICATION_A CATEGORY_A
#define CLASSIFICATION_B CATEGORY_B

#define NPATTERN 3
#define NPATTERN_USAGE "3"

gray lookup_pattern(int pattern, int c, int r);

#endif /* BRUYN_COMMON_H */

Repositories maintained by Peter Meerwald, pmeerw@pmeerw.net.