forked from OpenPHDGuiding/phd2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cam_MeadeDSI.cpp
259 lines (216 loc) · 7.89 KB
/
cam_MeadeDSI.cpp
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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
/*
* cam_MeadeDSI.cpp
* PHD Guiding
*
* Created by Craig Stark.
* Copyright (c) 2006, 2007, 2008, 2009, 2010 Craig Stark.
* All rights reserved.
*
* This source code is distributed under the following "BSD" license
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of Craig Stark, Stark Labs nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
*/
#include "phd.h"
#ifdef MEADE_DSI_CAMERA
#include "camera.h"
#include "time.h"
#include "image_math.h"
#include "cam_MeadeDSI.h"
#if defined(__APPLE__)
# include <IOKit/usb/IOUSBLib.h>
#endif
#include "DsiDevice.h"
class DsiDevice;
class CameraDSI : public GuideCamera
{
DsiDevice *MeadeCam;
public:
CameraDSI();
~CameraDSI();
bool CanSelectCamera() const override { return true; }
bool EnumCameras(wxArrayString& names, wxArrayString& ids) override;
bool Capture(int duration, usImage& img, int options, const wxRect& subframe) override;
bool HasNonGuiCapture() override;
wxByte BitsPerPixel() override;
bool Connect(const wxString& camId) override;
bool Disconnect() override;
bool GetDevicePixelSize(double *devPixelSize) override;
};
CameraDSI::CameraDSI()
: MeadeCam(0)
{
Name = _T("Meade DSI");
FullSize = wxSize(768,505); // CURRENTLY ULTRA-RAW
HasGainControl = true;
}
CameraDSI::~CameraDSI()
{
delete MeadeCam;
}
wxByte CameraDSI::BitsPerPixel()
{
return 16;
}
bool CameraDSI::EnumCameras(wxArrayString& names, wxArrayString& ids)
{
if (!MeadeCam)
MeadeCam = new DsiDevice();
unsigned int NDevices = MeadeCam->EnumDsiDevices();
for (unsigned int i = 1; i <= NDevices; i++)
{
DsiDevice *TmpCam = new DsiDevice();
if (TmpCam->Open(i))
{
names.Add(wxString::Format("%u: %s", i, TmpCam->ModelName));
ids.Add(wxString::Format("%u", i));
}
TmpCam->Close();
delete TmpCam;
}
return false;
}
bool CameraDSI::Connect(const wxString& camId)
{
bool retval = false;
if (!MeadeCam)
MeadeCam = new DsiDevice();
unsigned int NDevices = MeadeCam->EnumDsiDevices();
if (!NDevices)
return CamConnectFailed(_("No DSI cameras found"));
unsigned long DevNum = 0;
if (camId == DEFAULT_CAMERA_ID)
DevNum = 1;
else
camId.ToULong(&DevNum);
if (DevNum < 1 || DevNum > NDevices)
{
Debug.AddLine(wxString::Format("DSI: invalid camera id: '%s', ncams = %u", camId, NDevices));
return true;
}
retval = !(MeadeCam->Open(DevNum));
// wxMessageBox(wxString::Format("Color: %d\n%u x %u",
// MeadeCam->IsColor,MeadeCam->GetWidth(),MeadeCam->GetHeight()));
if (!retval) {
FullSize = wxSize(MeadeCam->GetWidth(),MeadeCam->GetHeight());
// wxMessageBox(wxString::Format("%s\n%s (%d)\nColor: %d\n-II: %d\n%u x %u",MeadeCam->CcdName,MeadeCam->ModelName, MeadeCam->ModelNumber,
// MeadeCam->IsColor,MeadeCam->IsDsiII, FullSize.GetWidth(), FullSize.GetHeight()) + "\n" + MeadeCam->ErrorMessage);
// wxMessageBox(wxString::Format("%s\n%s (%d)\nColor: %d\n-USB2: %d\n%u x %u",MeadeCam->CcdName,MeadeCam->ModelName, MeadeCam->ModelNumber,
// MeadeCam->IsColor,MeadeCam->IsUSB2, FullSize.GetWidth(), FullSize.GetHeight()) + "\n" + MeadeCam->ErrorMessage);
MeadeCam->Initialize();
MeadeCam->SetHighGain(true);
if (!MeadeCam->IsDsiIII) MeadeCam->SetDualExposureThreshold(501);
else MeadeCam->SetBinMode(1);
MeadeCam->SetOffset(255);
MeadeCam->SetFastReadoutSpeed(true);
Connected = true;
}
return retval;
}
bool CameraDSI::Disconnect()
{
MeadeCam->Close();
delete MeadeCam;
MeadeCam = 0;
Connected = false;
return false;
}
bool CameraDSI::GetDevicePixelSize(double *devPixelSize)
{
if (!Connected)
return true;
// If the pixels aren't square, use the smaller dimension because the image
// is "squared up" by scaling to the smaller dimension
if (MeadeCam->IsDsiIII)
*devPixelSize = 6.5;
else if (MeadeCam->IsDsiII)
*devPixelSize = 8.3;
else
*devPixelSize = 7.5;
return false; // Pixel sizes are hard-coded
}
bool CameraDSI::Capture(int duration, usImage& img, int options, const wxRect& subframe)
{
MeadeCam->SetGain((unsigned int) (GuideCameraGain * 63 / 100));
MeadeCam->SetExposureTime(duration);
if (img.Init(MeadeCam->GetWidth(), MeadeCam->GetHeight()))
{
DisconnectWithAlert(CAPT_FAIL_MEMORY);
return true;
}
bool retval = MeadeCam->GetImage(img.ImageData, true);
if (!retval)
return true;
// The AbortImage method does not appear to work with the DSI camera. If abort is called and the thread is terminated, the
// pending image is still downloaded and PHD2 will crash
#if AbortActuallyWorks
CameraWatchdog watchdog(duration, GetTimeoutMs());
// wait for image to finish and d/l
while (!MeadeCam->ImageReady)
{
wxMilliSleep(20);
if (WorkerThread::InterruptRequested())
{
MeadeCam->AbortImage();
return true;
}
if (watchdog.Expired())
{
MeadeCam->AbortImage();
DisconnectWithAlert(CAPT_FAIL_TIMEOUT);
return true;
}
}
#else // handle the pending image download, regardless
// We also need to prevent the thread from being killed when phd2 is closed
WorkerThreadKillGuard _guard;
if (duration > 100) {
wxMilliSleep(duration - 100); // wait until near end of exposure, nicely
}
bool still_going = true;
while (still_going) { // wait for image to finish and d/l
wxMilliSleep(20);
still_going = !(MeadeCam->ImageReady);
}
#endif // end of waiting for the image
if (options & CAPTURE_SUBTRACT_DARK) SubtractDark(img);
if (options & CAPTURE_RECON)
{
if (MeadeCam->IsColor)
QuickLRecon(img);
if (MeadeCam->IsDsiII)
SquarePixels(img, 8.6, 8.3);
else if (!MeadeCam->IsDsiIII) // Original DSI
SquarePixels(img, 9.6, 7.5);
}
return false;
}
bool CameraDSI::HasNonGuiCapture(void)
{
return true;
}
GuideCamera *DSICameraFactory::MakeDSICamera()
{
return new CameraDSI();
}
#endif // MEADE_DSI_CAMERA