ai-cfia / nachet-frontend

Frontend application for seed classification of images acquired from digital microscopes
MIT License
2 stars 2 forks source link

143 Positive feedback frontend #146

Closed ChromaticPanic closed 1 week ago

ChromaticPanic commented 2 weeks ago

Create api backend call to submit positive feedback

Currently defined as a single box with a class and tied to some unique image id to link it to the parent image

export interface FeedbackData {
  imageId: number;
  class: string;
  topX: number;
  topY: number;
  bottomX: number;
  bottomY: number;
}