コード例 #1
0
def test_find_best_match_location():
    result = match_template_to_layer(test_layer, test_template)
    match_location = u.Quantity(find_best_match_location(result))
    assert_allclose(match_location.value,
                    np.array(result.shape) / 2. - 0.5 + shift,
                    rtol=1e-3,
                    atol=0)
コード例 #2
0
ファイル: test_coalignment.py プロジェクト: Hypnus1803/sunpy
def test_find_best_match_location(aia171_test_map_layer, aia171_test_template,
                                  aia171_test_shift):

    result = match_template_to_layer(aia171_test_map_layer, aia171_test_template)
    match_location = u.Quantity(find_best_match_location(result))
    assert_allclose(match_location.value, np.array(result.shape)/2. - 0.5 + aia171_test_shift, rtol=1e-3, atol=0)
コード例 #3
0
def test_find_best_match_location():
    result = match_template_to_layer(test_layer, test_template)
    y_test, x_test = find_best_match_location(result)
    assert_allclose(y_test, 257.0, rtol=1e-3, atol=0)
    assert_allclose(x_test, 258.0, rtol=1e-3, atol=0)
コード例 #4
0
def test_find_best_match_location():
    result = match_template_to_layer(test_layer, test_template)
    y_test, x_test = find_best_match_location(result)
    assert_allclose(y_test, 257.0, rtol=1e-3, atol=0)
    assert_allclose(x_test, 258.0, rtol=1e-3, atol=0)