This repository has been archived by the owner. It is now read-only.
Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
ImageIO/andor/atsif_getnumberframes.m
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
22 lines (20 sloc)
772 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function [ret,noframes]=atsif_getnumberframes(source) | |
%AT_U32 ATSIF_GetNumberFrames(ATSIF_DataSource _source, AT_U32 * _ui_images) | |
% | |
% | |
%Description : This function is used to retrieve the number of frames in 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 | |
% noframes - The number of frames in the SIF file | |
% | |
[ret,noframes] = atsifiomex('ATSIF_GetNumberFrames', source); |