-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathatsifex_getnumbersubimages.m
More file actions
25 lines (23 loc) · 974 Bytes
/
atsifex_getnumbersubimages.m
File metadata and controls
25 lines (23 loc) · 974 Bytes
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
function [ret,nosubImgs] = atsifex_getnumbersubimages(source)
% [ret,nosubImgs] = atsifex_getnumbersubimages(source)
%
%Description : This function is used to retrieve the number of sub-images in each frame
% of the SIF file. The data source is selected using the ATSIF_DataSource
% enumeration which has the following values:-
%
% 0 - Signal
% 1 - Reference
% 2 - Background
% 3 - Live
% 4 - Source
%
%Arguments : source - The enumeration for selecting the SIF file data source
%
%Return : ret - Check the help for return code meanings
% nosubImgs - The number of sub-images in each frame in the SIF file
%
%
% This file was generated from the corresponding atsif_* function
% provided by ANDOR MatLab SIF reader
% Author: Andriy Nych, 2013
[ret,nosubImgs] = atsifiomex('ATSIF_GetNumberSubImages', source); atsifex_CheckReturnCode(ret);