Hello I use ImageToSURFKeyPointSetFilter to get keypoints and this is Input of KeyPointSetsMatchingFilter.
But I want to change threshold and update KeyPointSetsMatchingFilter again and it calculate SURF again. How to update KeyPointSetsMatchingFilter without update ImageToSURFKeyPointSetFilter. Thank you. filter1->SetInput(fixedReader->GetOutput()); filter1->SetOctavesNumber(octaves); filter1->SetScalesNumber(scales); filter2->SetInput(movingReader->GetOutput()); filter2->SetOctavesNumber(octaves); filter2->SetScalesNumber(scales); keyPointSet1 = filter1->GetOutput(); keyPointSet2 = filter2->GetOutput(); euclideanMatcher->SetInput1(keyPointSet1); euclideanMatcher->SetInput2(keyPointSet2); euclideanMatcher->SetDistanceThreshold(0.1); euclideanMatcher->SetUseBackMatching(useBackMatching); euclideanMatcher->SetNumberOfThreads(1); euclideanMatcher->Update(); euclideanMatcher->SetDistanceThreshold(0.2); euclideanMatcher->SetUseBackMatching(useBackMatching); euclideanMatcher->SetNumberOfThreads(1); euclideanMatcher->Update(); ป้อนรหัสที่นี่... -- -- Check the OTB FAQ at http://www.orfeo-toolbox.org/FAQ.html You received this message because you are subscribed to the Google Groups "otb-users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/otb-users?hl=en --- You received this message because you are subscribed to the Google Groups "otb-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
