-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcanvas.js
204 lines (189 loc) · 6 KB
/
canvas.js
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
labels=[];
scale=1.0;
image="";
user="";
imgid=0;
//x y of the start of viewed area
setup = function (image_id, usr){
$('[data-toggle="popover"]').popover();
user=usr;
data=$.getJSON("api.php?image="+image_id+'&user='+usr).done(loadimage)
$("#zoomout").click(function(c){
scale=1;
$("#canvas").css({'transform':'scale(1,1) translate(0px,0px)'});
//console.log("zoomed out");
});
$("#logout").click(function(c){
location.href="index.php";
});
$("#save").click(function(c){
if(labels.length==0){
if(confirm("No labels for this image?"))
labels=[{"x1":0,"x2":0,"y1":0,"y2":0,"type":"empty", "username": user, "time": new Date().getTime()}];
else
return;
}
ldata={
labels:labels,
'image_id':imgid,
};
$("#loading").show();
$.ajax({
type: "POST",
url: "api.php?save=true&user="+user,
async: false,
data: {data:JSON.stringify(ldata)},
success: loadimage
});
});
$("#bad").click(function(c){
if(!confirm("Are you sure you wish to mark this image as useless?")){
return;
}
labels=[{"x1":0,"x2":0,"y1":0,"y2":0,"type":"bad", "username": user, "time": new Date().getTime()}];
ldata={
labels:labels,
'image_id':imgid,
};
$("#loading").show();
$.ajax({
type: "POST",
url: "api.php?save=true&user="+user,
async: false,
data: {data:JSON.stringify(ldata)},
success: loadimage
});
});
}
loadimage = function (data){
if(typeof data == "string")
data=JSON.parse(data);
labels=data.labels;
image=data.image;
image_url=image.url;
imgid=image.image_id;
if(image_url == null || image_url=="null"){
$("#loading").hide();
$("#alldone").show();
return;
}
$("#image_id").html(image.image_id);
$("#image_type").html(image.type);
var c = document.getElementById("canvas");
var ctx = c.getContext("2d");
image = new Image();
image.onload = function(e) {
ctx.canvas.width = image.width;
ctx.canvas.height = image.height;
c.width = image.width;
c.height = image.height;
ctx.drawImage(image, 0, 0);
ctx.strokeStyle = 'black';
ctx.lineWidth = 10;
scale=1;
console.log(waitingDialog);
$("#canvas").css({'transform':'scale(1,1) translate(0px,0px)'});
redrawAll();
$("#loading").hide();
};
function getSelectedLabel(){
return $("input[name='lbl']:checked").val();
};
image.style.display="block";
image.src = image_url;
var clicked = false;
var fPoint = {};
var lstartx;
var lstarty;
c.onmousedown=function(e,i){
lstartx=(image.width / c.scrollWidth) * e.offsetX;
lstarty=(image.height / c.scrollHeight) * e.offsetY;
labtype=getSelectedLabel();
if(labtype=="zoom")
return zoomTo(lstartx,lstarty,2);
ilen=labels.length;
labels=labels.filter(function(l){
return !(lstartx>l.x1&&lstartx<l.x2&&lstarty>l.y1&&lstarty<l.y2)
});
if(labels.length==ilen)
clicked=true;
else
redrawAll();
};
c.onmouseup=function(e){
if(!clicked)
return;
x=(image.width / c.scrollWidth) * e.offsetX;
y=(image.height / c.scrollHeight) * e.offsetY;
clicked=false;
if(Math.abs(x-lstartx)<10||Math.abs(y-lstarty)<10){
redrawAll();
return;
}
labels.push({"x1":Math.min(lstartx,x),"x2":Math.max(x,lstartx),"y1":Math.min(lstarty,y),"y2":Math.max(y,lstarty),"type":labtype, "username": user, "time": new Date().getTime()});
};
function clearBox(x1,y1,x2,y2){
var width = x2-x1;
var height = y2-y1;
//ctx.clearRect(x1,y1,width,height);
}
function zoomTo(x,y,s){
//we need to shift x,y to make the point to centre the image on this point
//currently we see width/scale of the image, we subtract half of this to get the centre
if(scale*s<1){
//reset to default zoom
scale=1;
$("#canvas").css({'transform':'scale(1,1) translate(0px,0px)'});
return;
}
scale*=s;
x-=image.width/scale/2.0;
y-=image.height/scale/2.0;
cw=$("#canvas").width();
ch=$("#canvas").height()
xv=Math.max(0,x*cw/image.width);
yv=Math.max(0,y*ch/image.height);//image.height-c.height);
console.log(cw+":"+image.width);
$("#canvas").css({'transform-origin':'0px 0px','transform':'translate(-'+scale*xv+'px,-'+scale*yv+'px) scale('+scale+','+scale+')'});
}
lastscroll=0
$("#canvas").bind('wheel mousewheel',function(e){
if ( (new Date() - lastscroll) < 60)
return;
if (e.originalEvent.wheelDelta !== undefined)
delta = e.originalEvent.wheelDelta;
else
delta = e.originalEvent.deltaY * -1;
if(delta > 0 ){
zoomTo(mx,my,1.3);
}else if(delta<0){
zoomTo(mx,my,1/1.3);
}
lastscroll=new Date();
});
function drawBox(x1,y1,x2,y2,colour){
ctx.beginPath();
var width = x2-x1;
var height = y2-y1;
ctx.strokeRect(x1,y1,width,height);
ctx.strokeStyle = colour;
ctx.lineWidth = 10;
ctx.stroke();
}
function redrawAll(){
ctx.drawImage(image,0,0);
labels.forEach(function(label){
drawBox(label.x1,label.y1,label.x2,label.y2,labels.colour?labels.colour:'black');
});
}
mx=0;
my=0;
c.onmousemove=function(e){
mx=(image.width / c.scrollWidth) * e.offsetX;
my=(image.height / c.scrollHeight) * e.offsetY;
if(!clicked)
return;
redrawAll();
drawBox(lstartx,lstarty,mx,my);
};
}