Last change
on this file since 808 was
805,
checked in by meunier, 9 years ago
|
- Adding the parallel version of rosenfeld
|
File size:
390 bytes
|
Line | |
---|
1 | /* --------------------- */ |
---|
2 | /* --- matrix_dist.h --- */ |
---|
3 | /* --------------------- */ |
---|
4 | |
---|
5 | #ifndef __MATRIX_DIST_H__ |
---|
6 | #define __MATRIX_DIST_H__ |
---|
7 | |
---|
8 | #ifdef __cplusplus |
---|
9 | #pragma message ("C++") |
---|
10 | extern "C" { |
---|
11 | #endif |
---|
12 | |
---|
13 | uint32 ** dist_ui32matrix(int i0, int i1, int j0, int j1); |
---|
14 | void free_dist_ui32matrix(uint32 ** m, int i0, int i1, int j0, int j1); |
---|
15 | |
---|
16 | #ifdef __cplusplus |
---|
17 | } |
---|
18 | #endif |
---|
19 | |
---|
20 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.