├── CalME ├── Makefile ├── ReadMe.md ├── config.txt ├── run.sh └── src │ ├── CommonHead.h │ ├── Logger.cpp │ ├── Logger.h │ ├── Main.cpp │ ├── matchFunc.cpp │ └── matchFunc.h ├── LICENSE ├── README.md ├── RPCprocess ├── GeoToImg.m ├── ImgToGeo.m ├── ImgToGeoDEM.m ├── ReadMe.md ├── heightBilinear.m ├── readRPC.m └── saveRPC.m └── TestCode ├── ASS_TEST_RE.m ├── CFOG_TEST_RE.m ├── README.md ├── RIFT_TEST_AE.m └── RIFT_TEST_RE.m /CalME/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xym2009/OS-Eval/HEAD/CalME/Makefile -------------------------------------------------------------------------------- /CalME/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xym2009/OS-Eval/HEAD/CalME/ReadMe.md -------------------------------------------------------------------------------- /CalME/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xym2009/OS-Eval/HEAD/CalME/config.txt -------------------------------------------------------------------------------- /CalME/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xym2009/OS-Eval/HEAD/CalME/run.sh -------------------------------------------------------------------------------- /CalME/src/CommonHead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xym2009/OS-Eval/HEAD/CalME/src/CommonHead.h -------------------------------------------------------------------------------- /CalME/src/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xym2009/OS-Eval/HEAD/CalME/src/Logger.cpp -------------------------------------------------------------------------------- /CalME/src/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xym2009/OS-Eval/HEAD/CalME/src/Logger.h -------------------------------------------------------------------------------- /CalME/src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xym2009/OS-Eval/HEAD/CalME/src/Main.cpp -------------------------------------------------------------------------------- /CalME/src/matchFunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xym2009/OS-Eval/HEAD/CalME/src/matchFunc.cpp -------------------------------------------------------------------------------- /CalME/src/matchFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xym2009/OS-Eval/HEAD/CalME/src/matchFunc.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xym2009/OS-Eval/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xym2009/OS-Eval/HEAD/README.md -------------------------------------------------------------------------------- /RPCprocess/GeoToImg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xym2009/OS-Eval/HEAD/RPCprocess/GeoToImg.m -------------------------------------------------------------------------------- /RPCprocess/ImgToGeo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xym2009/OS-Eval/HEAD/RPCprocess/ImgToGeo.m -------------------------------------------------------------------------------- /RPCprocess/ImgToGeoDEM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xym2009/OS-Eval/HEAD/RPCprocess/ImgToGeoDEM.m -------------------------------------------------------------------------------- /RPCprocess/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xym2009/OS-Eval/HEAD/RPCprocess/ReadMe.md -------------------------------------------------------------------------------- /RPCprocess/heightBilinear.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xym2009/OS-Eval/HEAD/RPCprocess/heightBilinear.m -------------------------------------------------------------------------------- /RPCprocess/readRPC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xym2009/OS-Eval/HEAD/RPCprocess/readRPC.m -------------------------------------------------------------------------------- /RPCprocess/saveRPC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xym2009/OS-Eval/HEAD/RPCprocess/saveRPC.m -------------------------------------------------------------------------------- /TestCode/ASS_TEST_RE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xym2009/OS-Eval/HEAD/TestCode/ASS_TEST_RE.m -------------------------------------------------------------------------------- /TestCode/CFOG_TEST_RE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xym2009/OS-Eval/HEAD/TestCode/CFOG_TEST_RE.m -------------------------------------------------------------------------------- /TestCode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xym2009/OS-Eval/HEAD/TestCode/README.md -------------------------------------------------------------------------------- /TestCode/RIFT_TEST_AE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xym2009/OS-Eval/HEAD/TestCode/RIFT_TEST_AE.m -------------------------------------------------------------------------------- /TestCode/RIFT_TEST_RE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xym2009/OS-Eval/HEAD/TestCode/RIFT_TEST_RE.m --------------------------------------------------------------------------------