This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Licensed to the Apache Software Foundation (ASF) under one | |
# or more contributor license agreements. See the NOTICE file | |
# distributed with this work for additional information | |
# regarding copyright ownership. The ASF licenses this file | |
# to you under the Apache License, Version 2.0 (the | |
# "License"); you may not use this file except in compliance | |
# with the License. You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
def compute_perspective_transform_matrix(src_points, dst_points): | |
assert src_points.shape == dst_points.shape == (4, 2), "Cần có 4 điểm trong mỗi mảng" | |
# Xây dựng ma trận A | |
A = [] | |
for i in range(4): | |
x, y = src_points[i][0], src_points[i][1] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--[[ | |
Evadeee v0.958 | |
by Weee | |
changelog: http://weee.ru/evadeee/dl/Evadeee_changelog.lua | |
]] | |
--Autoupdating (set to false if you want to disable it): | |
_G.Evadeee_AutoUpdate = false |