资源简介

自主式CCD星敏感器(或称为星跟踪器)自身带有微处理器,是一种智能化的姿态敏感器。由于其指向精度高、无姿态累计误差以及具有快速故障恢复能力, 已成为航空、航天以及军事领域备受关注的研究对象。利用星敏感器确定卫星姿态就是对出现在星敏感器视场中的恒星进行识别,通过星光矢量确定星图拍摄瞬间星敏感器视轴在惯性坐标系中的指向,进而确定航天器姿态。本文以卫星姿态自主确定技术为研究背景,对基于CCD星敏感器的星图识别技术进行了研究。 论文对基于星敏感器确定卫星姿态的技术流程进行了叙述,但重点是对星图识别算法的设计与实现进行了研究。基于星敏感器确定卫星姿态主要存在以下问题:如何构建分布合理并且能够满足导航需要的导航星表、如何设计适应性强、精度高的星图识别算法以及采用何种滤波算法解算卫星姿态等。本文就其中部分内容进行了研究,并进行了实验验证

资源截图

代码片段和文件信息

function varargout = guidemo(varargin)
% GUIDEMO MATLAB code for guidemo.fig
%      GUIDEMO by itself creates a new GUIDEMO or raises the existing
%      singleton*.
%
%      H = GUIDEMO returns the handle to a new GUIDEMO or the handle to
%      the existing singleton*.
%
%      GUIDEMO(‘CALLBACK‘hobjecteventDatahandles...) calls the local
%      function named CALLBACK in GUIDEMO.M with the given input arguments.
%
%      GUIDEMO(‘Property‘‘Value‘...) creates a new GUIDEMO or raises the
%      existing singleton*.  Starting from the left property value pairs are
%      applied to the GUI before guidemo_OpeningFcn gets called.  An
%      unrecognized property name or invalid value makes property application
%      stop.  All inputs are passed to guidemo_OpeningFcn via varargin.
%
%      *See GUI Options on GUIDE‘s Tools menu.  Choose “GUI allows only one
%      instance to run (singleton)“.
%
% See also: GUIDE GUIDATA GUIHANDLES

% Edit the above text to modify the response to help guidemo

% Last Modified by GUIDE v2.5 16-Mar-2017 19:39:54

% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘       mfilename ...
                   ‘gui_Singleton‘  gui_Singleton ...
                   ‘gui_OpeningFcn‘ @guidemo_OpeningFcn ...
                   ‘gui_OutputFcn‘  @guidemo_OutputFcn ...
                   ‘gui_LayoutFcn‘  []  ...
                   ‘gui_Callback‘   []);
if nargin && ischar(varargin{1})
    gui_State.gui_Callback = str2func(varargin{1});
end

if nargout
    [varargout{1:nargout}] = gui_mainfcn(gui_State varargin{:});
else
    gui_mainfcn(gui_State varargin{:});
end
% End initialization code - DO NOT EDIT


% --- Executes just before guidemo is made visible.
function guidemo_OpeningFcn(hobject eventdata handles varargin)
% This function has no output args see OutputFcn.
% hobject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
% varargin   command line arguments to guidemo (see VARARGIN)

% Choose default command line output for guidemo
handles.output = hobject;

% Update handles structure
guidata(hobject handles);

% UIWAIT makes guidemo wait for user response (see UIRESUME)
% uiwait(handles.figure1);


% --- Outputs from this function are returned to the command line.
function varargout = guidemo_OutputFcn(hobject eventdata handles) 
% varargout  cell array for returning output args (see VARARGOUT);
% hobject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Get default command line output from handles structure
varargout{1} = handles.output;



function times_Callback(hobject eventdata handles)
% hobject    handle to times (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GU

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-10-10 15:39  源码\
     文件       62508  2017-03-16 19:44  源码\guidemo.fig
     文件       32457  2017-03-16 19:47  源码\guidemo.m
     文件        2581  2017-03-15 14:31  源码\ustars.m
     目录           0  2018-10-10 15:39  演示\
     文件    11878764  2017-03-16 18:31  演示\kk 2017-03-16 18-19-10.avi
     文件          64  2018-10-10 16:34  说明.txt
     目录           0  2018-10-10 15:38  需求\
     文件     3673398  2016-10-09 15:58  需求\CCD星敏感器星图识别算法研究_周斌.caj
     文件     1784160  2016-10-09 15:26  需求\基于CCD星敏感器的星图识别_聂侥.caj
     文件     2445628  2016-10-25 10:16  需求\敏感器的星图识别算法的设计与实现.pdf
     文件         318  2017-03-20 13:22  需求\说明.txt

评论

共有 条评论