Changeset 3606 for trunk/Ohana/src/imregister/imreg/match.c
- Timestamp:
- Mar 31, 2005, 4:42:29 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/Ohana/src/imregister/imreg/match.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/imregister/imreg/match.c
r2803 r3606 2 2 # include "imreg.h" 3 3 4 int *match_criteria ( int *Nmatch) {4 int *match_criteria (RegImage *image, int Nimage, int *Nmatch) { 5 5 6 int i, j, Nname , Nimage;6 int i, j, Nname; 7 7 int N, NMATCH; 8 8 int *match; 9 9 int reject; 10 RegImage *image;11 10 12 11 /* create selection index */ … … 18 17 if (criteria.NameSelect) Nname = strlen (criteria.Name); 19 18 20 image = get_images (&Nimage);21 22 19 /* find entries that matches criteria */ 23 20 for (i = 0; i < Nimage; i++) { … … 46 43 } 47 44 48 int *match_images (RegImage * subset, int Nsubset, int *Nmatch) {45 int *match_images (RegImage *image, int Nimage, RegImage *subset, int Nsubset, int *Nmatch) { 49 46 50 int i, j, N, N image, Nfound;47 int i, j, N, Nfound; 51 48 int *match; 52 RegImage *image;53 54 image = get_images (&Nimage);55 49 56 50 /* find matching images - very inefficient : sort by obstime, find those first? */
Note:
See TracChangeset
for help on using the changeset viewer.
