-
Notifications
You must be signed in to change notification settings - Fork 12
/
affine.lua
71 lines (62 loc) · 1.76 KB
/
affine.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
--+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Created by: Hang Zhang
-- ECE Department, Rutgers University
-- Email: zhang.hang@rutgers.edu
-- Copyright (c) 2016
--
-- Feel free to reuse and distribute this software for research or
-- non-profit purpose, subject to the following conditions:
-- 1. The code must retain the above copyright notice, this list of
-- conditions.
-- 2. Original authors' names are not deleted.
-- 3. The authors' names are not used to endorse or promote products
-- derived from this software
--+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
local Affine = {}
Affine.Scale = function(sx, sy)
local t = {}
t[1] = { sx, 0, 0}
t[2] = { 0 , sy, 0}
t[3] = { 0 , 0, 1}
return torch.CudaTensor(t)
end
Affine.Shift = function (tx, ty)
local t = {}
t[1] = { 1, 0, 0}
t[2] = { 0, 1, 0}
t[3] = { tx, ty, 1}
return torch.CudaTensor(t)
end
Affine.Rotate = function(theta)
local t = {}
t[1] = { math.cos(theta), math.sin(theta), 0}
t[2] = {-math.sin(theta), math.cos(theta), 0}
t[3] = {0, 0, 1}
return torch.CudaTensor(t)
end
Affine.Shear = function (shx, shy)
local t = setmetatable({},mt)
t[1] = { 1, shx, 0}
t[2] = { shy, 1, 0}
t[3] = { 0, 0, 1}
return torch.CudaTensor(t)
end
Affine.ScaleArround = function(sx, sy, x, y)
local t = Affine.Shift(-x, -y) *
Affine.Scale(sx, sy) *
Affine.Shift(x, y)
return t
end
Affine.RotateArround = function(theta, x, y)
local t = Affine.Shift(-x, -y) *
Affine.Rotate(theta) *
Affine.Shift(x, y)
return t
end
Affine.ShearArround = function(shx, shy, x, y)
local t = Affine.Shift(-x, -y) *
Affine.Shear(shx, shy) *
Affine.Shift(x, y)
return t
end
return Affine