-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_cap.c
225 lines (193 loc) · 6.34 KB
/
test_cap.c
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
#include <stdio.h>
#include <stdint.h>
#include <inttypes.h>
#include <stdlib.h>
#include <unistd.h>
#include <time.h>
#include <string.h>
#include <argp.h>
#include <stdbool.h>
#include <sys/time.h>
#include <fitsio.h>
#include <xpa.h>
#include <ASICamera2.h>
const char *argp_program_version = "test_cap 0.0.1dev";
const char *argp_program_bug_address = "<[email protected]>";
static char doc[] = "Test ZWO ASI camera by taking single frame and saving it to a FITS image.";
static char args_doc[] = "";
static struct argp_option options[] = {
{"output", 'o', "FITSFILE", 0, "Output FITS file (default: test.fits)."},
{"exptime", 'e', "EXPTIME", 0, "Exposure time in seconds (default: 1.0)."},
{"gain", 'g', "GAIN", 0, "Detector gain (default: 0)."},
{"offset", 'l', "OFFSET", 0, "Detector bias offset (default: 0)"},
{"binning", 'b', "BINNING", 0, "Detector binning (default: 1)."},
{"width", 'w', "WIDTH", 0, "ROI width (default: detector max)."},
{"height", 'h', "HEIGHT", 0, "ROI height (default: detector max)."},
{"x_start", 'x', "X", 0, "X-axis start position (default: centered ROI)."},
{"y_start", 'y', "Y", 0, "Y-axis start position (default: centered ROT)."},
{ 0 }
};
struct arguments {
char *output;
float exptime;
int gain;
int offset;
int binning;
int width;
int height;
int x_start;
int y_start;
};
static error_t parse_opt(int key, char *arg, struct argp_state *state) {
struct arguments *arguments = state->input;
switch (key) {
case 'o':
arguments->output = arg;
break;
case 'e':
arguments->exptime = atof(arg);
break;
case 'g':
arguments->gain = atoi(arg);
break;
case 'l':
arguments->offset = atoi(arg);
break;
case 'b':
arguments->binning = atoi(arg);
break;
case 'w':
arguments->width = atoi(arg);
break;
case 'h':
arguments->height = atoi(arg);
break;
case 'x':
arguments->x_start = atoi(arg);
break;
case 'y':
arguments->y_start = atoi(arg);
break;
case ARGP_KEY_ARG:
argp_usage(state);
break;
default:
return ARGP_ERR_UNKNOWN;
};
return 0;
};
static struct argp argp = { options, parse_opt, args_doc, doc };
int main(int argc, char **argv) {
fitsfile *fptr;
long fpixel=1, naxes[2];
int width, height;
unsigned int min_bytes, max_bytes, max_width, max_height;
uint64_t total_bytes = 0;
struct timeval start_time, end_time;
time_t start_sec, end_sec;
suseconds_t start_usec, end_usec;
float exptime, elapsed_time, fps;
char *filename;
int i, gain, exp_ms, fitstatus;
int cam = 0, bin = 1, imtype = ASI_IMG_RAW8;
unsigned char *imbuf;
struct arguments arguments;
arguments.output = "!test.fits";
arguments.exptime = 1.0;
arguments.gain = 0;
arguments.offset = 0;
arguments.binning = 1;
arguments.width = 0;
arguments.height = 0;
arguments.x_start = 0;
arguments.y_start = 0;
argp_parse(&argp, argc, argv, 0, 0, &arguments);
filename = arguments.output;
exptime = arguments.exptime;
gain = arguments.gain;
if (arguments.binning > 0 && arguments.binning <= 4) {
bin = arguments.binning;
} else {
printf("Allowed binning values in range of 1-4. Defaulting to 1x1...\n");
}
printf("%f second exposure at gain=%d being saved to %s.\n", exptime, gain, filename);
int nCamera = ASIGetNumOfConnectedCameras();
if (nCamera <= 0) {
printf("No camera connected.\n");
return -1;
}
printf("Attached cameras:\n");
ASI_CAMERA_INFO ASICameraInfo;
for (i=0; i < nCamera; i++) {
ASIGetCameraProperty(&ASICameraInfo, i);
printf("%d %s\n", i, ASICameraInfo.Name);
}
if (ASIOpenCamera(cam) != ASI_SUCCESS) {
printf("Error opening camera %d!", cam);
return -1;
}
ASIInitCamera(cam);
// give the camera a second to gather its wits...
usleep(1000000);
printf("%s information:\n", ASICameraInfo.Name);
max_width = ASICameraInfo.MaxWidth;
max_height = ASICameraInfo.MaxHeight;
printf("Resolution: %dx%d\n", max_width, max_height);
ASI_CONTROL_CAPS ControlCaps;
int nctrl = 0;
ASIGetNumOfControls(cam, &nctrl);
for (i=0; i < nctrl; i++) {
ASIGetControlCaps(cam, i, &ControlCaps);
printf("%s: %ld -- %ld (default: %ld)\n",
ControlCaps.Name,
ControlCaps.MinValue,
ControlCaps.MaxValue,
ControlCaps.DefaultValue
);
}
long camtemp = 0;
ASI_BOOL bAuto = ASI_FALSE;
ASIGetControlValue(cam, ASI_TEMPERATURE, &camtemp, &bAuto);
printf("Sensor Temperature: %f\n", (float)camtemp/10.0);
if (arguments.width > 0 && arguments.width <= max_width) {
width = arguments.width;
} else {
width = max_width;
};
if (arguments.height > 0 && arguments.height <= max_height) {
height = arguments.height;
} else {
height = max_height;
};
while(ASI_SUCCESS != ASISetROIFormat(cam, width, height, bin, imtype));
ASIGetROIFormat(cam, &width, &height, &bin, (ASI_IMG_TYPE*)&imtype);
naxes[0] = width;
naxes[1] = height;
long imsize = width * height;
if (!(imbuf = malloc(imsize * sizeof(char)))) {
printf("Couldn't allocate image buffer.\n");
return -1;
}
fits_create_file(&fptr, filename, &fitstatus);
fits_create_img(fptr, BYTE_IMG, 2, naxes, &fitstatus);
ASISetControlValue(cam, ASI_GAIN, gain, ASI_FALSE);
ASISetControlValue(cam, ASI_BRIGHTNESS, arguments.offset, ASI_FALSE);
int exp_us = (int)exptime * 1.0e6;
ASISetControlValue(cam, ASI_EXPOSURE, exp_us, ASI_FALSE);
ASISetControlValue(cam, ASI_BANDWIDTHOVERLOAD, 40, ASI_FALSE);
ASI_EXPOSURE_STATUS status;
ASIStartExposure(cam, ASI_FALSE);
usleep(10000);
status = ASI_EXP_WORKING;
while(status == ASI_EXP_WORKING) {
ASIGetExpStatus(cam, &status);
}
if (status == ASI_EXP_SUCCESS) {
ASIGetDataAfterExp(cam, imbuf, imsize);
fits_write_img(fptr, TBYTE, fpixel, imsize, imbuf, &fitstatus);
}
fits_close_file(fptr, &fitstatus);
ASIStopExposure(cam);
ASICloseCamera(cam);
return 1;
}