-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcamera_example.m
88 lines (65 loc) · 2.36 KB
/
camera_example.m
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
% Andrew Horsley, 27/5/2016
%% NI DIO card (NI PCI DIO-32HS)
% used for sending TTL trigger pulses to the camera
% delete(instrfind); % clear instrument memory
% s = daq.createSession('ni');
% addDigitalChannel(s,'Dev1','port3/line0','OutputOnly');
%% Camera properties
% Photometrics PRIME camera
% Ensure that we are starting in a blank state:
% Close camera and unload all device configurations
try
core.reset
catch
end
% Destroy any previous core object
clear core
% Instantiate a MMCore object
import mmcorej.*
core = CMMCore();
% Load camera configuration and initialize.
core.loadSystemConfiguration('C:\Users\yuanhui\Downloads\FRET_Microscope\PM_USB_A26\Imaging Software\Prime Configuration File\Prime_20180522.cfg');
% apply settings:
% set property using: core.setProperty('Prime', 'Binning', '1x1');
% check using: binning = core.getProperty('Prime', 'Binning');
core.setProperty('Prime_20180522', 'Binning', '1x1');
core.setProperty('Prime_20180522', 'Gain', '1');
core.setProperty('Prime_20180522', 'Exposure', '50');
core.setProperty('Prime_20180522', 'ClearMode', 'Pre-Sequence');
core.setProperty('Prime_20180522', 'ClearCycles', '1'); % default is 2
core.setProperty('Prime_20180522', 'TriggerMode', 'Internal Trigger');
core.setProperty('Prime_20180522', 'ExposeOutMode', 'All Rows');
% set ROI. For best frame rate, the ROI should be vertically symmetric
% around the chip centre (as there are two sensor halves). May as well
% centre the ROI horizontally as well (X-axis)
NumXPixels=2048; NumYPixels=2048;
XStart=floor(2048-NumXPixels)/2; YStart=floor(2048-NumYPixels)/2;
core.setROI(XStart,YStart,NumXPixels,NumYPixels);
%% Take images
nTestImages = 100;
% set up image array
width = NumXPixels;
height = NumYPixels;
actual = zeros(width,height,nTestImages);
% ready camera
core.startSequenceAcquisition(nTestImages, 0, false);
% take images
% for i=1:nTestImages
% outputSingleScan(s,1);outputSingleScan(s,0); % effective TTL pulse to trigger camera
% pause(1+0.03)
% end
% extract images from micromanager storage
figure;
for m=1:nTestImages
n=nTestImages-m+1;
pause(1)
actual(:,:,n) = transpose(reshape(double(core.popNextImage()), [width, height]));
imagesc(squeeze(actual(:,:,n))); axis image
end
% plot example image
%% Clean up:
% delete(instrfind)
% delete(s)
% clear s
% Close camera and unload all device configurations
% core.reset