Subversion Repositories seema-scanner

Rev

Rev 155 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 155 Rev 157
Line 42... Line 42...
42
        % getFrame
42
        % getFrame
43
        function varargout = getFrame(this)
43
        function varargout = getFrame(this)
44
            frame = CameraMex('getFrame', this.objectHandle);
44
            frame = CameraMex('getFrame', this.objectHandle);
45
            [varargout{1:nargout}] = permute(frame,[3 2 1]);
45
            [varargout{1:nargout}] = permute(frame,[3 2 1]);
46
        end
46
        end
-
 
47
        
-
 
48
		% getCameraSettings
-
 
49
        function varargout = getCameraSettings(this)
-
 
50
            [varargout{1:nargout}] = CameraMex('getCameraSettings', this.objectHandle);
-
 
51
        end
47
			
52
        
48
        % setSettings
53
        % setCameraSettings
49
        function setCameraSettings(this, gain, shutter)
54
        function setCameraSettings(this, gain, shutter)
50
            CameraMex('setCameraSettings', this.objectHandle, gain, shutter);
55
            CameraMex('setCameraSettings', this.objectHandle, gain, shutter);
51
        end
56
        end
52
        
57
        
53
    end
58
    end