-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcolorproc.hpp
More file actions
25 lines (19 loc) · 760 Bytes
/
Copy pathcolorproc.hpp
File metadata and controls
25 lines (19 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//
// colorproc.h
//
//
// Created by Maurizio Giordano on 20/02/14.
//
//
#ifndef ____colorproc__
#define ____colorproc__
#include <iostream>
#include "pixel_lib.hpp"
#include "wisard.hpp"
extern long int hits;
extern long int misses;
#endif /* defined(____colorproc__) */
cache_entry_t *makeTupleRGB(cache_entry_t *, unsigned char, unsigned char, unsigned char, int, int, int, pix_t **);
cache_entry_t *makeTupleHSV(cache_entry_t *, unsigned char, unsigned char, unsigned char, int, int, int, pix_t **);
cache_entry_t *makeTupleCachedRGB(cache_entry_t *, unsigned char, unsigned char, unsigned char, int, int, int, pix_t **);
cache_entry_t *makeTupleCachedHSV(cache_entry_t *, unsigned char, unsigned char, unsigned char, int, int, int, pix_t **);