Changeset 37068 for branches/eam_branches/ipp-ops-20130712/ppBackground/src
- Timestamp:
- Jul 17, 2014, 12:36:19 PM (12 years ago)
- Location:
- branches/eam_branches/ipp-ops-20130712
- Files:
-
- 4 edited
- 7 copied
-
. (modified) (1 prop)
-
ppBackground/src (modified) (1 prop)
-
ppBackground/src/Makefile.am (modified) (3 diffs)
-
ppBackground/src/ppBackground.c (modified) (1 diff)
-
ppBackground/src/ppBackgroundStack.c (copied) (copied from trunk/ppBackground/src/ppBackgroundStack.c )
-
ppBackground/src/ppBackgroundStack.h (copied) (copied from trunk/ppBackground/src/ppBackgroundStack.h )
-
ppBackground/src/ppBackgroundStackArguments.c (copied) (copied from trunk/ppBackground/src/ppBackgroundStackArguments.c )
-
ppBackground/src/ppBackgroundStackCamera.c (copied) (copied from trunk/ppBackground/src/ppBackgroundStackCamera.c )
-
ppBackground/src/ppBackgroundStackData.c (copied) (copied from trunk/ppBackground/src/ppBackgroundStackData.c )
-
ppBackground/src/ppBackgroundStackLoop.c (copied) (copied from trunk/ppBackground/src/ppBackgroundStackLoop.c )
-
ppBackground/src/ppBackgroundStackMath.c (copied) (copied from trunk/ppBackground/src/ppBackgroundStackMath.c )
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-ops-20130712
- Property svn:mergeinfo changed
-
branches/eam_branches/ipp-ops-20130712/ppBackground/src
- Property svn:ignore
-
branches/eam_branches/ipp-ops-20130712/ppBackground/src/Makefile.am
r28281 r37068 1 bin_PROGRAMS = ppBackground 1 bin_PROGRAMS = ppBackground ppBackgroundStack 2 2 3 3 if HAVE_SVNVERSION … … 28 28 ppBackground_LDFLAGS = $(PSLIB_LIBS) $(PSMODULE_LIBS) $(PPSTATS_LIBS) $(PSPHOT_LIBS) $(PPBACKGROUND_LIBS) 29 29 30 ppBackgroundStack_CPPFLAGS = $(ppBackground_CPPFLAGS) 31 ppBackgroundStack_LDFLAGS = $(ppBackground_LDFLAGS) 32 30 33 ppBackground_SOURCES = \ 31 34 ppBackground.c \ … … 38 41 ppBackgroundErrorCodes.c \ 39 42 ppBackgroundExit.c 43 44 ppBackgroundStack_SOURCES = \ 45 ppBackgroundStack.c \ 46 ppBackgroundStackArguments.c \ 47 ppBackgroundStackCamera.c \ 48 ppBackgroundStackData.c \ 49 ppBackgroundStackLoop.c \ 50 ppBackgroundStackMath.c \ 51 ppBackgroundVersion.c \ 52 ppBackgroundErrorCodes.c \ 53 ppBackgroundExit.c 54 40 55 41 56 noinst_HEADERS = \ -
branches/eam_branches/ipp-ops-20130712/ppBackground/src/ppBackground.c
r28280 r37068 18 18 ppBackgroundErrorRegister(); 19 19 20 printf("Initializing data\n"); 20 21 ppBackgroundData *data = ppBackgroundDataInit(&argc, argv); 21 22 if (!data) { 22 23 goto DIE; 23 24 } 24 25 printf("Reading Arguments\n"); 25 26 if (!ppBackgroundArguments(data, argc, argv)) { 26 27 goto DIE; 27 28 } 28 29 printf("Setting up Camera\n"); 29 30 if (!ppBackgroundCamera(data)) { 30 31 goto DIE; 31 32 } 32 33 34 printf("Looping over data!\n"); 33 35 if (!ppBackgroundLoop(data)) { 34 36 goto DIE;
Note:
See TracChangeset
for help on using the changeset viewer.
