Label text fix
This commit is contained in:
parent
37eefdc638
commit
aa4fb49423
@ -373,7 +373,7 @@
|
|||||||
canvas.height = img.height;
|
canvas.height = img.height;
|
||||||
ctx.drawImage(img, 0, 0);
|
ctx.drawImage(img, 0, 0);
|
||||||
ctx.lineWidth = 15;
|
ctx.lineWidth = 15;
|
||||||
ctx.font = "30px serif"; // Zwiększono rozmiar czcionki
|
ctx.font = "bold 50px Arial"; // Zwiększono rozmiar czcionki
|
||||||
|
|
||||||
// Draw bounding boxes
|
// Draw bounding boxes
|
||||||
boxes.forEach(([x1, y1, x2, y2, object_type, prob]) => {
|
boxes.forEach(([x1, y1, x2, y2, object_type, prob]) => {
|
||||||
@ -437,7 +437,7 @@
|
|||||||
const width = ctx.measureText(label).width;
|
const width = ctx.measureText(label).width;
|
||||||
ctx.fillRect(x1, y1, width + 10, 25);
|
ctx.fillRect(x1, y1, width + 10, 25);
|
||||||
ctx.fillStyle = "#000000";
|
ctx.fillStyle = "#000000";
|
||||||
ctx.fillText(label, x1 + width + 15, y1 + 28); // Przesunięcie etykiety
|
ctx.fillText(label, x1, y1 + 10 ); // Przesunięcie etykiety
|
||||||
});
|
});
|
||||||
|
|
||||||
// Draw legend
|
// Draw legend
|
||||||
|
Loading…
Reference in New Issue
Block a user