Update to v6.4.0

This commit is contained in:
jomjol
2021-03-20 09:47:50 +01:00
parent 3b3d924f40
commit d71e8320c7
13 changed files with 158 additions and 152 deletions

View File

@@ -354,7 +354,9 @@ function draw() {
var y0 = parseInt(rect.startY) - parseInt(lw/2);
var dx = parseInt(rect.w) + parseInt(lw);
var dy = parseInt(rect.h) + parseInt(lw);
context.strokeRect(x0, y0, dx, dy);
context.strokeRect(x0, y0, dx, dy);
context.lineWidth = 1;
context.strokeRect(x0+dx*0.2, y0+dy*0.2, dx*0.6, dy*0.6);
ROIInfo[aktindex]["x"] = rect.startX;
ROIInfo[aktindex]["y"] = rect.startY;
ROIInfo[aktindex]["dx"] = rect.w;