Do RRC by moment matching method

This commit is contained in:
nuknal
2024-06-17 17:28:15 +08:00
parent ce01f3b2ce
commit d1733d0828
5 changed files with 87 additions and 12 deletions

View File

@@ -40,3 +40,12 @@ func (r *Registrator) DoRRC(lutDir string) error {
return nil
}
func (r *Registrator) DoMomentMatching() error {
rrc.DoMomentMatching(r.PanImage)
for i := 0; i < 4; i++ {
rrc.DoMomentMatching(r.MssImages[i])
}
return nil
}