Spaces:
Build error
Build error
File size: 11,972 Bytes
8040aeb 2751f79 8040aeb 4aea6da 8040aeb a0ea772 8040aeb a0ea772 8040aeb a0ea772 8040aeb 2751f79 8040aeb a0ea772 8040aeb a0ea772 8040aeb 0d302ec 8040aeb |
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 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 |
'use client';
import { useState, useRef, useEffect } from 'react';
import axios from 'axios';
import useImage from 'use-image';
import Konva from 'konva';
import { Stage, Image, Layer } from 'react-konva';
import { BASE_URL } from './constants';
import Dropdown from './dropdown';
interface RGB {
r: number;
g: number;
b: number;
}
interface Box {
x: number;
y: number;
width: number;
height: number;
}
const maskFilter = (imageData: ImageData, color: RGB) => {
const nPixels = imageData.data.length;
for (let i = 0; i < nPixels; i += 4) {
const r = imageData.data[i];
const g = imageData.data[i + 1];
const b = imageData.data[i + 2];
if (r <= 1 && g <= 1 && b <= 1) {
imageData.data[i + 3] = 0;
} else {
imageData.data[i] = color.r;
imageData.data[i + 1] = color.g;
imageData.data[i + 2] = color.b;
imageData.data[i + 3] = 128;
}
}
};
export default function Canvas({ imageUrl, imageName }: { imageUrl: string, imageName: string }) {
const [image] = useImage(imageUrl, 'anonymous');
const stageRef = useRef<Konva.Stage>(null);
const layerRef = useRef<Konva.Layer>(null);
const groupRef = useRef<Konva.Group[]>([]);
const pointsRef = useRef<Array<[number, number]>>([]);
const labelsRef = useRef<Array<number>>([]);
const instanceColorsRef = useRef<string[]>([]);
const [classList, setClassList] = useState<string[]>([]);
const classOptionsRef = useRef<string[]>([]);
const classSelectionRef = useRef<string>('');
const [useLatest, setUseLatest] = useState<boolean>(false);
const selectedInstanceRef = useRef<number>(-1);
const [selectedInstanceStyle, setSelectedInstanceStyle] = useState<boolean>(false);
const clearLayers = () => {
groupRef.current.forEach((group) => {
group.destroy();
});
groupRef.current = [];
layerRef.current?.draw();
pointsRef.current = [];
labelsRef.current = [];
instanceColorsRef.current = [Konva.Util.getRandomColor()];
setClassList(_ => ([]));
}
useEffect(() => {
clearLayers();
}, [imageUrl]);
const showMask = (data: string, group: Konva.Group) => {
const layer = layerRef.current;
if (!layer) return;
const color = Konva.Util.getRGB(
instanceColorsRef.current[instanceColorsRef.current.length - 1]
);
const width = image?.width;
const height = image?.height;
const maskObj = new window.Image();
maskObj.onload = () => {
const image = new Konva.Image({
x: 0,
y: 0,
image: maskObj,
width: width,
height: height,
});
image.filters([(imageData: ImageData) => maskFilter(imageData, color)]);
image.cache();
group.add(image);
if (groupRef.current.length === 0)
groupRef.current.push(group);
layer.add(group);
layer.draw()
};
maskObj.src = `data:image/png;base64,${data}`;
setUseLatest(true);
}
const showBox = (box: Box, group: Konva.Group) => {
const layer = layerRef.current;
if (!layer) return;
const color = Konva.Util.getRGB(
instanceColorsRef.current[instanceColorsRef.current.length - 1]
);
const width = image?.width;
const height = image?.height;
function rgbToHex(r, g, b) {
return '#' + (1 << 24 | r << 16 | g << 8 | b).toString(16).slice(1);
}
const rect = new Konva.Rect({
x: box.x,
y: box.y,
width: box.width,
height: box.height,
stroke: rgbToHex(color.r, color.g, color.b),
storkeWidth: 2,
});
if (groupRef.current.length === 0)
groupRef.current.push(group);
group.add(rect);
layer.add(group);
layer.draw();
setUseLatest(true);
}
const handleStageClick = async (e: Konva.KonvaEventObject<MouseEvent>) => {
const stage = stageRef.current;
const layer = layerRef.current;
if (!stage || !layer) return;
const pos = e.target.getStage()?.getPointerPosition();
if (!pos) return;
const height = image?.height ? image.height : 1024;
const width = image?.width ? image.width : 1024;
console.log(groupRef.current.length);
for (let i = 0; i < groupRef.current.length && i < classList.length; i++) {
if (groupRef.current[i].children?.length === 0) continue;
const elt = groupRef.current[i].children![0];
const canvas = elt.toCanvas() as HTMLCanvasElement;
const imageData = canvas.getContext('2d')?.getImageData(0, 0, width, height);
if (!imageData) continue;
const r = imageData.data[(pos.x + pos.y * width) * 4];
const g = imageData.data[(pos.x + pos.y * width) * 4 + 1];
const b = imageData.data[(pos.x + pos.y * width) * 4 + 2];
if (r > 0 || g > 0 || b > 0) {
if (selectedInstanceRef.current !== i) {
selectedInstanceRef.current = i;
setSelectedInstanceStyle(true);
} else {
selectedInstanceRef.current = -1;
setSelectedInstanceStyle(false);
}
return;
}
}
let labels = labelsRef.current;
if (e.evt.button === 2) {
labels = [...labels, 0];
} else {
labels = [...labels, 1];
}
labelsRef.current = labels;
// re-draw last layer so we don't overlap masks on clicks
if (groupRef.current.length > 0) {
groupRef.current[groupRef.current.length - 1].destroy();
} else {
groupRef.current.push(new Konva.Group());
}
layer.draw();
let points = pointsRef.current;
points = [...points, [pos.x, pos.y]];
pointsRef.current = points;
const res = await axios.post(
`v1/get_label_preds/${imageName}`,
{
points: points,
labels: labels,
}
);
showMask(res.data.masks[0], groupRef.current[groupRef.current.length - 1]);
}
const pinInstance = async () => {
const layer = layerRef.current;
if (!layer) return;
const groupList = groupRef.current;
// if (groupList.length === 0) return;
if (classSelectionRef.current === '') {
alert('Please select a class');
} else {
groupList.push(new Konva.Group());
pointsRef.current = [];
labelsRef.current = [];
instanceColorsRef.current.push(Konva.Util.getRandomColor());
setClassList(prev => ([...prev, classSelectionRef.current]))
setUseLatest(false);
}
}
const deleteSelectedInstance = () => {
const layer = layerRef.current;
if (!layer) return;
if (selectedInstanceRef.current === -1) return;
// always 1 extra group for the next instance
if (groupRef.current.length <= 1) return;
groupRef.current[selectedInstanceRef.current].destroy();
groupRef.current.splice(selectedInstanceRef.current, 1);
setClassList([
...classList.slice(0, selectedInstanceRef.current),
...classList.slice(selectedInstanceRef.current + 1)
]);
instanceColorsRef.current.splice(selectedInstanceRef.current, 1);
layer.draw()
// reset selectedInstanceRef?
selectedInstanceRef.current = -1;
}
const submitLabels = async () => {
const groupList = groupRef.current;
if (groupList.length === 0) return;
const masks = [];
const length = useLatest ? groupList.length : groupList.length - 1;
for (let i = 0; i < length; i++) {
const labelData = groupList[i].toDataURL({ x: 0, y: 0, width: image?.width, height: image?.height });
masks.push(labelData);
}
const res = await axios.put(`v1/label_image/${imageName}`,
{
masks: masks,
labels: classList,
}
);
pointsRef.current = [];
labelsRef.current = [];
clearLayers();
}
const getLabels = async () => {
clearLayers();
try {
const res = await axios.get(`v1/get_labels/${imageName}`);
classOptionsRef.current = [...new Set(res.data.labels)];
// add an initial group to start with
groupRef.current.push(new Konva.Group());
for (let i = 0; i < res.data.masks.length; i++) {
showMask(res.data.masks[i], groupRef.current[groupRef.current.length - 1]);
classSelectionRef.current = res.data.labels[i];
pinInstance();
}
} catch (err) {
console.log(err);
}
}
const predLabels = async () => {
const length = useLatest ? groupRef.current.length : groupRef.current.length - 1;
if (groupRef.current.length === 0 || classList.length === 0) {
alert('Please pin an instance first');
return
}
const mask = groupRef.current[length - 1].toDataURL({ x: 0, y: 0, width: image?.width, height: image?.height });
clearLayers();
try {
const res = await axios.post(`v1/get_multi_label_preds/${imageName}`, {
mask: mask,
label: classList[length - 1],
});
groupRef.current.push(new Konva.Group());
for (let i = 0; i < res.data.masks.length; i++) {
showMask(res.data.masks[i], groupRef.current[groupRef.current.length - 1]);
classSelectionRef.current = res.data.labels[i];
pinInstance();
}
} catch (err) {
console.log(err);
}
}
const getBboxes = async () => {
clearLayers();
try {
const res = await axios.get(`v1/get_labels/${imageName}`);
classOptionsRef.current = [...new Set(res.data.labels)];
groupRef.current.push(new Konva.Group());
for (let i = 0; i < res.data.bboxes.length; i++) {
showBox(res.data.bboxes[i], groupRef.current[groupRef.current.length - 1]);
classSelectionRef.current = res.data.labels[i];
pinInstance();
}
} catch (err) {
console.log(err);
}
}
return (
<div className="flex flex-row columns-2 gap-20">
<div className="">
<h1>Instance Class List</h1>
<ul>
{classList.map((item, index) => (
<li key={index}>
<div
// style={{ background: instanceColorsRef.current[index], border: '2px solid red'}}
style={{
background: instanceColorsRef.current[index],
border: selectedInstanceRef.current === index && selectedInstanceStyle ? '2px solid red' : 'none'
}}
onClick={() => {
selectedInstanceRef.current = index;
setSelectedInstanceStyle(prev => !prev)
}}
>{index} {item}</div>
</li>
))}
</ul>
<br />
<Dropdown
options={classOptionsRef}
selectedOption={classSelectionRef}
/>
</div>
<div className="">
<Stage
width={image?.width}
height={image?.height}
ref={stageRef}
onClick={handleStageClick}
onContextMenu={(e) => e.evt.preventDefault()}
>
<Layer ref={layerRef}>
<Image image={image} alt="image" />
</Layer>
</Stage>
<br />
<button className="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-2"
onClick={clearLayers}>Clear All</button>
<button className="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-2"
onClick={getBboxes}>Load BBoxes</button>
<button className="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-2"
onClick={getLabels}>Load Masks</button>
<button className="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-2"
onClick={deleteSelectedInstance}>Delete Selected Instance</button>
<button className="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-2"
onClick={pinInstance}>Pin Instance</button>
<button className="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-2"
onClick={submitLabels}>Save All</button>
<button className="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-2"
onClick={predLabels}>Auto Label</button>
</div>
</div>
);
};
|