blob: 730ad2a83957a90318b05bda436fa268046191f9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
include "ecidentify.h"
# EC_CENTER -- Locate the center of a feature.
double procedure ec_center (ec, x, width, type)
pointer ec # EC pointer
double x # Initial guess
real width # Feature width
int type # Feature type
double dvalue
real value
real center1d()
double smw_c1trand()
begin
if (IS_INDEFD(x))
return (x)
dvalue = smw_c1trand (EC_PL(ec), x)
if (IS_INDEFD(dvalue))
return (dvalue)
value = dvalue
value = center1d (value, IMDATA(ec,1), EC_NPTS(ec), width,
abs (type), EC_CRADIUS(ec), EC_THRESHOLD(ec))
if (IS_INDEF(value))
return (INDEFD)
else
return (smw_c1trand (EC_LP(ec), double(value)))
end
|