├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── beast ├── Makefile ├── __init__.py ├── __init__.pyc ├── beast.h ├── beast.i ├── config.h ├── constellations.h ├── go ├── kdhash.h └── stars.h ├── doc ├── gen_interleave.py ├── ost_comm_test.c └── viz_q.m ├── hip_main.dat ├── setup.sh ├── starsToStruc.py ├── startracker.py └── tests ├── Makefile ├── calibrate.py ├── hip_main.dat ├── science_cam_may8_0.05sec_gain40 ├── calibration.txt ├── calibration_data │ └── .gitignore ├── input.csv ├── median_image.png ├── result.csv ├── result_real.csv └── samples │ ├── img0.png │ ├── img1.png │ ├── img2.png │ ├── img3.png │ ├── img4.png │ ├── img5.png │ ├── img6.png │ ├── img7.png │ ├── img8.png │ └── img9.png ├── score.py ├── simulator.py ├── startracker.py ├── test.c ├── test.pdf └── unit_test.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/README.md -------------------------------------------------------------------------------- /beast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/beast/Makefile -------------------------------------------------------------------------------- /beast/__init__.py: -------------------------------------------------------------------------------- 1 | beast.py -------------------------------------------------------------------------------- /beast/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/beast/__init__.pyc -------------------------------------------------------------------------------- /beast/beast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/beast/beast.h -------------------------------------------------------------------------------- /beast/beast.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/beast/beast.i -------------------------------------------------------------------------------- /beast/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/beast/config.h -------------------------------------------------------------------------------- /beast/constellations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/beast/constellations.h -------------------------------------------------------------------------------- /beast/go: -------------------------------------------------------------------------------- 1 | make 2 | -------------------------------------------------------------------------------- /beast/kdhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/beast/kdhash.h -------------------------------------------------------------------------------- /beast/stars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/beast/stars.h -------------------------------------------------------------------------------- /doc/gen_interleave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/doc/gen_interleave.py -------------------------------------------------------------------------------- /doc/ost_comm_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/doc/ost_comm_test.c -------------------------------------------------------------------------------- /doc/viz_q.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/doc/viz_q.m -------------------------------------------------------------------------------- /hip_main.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/hip_main.dat -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/setup.sh -------------------------------------------------------------------------------- /starsToStruc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/starsToStruc.py -------------------------------------------------------------------------------- /startracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/startracker.py -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/calibrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/tests/calibrate.py -------------------------------------------------------------------------------- /tests/hip_main.dat: -------------------------------------------------------------------------------- 1 | ../hip_main.dat -------------------------------------------------------------------------------- /tests/science_cam_may8_0.05sec_gain40/calibration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/tests/science_cam_may8_0.05sec_gain40/calibration.txt -------------------------------------------------------------------------------- /tests/science_cam_may8_0.05sec_gain40/calibration_data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/tests/science_cam_may8_0.05sec_gain40/calibration_data/.gitignore -------------------------------------------------------------------------------- /tests/science_cam_may8_0.05sec_gain40/input.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/tests/science_cam_may8_0.05sec_gain40/input.csv -------------------------------------------------------------------------------- /tests/science_cam_may8_0.05sec_gain40/median_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/tests/science_cam_may8_0.05sec_gain40/median_image.png -------------------------------------------------------------------------------- /tests/science_cam_may8_0.05sec_gain40/result.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/tests/science_cam_may8_0.05sec_gain40/result.csv -------------------------------------------------------------------------------- /tests/science_cam_may8_0.05sec_gain40/result_real.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/tests/science_cam_may8_0.05sec_gain40/result_real.csv -------------------------------------------------------------------------------- /tests/science_cam_may8_0.05sec_gain40/samples/img0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/tests/science_cam_may8_0.05sec_gain40/samples/img0.png -------------------------------------------------------------------------------- /tests/science_cam_may8_0.05sec_gain40/samples/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/tests/science_cam_may8_0.05sec_gain40/samples/img1.png -------------------------------------------------------------------------------- /tests/science_cam_may8_0.05sec_gain40/samples/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/tests/science_cam_may8_0.05sec_gain40/samples/img2.png -------------------------------------------------------------------------------- /tests/science_cam_may8_0.05sec_gain40/samples/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/tests/science_cam_may8_0.05sec_gain40/samples/img3.png -------------------------------------------------------------------------------- /tests/science_cam_may8_0.05sec_gain40/samples/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/tests/science_cam_may8_0.05sec_gain40/samples/img4.png -------------------------------------------------------------------------------- /tests/science_cam_may8_0.05sec_gain40/samples/img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/tests/science_cam_may8_0.05sec_gain40/samples/img5.png -------------------------------------------------------------------------------- /tests/science_cam_may8_0.05sec_gain40/samples/img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/tests/science_cam_may8_0.05sec_gain40/samples/img6.png -------------------------------------------------------------------------------- /tests/science_cam_may8_0.05sec_gain40/samples/img7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/tests/science_cam_may8_0.05sec_gain40/samples/img7.png -------------------------------------------------------------------------------- /tests/science_cam_may8_0.05sec_gain40/samples/img8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/tests/science_cam_may8_0.05sec_gain40/samples/img8.png -------------------------------------------------------------------------------- /tests/science_cam_may8_0.05sec_gain40/samples/img9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/tests/science_cam_may8_0.05sec_gain40/samples/img9.png -------------------------------------------------------------------------------- /tests/score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/tests/score.py -------------------------------------------------------------------------------- /tests/simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/tests/simulator.py -------------------------------------------------------------------------------- /tests/startracker.py: -------------------------------------------------------------------------------- 1 | ../startracker.py -------------------------------------------------------------------------------- /tests/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/tests/test.c -------------------------------------------------------------------------------- /tests/test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/tests/test.pdf -------------------------------------------------------------------------------- /tests/unit_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBNanosatLab/openstartracker/HEAD/tests/unit_test.sh --------------------------------------------------------------------------------