Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Piotr | MS-XXX | Import labels yolo format #114

Merged
merged 21 commits into from
Sep 12, 2020

Conversation

SkalskiP
Copy link
Owner

Pre-flight checklist

  • Unit tests for all non-trivial changes
  • Tested locally
  • Updated wiki

@SkalskiP SkalskiP added the improvement Improves or optimizes the code label Sep 11, 2020
@@ -1,16 +1,25 @@
import {LabelType} from "./enums/LabelType";
import {ILabelFormatData} from "../interfaces/ILabelFormatData";
import {LabelFormatType} from "./enums/LabelFormatType";
import {AnnotationFormatType} from "./enums/AnnotationFormatType";

export type ImportFormatDataMap = { [s in LabelType]: ILabelFormatData[]; };
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Record<"RECT"|"POINT"|..., ILabelFormatData[]>;

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

;)

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

export type ImportFormatDataMap = Record<LabelType, ILabelFormatData[]> nawet tak pyknie


const directionVector: IPoint = DirectionUtil.convertDirectionToVector(direction);
const translationVector: IPoint = PointUtil.multiply(directionVector, ViewPointSettings.TRANSLATION_STEP_PX);
const currentScrollPosition = ViewPortActions.getAbsoluteScrollPosition();
const nextScrollPosition = PointUtil.add(currentScrollPosition, translationVector);
ViewPortActions.setScrollPosition(nextScrollPosition);
EditorModel.mousePositionOnViewPortContent = PointUtil.add(EditorModel.mousePositionOnViewPortContent, translationVector);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

to jest statyczne pole w tej klasie EditorModel?
ja bym unikał takich przypisywań - raczej wziąłbym to w jakąś metodę EditorModel.set... albo nawet .update... i wystarczy że podasz jako argument translationVector

public labelType: LabelType[]

constructor(labelType?: LabelType[]) {
this.labelType = labelType;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

tutaj przypisujesz tego labelData a widzę że jako argument konstruktora jest on opcjonalny.
więc uważaj żebyś tutaj nie dostawał undefined ;)

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wywaliłem tego optionala

export class COCOFormatValidationError extends COCOAnnotationsLoadingError {
constructor(message) {
super(message);
this.name = "COCOFormatValidationError";
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ten name może możesz wyciągnąć tym: this.constructor.name - ale musisz sprawdzić czy pyknie jak zrobisz builda produkcyjnego - bo *uj wie czy to nie jest uglyfajowane

ImageRepository.storeImages(missingImages.map((i: ImageData) => i.id), images);
});
const annotationFilesPromise: Promise<string[]> = FileUtil.readFiles(annotationFiles);
Promise
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

jak Ci się chce to spróbuj skrócić tego promisa bo ciężko się go czyta :P

const annotationsRaw: string[] = values[2];
const cleanImageData: ImageData[] = imagesData
.map((i: ImageData) => ImageDataUtil.cleanAnnotations(i));
const imageDataPartition: PartitionResult<ImageData> = YOLOImporter
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

np tutaj niepotrzevnie dajesz typ (no chyba że ta metoda partitionImageData nie jest otypowana :P

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wiem ale czasem lubię sam dla siebie dać, żeby mi się wygodniej czytało. Lubię widzieć typ kiedy czytam i piszę taką logikę.

@@ -13,4 +13,15 @@ export class ArrayUtil {
return acc
}, {pass: [], fail: []})
}

public static unique<T>(array: T[]): T[] {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nie ma tego w lodashu?

@@ -1,28 +1,51 @@
export class FileUtil {
public static loadImage(fileData: File, onSuccess: (image:HTMLImageElement) => any, onFailure: () => any): any {
public static loadImage(fileData: File): Promise<HTMLImageElement> {
return new Promise((resolve, reject) => {
const url = URL.createObjectURL(fileData);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

chyba coś formatowanie tu nie pykło

Copy link
Owner Author

@SkalskiP SkalskiP Sep 11, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

a czemu?

@SkalskiP SkalskiP merged commit dbf0880 into develop Sep 12, 2020
@SkalskiP SkalskiP deleted the MS-XXX_Import_labels_YOLO_format branch September 12, 2020 21:27
SkalskiP added a commit that referenced this pull request Oct 6, 2020
* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

* README.md update (#78) (#79)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

* add cross hair (#90)

* Piotr | Line labels creation and export (#89)

* initial changes: adding line labels to redux + addling line tab to right side navigation bar

* adding new lines and base rendering

* up

* line style + snapping to rect added

* highlight logic added

* line rendering engine is working

* line rendering engine update + marking line labeled images added

* serializing to CSV

* up

* after PR

* after PR

* quick fix

* Piotr | Image recognition (#92)

* image recognition initial commit

* setup before image recognition tagging

* base tag assignment added

* default screen when empty label list

* image recognition added

* after CR

* 1.6.0-alpha relese merge (#94)

* README.md update (#78)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

* 1.6.0-alpha relese merge (#93)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

* README.md update (#78) (#79)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

* add cross hair (#90)

* Piotr | Line labels creation and export (#89)

* initial changes: adding line labels to redux + addling line tab to right side navigation bar

* adding new lines and base rendering

* up

* line style + snapping to rect added

* highlight logic added

* line rendering engine is working

* line rendering engine update + marking line labeled images added

* serializing to CSV

* up

* after PR

* after PR

* quick fix

* Piotr | Image recognition (#92)

* image recognition initial commit

* setup before image recognition tagging

* base tag assignment added

* default screen when empty label list

* image recognition added

* after CR

Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>
Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>
Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>

* Update README.md

* Update README.md

* Update README.md

* Add files via upload

* Update README.md

* Update README.md

* Update README.md

* MS-86 Coco format suppport (#107)

* up

* save refactor

* coco exporter in progress

* coco exporter in progress

* Disable browser back buttons during labelling (#106)

* done

* up

* Piotr | MS-96 | Can image suppored by multi labels (#109)

* initial refactor

* refactor in progress

* update

* csv export working

* export tags as json

Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>

* Update README.md

* Piotr | MS-XXX | Import coco labels from file (#111)

* initial refactor

* initial changes

* export popup refactored

* refactor continues

* style changes

* base import popup added

* new feature placeholder added

* hide import button

* up

* drop zone in place

* up

* bug fixing cleanup

* loading mechanism prepared

* update

* more tests and more refactor

* base import created

* almost done

* basic error handling

* done

* done

* Update README.md

* Update README.md

* quick fix

* Update README.md

* Piotr | MS-XXX | Import labels yolo format (#114)

* initial refactor

* popup prepared for other file formats

* fix

* fix

* loading of yolo files in place

* bug fix

* loading labels from file

* up

* up

* refactor

* tests refactor

* filtering file data

* filterFilesData tests added

* up

* up

* done

* working code

* up

* after PR, part 1

* YOLOImporter refactor done

* YOLOImporter refactor done

* Piotr | MS-XXX | Drop down menu (#117)

* initial work on dropdown

* style and base actions

* up

* up

* up

* up

* almost done

* after PR

* update dependencies fixing vulnerabilities (#119)

* Resolves issue #44 (#120)

* Resolves issue #44

* Abstracts handleKeyUp function in TextInput

* Rename props to onKeyUp

* Update README.md

* up

Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>
Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>
Co-authored-by: Augusto L C Schnorr <alcsaw@hotmail.com>
@SkalskiP SkalskiP mentioned this pull request Oct 6, 2020
3 tasks
SkalskiP added a commit that referenced this pull request Oct 6, 2020
* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

* README.md update (#78) (#79)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

* add cross hair (#90)

* Piotr | Line labels creation and export (#89)

* initial changes: adding line labels to redux + addling line tab to right side navigation bar

* adding new lines and base rendering

* up

* line style + snapping to rect added

* highlight logic added

* line rendering engine is working

* line rendering engine update + marking line labeled images added

* serializing to CSV

* up

* after PR

* after PR

* quick fix

* Piotr | Image recognition (#92)

* image recognition initial commit

* setup before image recognition tagging

* base tag assignment added

* default screen when empty label list

* image recognition added

* after CR

* 1.6.0-alpha relese merge (#94)

* README.md update (#78)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

* 1.6.0-alpha relese merge (#93)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

* README.md update (#78) (#79)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

* add cross hair (#90)

* Piotr | Line labels creation and export (#89)

* initial changes: adding line labels to redux + addling line tab to right side navigation bar

* adding new lines and base rendering

* up

* line style + snapping to rect added

* highlight logic added

* line rendering engine is working

* line rendering engine update + marking line labeled images added

* serializing to CSV

* up

* after PR

* after PR

* quick fix

* Piotr | Image recognition (#92)

* image recognition initial commit

* setup before image recognition tagging

* base tag assignment added

* default screen when empty label list

* image recognition added

* after CR

Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>
Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>
Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>

* Update README.md

* Update README.md

* Update README.md

* Add files via upload

* Update README.md

* Update README.md

* Update README.md

* MS-86 Coco format suppport (#107)

* up

* save refactor

* coco exporter in progress

* coco exporter in progress

* Disable browser back buttons during labelling (#106)

* done

* up

* Piotr | MS-96 | Can image suppored by multi labels (#109)

* initial refactor

* refactor in progress

* update

* csv export working

* export tags as json

Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>

* Update README.md

* Piotr | MS-XXX | Import coco labels from file (#111)

* initial refactor

* initial changes

* export popup refactored

* refactor continues

* style changes

* base import popup added

* new feature placeholder added

* hide import button

* up

* drop zone in place

* up

* bug fixing cleanup

* loading mechanism prepared

* update

* more tests and more refactor

* base import created

* almost done

* basic error handling

* done

* done

* Update README.md

* Update README.md

* quick fix

* Update README.md

* Piotr | MS-XXX | Import labels yolo format (#114)

* initial refactor

* popup prepared for other file formats

* fix

* fix

* loading of yolo files in place

* bug fix

* loading labels from file

* up

* up

* refactor

* tests refactor

* filtering file data

* filterFilesData tests added

* up

* up

* done

* working code

* up

* after PR, part 1

* YOLOImporter refactor done

* YOLOImporter refactor done

* Piotr | MS-XXX | Drop down menu (#117)

* initial work on dropdown

* style and base actions

* up

* up

* up

* up

* almost done

* after PR

* update dependencies fixing vulnerabilities (#119)

* Resolves issue #44 (#120)

* Resolves issue #44

* Abstracts handleKeyUp function in TextInput

* Rename props to onKeyUp

* Update README.md

* up

Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>
Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>
Co-authored-by: Augusto L C Schnorr <alcsaw@hotmail.com>

Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>
Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>
Co-authored-by: Augusto L C Schnorr <alcsaw@hotmail.com>
SkalskiP added a commit that referenced this pull request Sep 6, 2021
* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

* README.md update (#78) (#79)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

* add cross hair (#90)

* Piotr | Line labels creation and export (#89)

* initial changes: adding line labels to redux + addling line tab to right side navigation bar

* adding new lines and base rendering

* up

* line style + snapping to rect added

* highlight logic added

* line rendering engine is working

* line rendering engine update + marking line labeled images added

* serializing to CSV

* up

* after PR

* after PR

* quick fix

* Piotr | Image recognition (#92)

* image recognition initial commit

* setup before image recognition tagging

* base tag assignment added

* default screen when empty label list

* image recognition added

* after CR

* 1.6.0-alpha relese merge (#94)

* README.md update (#78)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

* 1.6.0-alpha relese merge (#93)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

* README.md update (#78) (#79)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

* add cross hair (#90)

* Piotr | Line labels creation and export (#89)

* initial changes: adding line labels to redux + addling line tab to right side navigation bar

* adding new lines and base rendering

* up

* line style + snapping to rect added

* highlight logic added

* line rendering engine is working

* line rendering engine update + marking line labeled images added

* serializing to CSV

* up

* after PR

* after PR

* quick fix

* Piotr | Image recognition (#92)

* image recognition initial commit

* setup before image recognition tagging

* base tag assignment added

* default screen when empty label list

* image recognition added

* after CR

Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>
Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>
Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>

* Update README.md

* Update README.md

* Update README.md

* Add files via upload

* Update README.md

* Update README.md

* Update README.md

* MS-86 Coco format suppport (#107)

* up

* save refactor

* coco exporter in progress

* coco exporter in progress

* Disable browser back buttons during labelling (#106)

* done

* up

* Piotr | MS-96 | Can image suppored by multi labels (#109)

* initial refactor

* refactor in progress

* update

* csv export working

* export tags as json

Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>

* Update README.md

* Piotr | MS-XXX | Import coco labels from file (#111)

* initial refactor

* initial changes

* export popup refactored

* refactor continues

* style changes

* base import popup added

* new feature placeholder added

* hide import button

* up

* drop zone in place

* up

* bug fixing cleanup

* loading mechanism prepared

* update

* more tests and more refactor

* base import created

* almost done

* basic error handling

* done

* done

* Update README.md

* Update README.md

* quick fix

* Update README.md

* Piotr | MS-XXX | Import labels yolo format (#114)

* initial refactor

* popup prepared for other file formats

* fix

* fix

* loading of yolo files in place

* bug fix

* loading labels from file

* up

* up

* refactor

* tests refactor

* filtering file data

* filterFilesData tests added

* up

* up

* done

* working code

* up

* after PR, part 1

* YOLOImporter refactor done

* YOLOImporter refactor done

* Piotr | MS-XXX | Drop down menu (#117)

* initial work on dropdown

* style and base actions

* up

* up

* up

* up

* almost done

* after PR

* update dependencies fixing vulnerabilities (#119)

* Resolves issue #44 (#120)

* Resolves issue #44

* Abstracts handleKeyUp function in TextInput

* Rename props to onKeyUp

* Update README.md

* up

* 1.7.0-alpha relese (#122) (#123)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

* README.md update (#78) (#79)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

* add cross hair (#90)

* Piotr | Line labels creation and export (#89)

* initial changes: adding line labels to redux + addling line tab to right side navigation bar

* adding new lines and base rendering

* up

* line style + snapping to rect added

* highlight logic added

* line rendering engine is working

* line rendering engine update + marking line labeled images added

* serializing to CSV

* up

* after PR

* after PR

* quick fix

* Piotr | Image recognition (#92)

* image recognition initial commit

* setup before image recognition tagging

* base tag assignment added

* default screen when empty label list

* image recognition added

* after CR

* 1.6.0-alpha relese merge (#94)

* README.md update (#78)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

* 1.6.0-alpha relese merge (#93)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

* README.md update (#78) (#79)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

* add cross hair (#90)

* Piotr | Line labels creation and export (#89)

* initial changes: adding line labels to redux + addling line tab to right side navigation bar

* adding new lines and base rendering

* up

* line style + snapping to rect added

* highlight logic added

* line rendering engine is working

* line rendering engine update + marking line labeled images added

* serializing to CSV

* up

* after PR

* after PR

* quick fix

* Piotr | Image recognition (#92)

* image recognition initial commit

* setup before image recognition tagging

* base tag assignment added

* default screen when empty label list

* image recognition added

* after CR

Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>
Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>
Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>

* Update README.md

* Update README.md

* Update README.md

* Add files via upload

* Update README.md

* Update README.md

* Update README.md

* MS-86 Coco format suppport (#107)

* up

* save refactor

* coco exporter in progress

* coco exporter in progress

* Disable browser back buttons during labelling (#106)

* done

* up

* Piotr | MS-96 | Can image suppored by multi labels (#109)

* initial refactor

* refactor in progress

* update

* csv export working

* export tags as json

Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>

* Update README.md

* Piotr | MS-XXX | Import coco labels from file (#111)

* initial refactor

* initial changes

* export popup refactored

* refactor continues

* style changes

* base import popup added

* new feature placeholder added

* hide import button

* up

* drop zone in place

* up

* bug fixing cleanup

* loading mechanism prepared

* update

* more tests and more refactor

* base import created

* almost done

* basic error handling

* done

* done

* Update README.md

* Update README.md

* quick fix

* Update README.md

* Piotr | MS-XXX | Import labels yolo format (#114)

* initial refactor

* popup prepared for other file formats

* fix

* fix

* loading of yolo files in place

* bug fix

* loading labels from file

* up

* up

* refactor

* tests refactor

* filtering file data

* filterFilesData tests added

* up

* up

* done

* working code

* up

* after PR, part 1

* YOLOImporter refactor done

* YOLOImporter refactor done

* Piotr | MS-XXX | Drop down menu (#117)

* initial work on dropdown

* style and base actions

* up

* up

* up

* up

* almost done

* after PR

* update dependencies fixing vulnerabilities (#119)

* Resolves issue #44 (#120)

* Resolves issue #44

* Abstracts handleKeyUp function in TextInput

* Rename props to onKeyUp

* Update README.md

* up

Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>
Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>
Co-authored-by: Augusto L C Schnorr <alcsaw@hotmail.com>

Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>
Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>
Co-authored-by: Augusto L C Schnorr <alcsaw@hotmail.com>

* Implement hot keys (#134)

* Added hotkeys for first 10 labels

* updated readme

Co-authored-by: Jordan Wagner <WagnerJJ@sunypoly.edu>

* Change Manifest.json to reflect MakeSense Name (#145)

* Change Manifest.json to reflect MakeSense Name

* Update manifest.json

* Update README.md

* Update README.md

* Fix importing images and labels with filenames with multiple dots (#160)

* fix importing images and labels with filenames with multiple dots

* fix typo (all test passing)

* removed comments from FileUtils

* added unit tests for filenames with multiple dots

* fix develop build (#162)

* test .nvmrc

* test .node js 11

* small fixes

* feature/msb-001-add_automatic_response_to_new_issues_using_github_actions (#173)

* Bump path-parse from 1.0.6 to 1.0.7 (#170)

Bumps [path-parse](https://github.com/jbgutierrez/path-parse) from 1.0.6 to 1.0.7.
- [Release notes](https://github.com/jbgutierrez/path-parse/releases)
- [Commits](https://github.com/jbgutierrez/path-parse/commits/v1.0.7)

---
updated-dependencies:
- dependency-name: path-parse
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* feature/msb-001-add_automatic_response_to_new_issues_using_github_actions_2 (#182)

* feature/msb-002-add_code-cov_integration (#184)

* feature/msb-002-add_code-cov_integration

* upload test results to code-cov

* add code-cov badge to README.md

* feature/151_add_description_about_each_file_type (#185)

* feature/151_add_description_about_each_file_type

* gh action update

* update documentation structure

* initial documentation

* initial documentation 2

* initial documentation 3

* initial documentation 4

* initial documentation 5

* initial documentation 6

* initial documentation 7

* initial documentation 8

* initial documentation 9

* initial documentation 10

* initial documentation 11

* initial documentation 12

* initial documentation 13

* feature/issue-171_invalid_YOLO_annotations_exported_for_bboxes_on_the… (#188)

* feature/issue-171_invalid_YOLO_annotations_exported_for_bboxes_on_the_edge_of_an_image

* done

* feature/msb-003-bump_make-sense_dependencies (#189)

* feature/msb-003-bump_make-sense_dependencies

* package-lock.json

* Bump url-parse from 1.4.7 to 1.5.3 (#179)

Bumps [url-parse](https://github.com/unshiftio/url-parse) from 1.4.7 to 1.5.3.
- [Release notes](https://github.com/unshiftio/url-parse/releases)
- [Commits](unshiftio/url-parse@1.4.7...1.5.3)

---
updated-dependencies:
- dependency-name: url-parse
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump dns-packet from 1.3.1 to 1.3.4 (#178)

Bumps [dns-packet](https://github.com/mafintosh/dns-packet) from 1.3.1 to 1.3.4.
- [Release notes](https://github.com/mafintosh/dns-packet/releases)
- [Changelog](https://github.com/mafintosh/dns-packet/blob/master/CHANGELOG.md)
- [Commits](mafintosh/dns-packet@v1.3.1...v1.3.4)

---
updated-dependencies:
- dependency-name: dns-packet
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump color-string from 1.5.3 to 1.6.0 (#177)

Bumps [color-string](https://github.com/Qix-/color-string) from 1.5.3 to 1.6.0.
- [Release notes](https://github.com/Qix-/color-string/releases)
- [Changelog](https://github.com/Qix-/color-string/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Qix-/color-string/commits/1.6.0)

---
updated-dependencies:
- dependency-name: color-string
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* fix/dockerfile can be built with current develop branch (#191)

* Update README.md

* Update issue-greetings.yml

* Update mkdocs.yml

* Update README.md

* Update README.md

* initial integration with GTM (#192)

* feature/141_per-class_coloration (#190)

* initial commit - refactor + color palette list + color added to LabelName type + color initiation

* use material ui text field

* label creation and edit is working

* refresh button is working

* color labels work in progress

* render settings refactor

* render rect works

* done

* feature/msb-004_orchestrated_error_reporting_system (#193)

* initial commit - refactor + color palette list + color added to LabelName type + color initiation

* use material ui text field

* label creation and edit is working

* refresh button is working

* color labels work in progress

* render settings refactor

* render rect works

* done

* initial commit with Redux store setup

* initial notifications view plugin

* notifications view is ready to use

* refactor

* refactor 2

* Update README.md

* Update README.md

* feature/167_click_outside_the_image_line (#194)

* feature/164_respect_directory_structure_or_at_least_provide_warning (#195)

* initial refactor

* empty labels validation

* non unique labels validation

* issue/87_tooltips_for_action_bar_buttons (#196)

* tf.js models fix

Co-authored-by: Piotr Skalski <SkalskiP@users.noreply.github.com>
Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>
Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>
Co-authored-by: Augusto L C Schnorr <alcsaw@hotmail.com>
Co-authored-by: jaaywags <38050123+jaaywags@users.noreply.github.com>
Co-authored-by: Jordan Wagner <WagnerJJ@sunypoly.edu>
Co-authored-by: Muhammad Fahmi Rasyid <ufarasfa@gmail.com>
Co-authored-by: Héctor A <h3ct0r.ml@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: David Bensoussan <david@bensoussan.xyz>
@SkalskiP SkalskiP mentioned this pull request Sep 6, 2021
3 tasks
SkalskiP added a commit that referenced this pull request Sep 6, 2021
* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

* README.md update (#78) (#79)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

* add cross hair (#90)

* Piotr | Line labels creation and export (#89)

* initial changes: adding line labels to redux + addling line tab to right side navigation bar

* adding new lines and base rendering

* up

* line style + snapping to rect added

* highlight logic added

* line rendering engine is working

* line rendering engine update + marking line labeled images added

* serializing to CSV

* up

* after PR

* after PR

* quick fix

* Piotr | Image recognition (#92)

* image recognition initial commit

* setup before image recognition tagging

* base tag assignment added

* default screen when empty label list

* image recognition added

* after CR

* 1.6.0-alpha relese merge (#94)

* README.md update (#78)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

* 1.6.0-alpha relese merge (#93)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

* README.md update (#78) (#79)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

* add cross hair (#90)

* Piotr | Line labels creation and export (#89)

* initial changes: adding line labels to redux + addling line tab to right side navigation bar

* adding new lines and base rendering

* up

* line style + snapping to rect added

* highlight logic added

* line rendering engine is working

* line rendering engine update + marking line labeled images added

* serializing to CSV

* up

* after PR

* after PR

* quick fix

* Piotr | Image recognition (#92)

* image recognition initial commit

* setup before image recognition tagging

* base tag assignment added

* default screen when empty label list

* image recognition added

* after CR

Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>
Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>
Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>

* Update README.md

* Update README.md

* Update README.md

* Add files via upload

* Update README.md

* Update README.md

* Update README.md

* MS-86 Coco format suppport (#107)

* up

* save refactor

* coco exporter in progress

* coco exporter in progress

* Disable browser back buttons during labelling (#106)

* done

* up

* Piotr | MS-96 | Can image suppored by multi labels (#109)

* initial refactor

* refactor in progress

* update

* csv export working

* export tags as json

Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>

* Update README.md

* Piotr | MS-XXX | Import coco labels from file (#111)

* initial refactor

* initial changes

* export popup refactored

* refactor continues

* style changes

* base import popup added

* new feature placeholder added

* hide import button

* up

* drop zone in place

* up

* bug fixing cleanup

* loading mechanism prepared

* update

* more tests and more refactor

* base import created

* almost done

* basic error handling

* done

* done

* Update README.md

* Update README.md

* quick fix

* Update README.md

* Piotr | MS-XXX | Import labels yolo format (#114)

* initial refactor

* popup prepared for other file formats

* fix

* fix

* loading of yolo files in place

* bug fix

* loading labels from file

* up

* up

* refactor

* tests refactor

* filtering file data

* filterFilesData tests added

* up

* up

* done

* working code

* up

* after PR, part 1

* YOLOImporter refactor done

* YOLOImporter refactor done

* Piotr | MS-XXX | Drop down menu (#117)

* initial work on dropdown

* style and base actions

* up

* up

* up

* up

* almost done

* after PR

* update dependencies fixing vulnerabilities (#119)

* Resolves issue #44 (#120)

* Resolves issue #44

* Abstracts handleKeyUp function in TextInput

* Rename props to onKeyUp

* Update README.md

* up

* 1.7.0-alpha relese (#122) (#123)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

* README.md update (#78) (#79)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

* add cross hair (#90)

* Piotr | Line labels creation and export (#89)

* initial changes: adding line labels to redux + addling line tab to right side navigation bar

* adding new lines and base rendering

* up

* line style + snapping to rect added

* highlight logic added

* line rendering engine is working

* line rendering engine update + marking line labeled images added

* serializing to CSV

* up

* after PR

* after PR

* quick fix

* Piotr | Image recognition (#92)

* image recognition initial commit

* setup before image recognition tagging

* base tag assignment added

* default screen when empty label list

* image recognition added

* after CR

* 1.6.0-alpha relese merge (#94)

* README.md update (#78)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

* 1.6.0-alpha relese merge (#93)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

* README.md update (#78) (#79)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

* add cross hair (#90)

* Piotr | Line labels creation and export (#89)

* initial changes: adding line labels to redux + addling line tab to right side navigation bar

* adding new lines and base rendering

* up

* line style + snapping to rect added

* highlight logic added

* line rendering engine is working

* line rendering engine update + marking line labeled images added

* serializing to CSV

* up

* after PR

* after PR

* quick fix

* Piotr | Image recognition (#92)

* image recognition initial commit

* setup before image recognition tagging

* base tag assignment added

* default screen when empty label list

* image recognition added

* after CR

Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>
Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>
Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>

* Update README.md

* Update README.md

* Update README.md

* Add files via upload

* Update README.md

* Update README.md

* Update README.md

* MS-86 Coco format suppport (#107)

* up

* save refactor

* coco exporter in progress

* coco exporter in progress

* Disable browser back buttons during labelling (#106)

* done

* up

* Piotr | MS-96 | Can image suppored by multi labels (#109)

* initial refactor

* refactor in progress

* update

* csv export working

* export tags as json

Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>

* Update README.md

* Piotr | MS-XXX | Import coco labels from file (#111)

* initial refactor

* initial changes

* export popup refactored

* refactor continues

* style changes

* base import popup added

* new feature placeholder added

* hide import button

* up

* drop zone in place

* up

* bug fixing cleanup

* loading mechanism prepared

* update

* more tests and more refactor

* base import created

* almost done

* basic error handling

* done

* done

* Update README.md

* Update README.md

* quick fix

* Update README.md

* Piotr | MS-XXX | Import labels yolo format (#114)

* initial refactor

* popup prepared for other file formats

* fix

* fix

* loading of yolo files in place

* bug fix

* loading labels from file

* up

* up

* refactor

* tests refactor

* filtering file data

* filterFilesData tests added

* up

* up

* done

* working code

* up

* after PR, part 1

* YOLOImporter refactor done

* YOLOImporter refactor done

* Piotr | MS-XXX | Drop down menu (#117)

* initial work on dropdown

* style and base actions

* up

* up

* up

* up

* almost done

* after PR

* update dependencies fixing vulnerabilities (#119)

* Resolves issue #44 (#120)

* Resolves issue #44

* Abstracts handleKeyUp function in TextInput

* Rename props to onKeyUp

* Update README.md

* up

Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>
Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>
Co-authored-by: Augusto L C Schnorr <alcsaw@hotmail.com>

Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>
Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>
Co-authored-by: Augusto L C Schnorr <alcsaw@hotmail.com>

* Implement hot keys (#134)

* Added hotkeys for first 10 labels

* updated readme

Co-authored-by: Jordan Wagner <WagnerJJ@sunypoly.edu>

* Change Manifest.json to reflect MakeSense Name (#145)

* Change Manifest.json to reflect MakeSense Name

* Update manifest.json

* Update README.md

* Update README.md

* Fix importing images and labels with filenames with multiple dots (#160)

* fix importing images and labels with filenames with multiple dots

* fix typo (all test passing)

* removed comments from FileUtils

* added unit tests for filenames with multiple dots

* fix develop build (#162)

* test .nvmrc

* test .node js 11

* small fixes

* feature/msb-001-add_automatic_response_to_new_issues_using_github_actions (#173)

* Bump path-parse from 1.0.6 to 1.0.7 (#170)

Bumps [path-parse](https://github.com/jbgutierrez/path-parse) from 1.0.6 to 1.0.7.
- [Release notes](https://github.com/jbgutierrez/path-parse/releases)
- [Commits](https://github.com/jbgutierrez/path-parse/commits/v1.0.7)

---
updated-dependencies:
- dependency-name: path-parse
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* feature/msb-001-add_automatic_response_to_new_issues_using_github_actions_2 (#182)

* feature/msb-002-add_code-cov_integration (#184)

* feature/msb-002-add_code-cov_integration

* upload test results to code-cov

* add code-cov badge to README.md

* feature/151_add_description_about_each_file_type (#185)

* feature/151_add_description_about_each_file_type

* gh action update

* update documentation structure

* initial documentation

* initial documentation 2

* initial documentation 3

* initial documentation 4

* initial documentation 5

* initial documentation 6

* initial documentation 7

* initial documentation 8

* initial documentation 9

* initial documentation 10

* initial documentation 11

* initial documentation 12

* initial documentation 13

* feature/issue-171_invalid_YOLO_annotations_exported_for_bboxes_on_the… (#188)

* feature/issue-171_invalid_YOLO_annotations_exported_for_bboxes_on_the_edge_of_an_image

* done

* feature/msb-003-bump_make-sense_dependencies (#189)

* feature/msb-003-bump_make-sense_dependencies

* package-lock.json

* Bump url-parse from 1.4.7 to 1.5.3 (#179)

Bumps [url-parse](https://github.com/unshiftio/url-parse) from 1.4.7 to 1.5.3.
- [Release notes](https://github.com/unshiftio/url-parse/releases)
- [Commits](unshiftio/url-parse@1.4.7...1.5.3)

---
updated-dependencies:
- dependency-name: url-parse
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump dns-packet from 1.3.1 to 1.3.4 (#178)

Bumps [dns-packet](https://github.com/mafintosh/dns-packet) from 1.3.1 to 1.3.4.
- [Release notes](https://github.com/mafintosh/dns-packet/releases)
- [Changelog](https://github.com/mafintosh/dns-packet/blob/master/CHANGELOG.md)
- [Commits](mafintosh/dns-packet@v1.3.1...v1.3.4)

---
updated-dependencies:
- dependency-name: dns-packet
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump color-string from 1.5.3 to 1.6.0 (#177)

Bumps [color-string](https://github.com/Qix-/color-string) from 1.5.3 to 1.6.0.
- [Release notes](https://github.com/Qix-/color-string/releases)
- [Changelog](https://github.com/Qix-/color-string/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Qix-/color-string/commits/1.6.0)

---
updated-dependencies:
- dependency-name: color-string
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* fix/dockerfile can be built with current develop branch (#191)

* Update README.md

* Update issue-greetings.yml

* Update mkdocs.yml

* Update README.md

* Update README.md

* initial integration with GTM (#192)

* feature/141_per-class_coloration (#190)

* initial commit - refactor + color palette list + color added to LabelName type + color initiation

* use material ui text field

* label creation and edit is working

* refresh button is working

* color labels work in progress

* render settings refactor

* render rect works

* done

* feature/msb-004_orchestrated_error_reporting_system (#193)

* initial commit - refactor + color palette list + color added to LabelName type + color initiation

* use material ui text field

* label creation and edit is working

* refresh button is working

* color labels work in progress

* render settings refactor

* render rect works

* done

* initial commit with Redux store setup

* initial notifications view plugin

* notifications view is ready to use

* refactor

* refactor 2

* Update README.md

* Update README.md

* feature/167_click_outside_the_image_line (#194)

* feature/164_respect_directory_structure_or_at_least_provide_warning (#195)

* initial refactor

* empty labels validation

* non unique labels validation

* issue/87_tooltips_for_action_bar_buttons (#196)

* tf.js models fix

Co-authored-by: Piotr Skalski <SkalskiP@users.noreply.github.com>
Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>
Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>
Co-authored-by: Augusto L C Schnorr <alcsaw@hotmail.com>
Co-authored-by: jaaywags <38050123+jaaywags@users.noreply.github.com>
Co-authored-by: Jordan Wagner <WagnerJJ@sunypoly.edu>
Co-authored-by: Muhammad Fahmi Rasyid <ufarasfa@gmail.com>
Co-authored-by: Héctor A <h3ct0r.ml@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: David Bensoussan <david@bensoussan.xyz>

Co-authored-by: Piotr Skalski <SkalskiP@users.noreply.github.com>
Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>
Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>
Co-authored-by: Augusto L C Schnorr <alcsaw@hotmail.com>
Co-authored-by: jaaywags <38050123+jaaywags@users.noreply.github.com>
Co-authored-by: Jordan Wagner <WagnerJJ@sunypoly.edu>
Co-authored-by: Muhammad Fahmi Rasyid <ufarasfa@gmail.com>
Co-authored-by: Héctor A <h3ct0r.ml@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: David Bensoussan <david@bensoussan.xyz>
SkalskiP added a commit that referenced this pull request Jul 19, 2022
* 1.8.0-alpha relese (#197)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

* README.md update (#78) (#79)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

* add cross hair (#90)

* Piotr | Line labels creation and export (#89)

* initial changes: adding line labels to redux + addling line tab to right side navigation bar

* adding new lines and base rendering

* up

* line style + snapping to rect added

* highlight logic added

* line rendering engine is working

* line rendering engine update + marking line labeled images added

* serializing to CSV

* up

* after PR

* after PR

* quick fix

* Piotr | Image recognition (#92)

* image recognition initial commit

* setup before image recognition tagging

* base tag assignment added

* default screen when empty label list

* image recognition added

* after CR

* 1.6.0-alpha relese merge (#94)

* README.md update (#78)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

* 1.6.0-alpha relese merge (#93)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

* README.md update (#78) (#79)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

* add cross hair (#90)

* Piotr | Line labels creation and export (#89)

* initial changes: adding line labels to redux + addling line tab to right side navigation bar

* adding new lines and base rendering

* up

* line style + snapping to rect added

* highlight logic added

* line rendering engine is working

* line rendering engine update + marking line labeled images added

* serializing to CSV

* up

* after PR

* after PR

* quick fix

* Piotr | Image recognition (#92)

* image recognition initial commit

* setup before image recognition tagging

* base tag assignment added

* default screen when empty label list

* image recognition added

* after CR

Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>
Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>
Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>

* Update README.md

* Update README.md

* Update README.md

* Add files via upload

* Update README.md

* Update README.md

* Update README.md

* MS-86 Coco format suppport (#107)

* up

* save refactor

* coco exporter in progress

* coco exporter in progress

* Disable browser back buttons during labelling (#106)

* done

* up

* Piotr | MS-96 | Can image suppored by multi labels (#109)

* initial refactor

* refactor in progress

* update

* csv export working

* export tags as json

Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>

* Update README.md

* Piotr | MS-XXX | Import coco labels from file (#111)

* initial refactor

* initial changes

* export popup refactored

* refactor continues

* style changes

* base import popup added

* new feature placeholder added

* hide import button

* up

* drop zone in place

* up

* bug fixing cleanup

* loading mechanism prepared

* update

* more tests and more refactor

* base import created

* almost done

* basic error handling

* done

* done

* Update README.md

* Update README.md

* quick fix

* Update README.md

* Piotr | MS-XXX | Import labels yolo format (#114)

* initial refactor

* popup prepared for other file formats

* fix

* fix

* loading of yolo files in place

* bug fix

* loading labels from file

* up

* up

* refactor

* tests refactor

* filtering file data

* filterFilesData tests added

* up

* up

* done

* working code

* up

* after PR, part 1

* YOLOImporter refactor done

* YOLOImporter refactor done

* Piotr | MS-XXX | Drop down menu (#117)

* initial work on dropdown

* style and base actions

* up

* up

* up

* up

* almost done

* after PR

* update dependencies fixing vulnerabilities (#119)

* Resolves issue #44 (#120)

* Resolves issue #44

* Abstracts handleKeyUp function in TextInput

* Rename props to onKeyUp

* Update README.md

* up

* 1.7.0-alpha relese (#122) (#123)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

* README.md update (#78) (#79)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

* add cross hair (#90)

* Piotr | Line labels creation and export (#89)

* initial changes: adding line labels to redux + addling line tab to right side navigation bar

* adding new lines and base rendering

* up

* line style + snapping to rect added

* highlight logic added

* line rendering engine is working

* line rendering engine update + marking line labeled images added

* serializing to CSV

* up

* after PR

* after PR

* quick fix

* Piotr | Image recognition (#92)

* image recognition initial commit

* setup before image recognition tagging

* base tag assignment added

* default screen when empty label list

* image recognition added

* after CR

* 1.6.0-alpha relese merge (#94)

* README.md update (#78)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

* 1.6.0-alpha relese merge (#93)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

* README.md update (#78) (#79)

* Merge pull request #70 from SkalskiP/develop (#71)

* new gif with ssd and posenet

* Add Docker Support (#74)

* add Dockerfile for make-sense

* Update README for Docker

* README updated

* README updated with docker logs

* readme updated

* Update Dockerfile

* Update README.md

* basic stats

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

* add cross hair (#90)

* Piotr | Line labels creation and export (#89)

* initial changes: adding line labels to redux + addling line tab to right side navigation bar

* adding new lines and base rendering

* up

* line style + snapping to rect added

* highlight logic added

* line rendering engine is working

* line rendering engine update + marking line labeled images added

* serializing to CSV

* up

* after PR

* after PR

* quick fix

* Piotr | Image recognition (#92)

* image recognition initial commit

* setup before image recognition tagging

* base tag assignment added

* default screen when empty label list

* image recognition added

* after CR

Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>
Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>

Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>
Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>

* Update README.md

* Update README.md

* Update README.md

* Add files via upload

* Update README.md

* Update README.md

* Update README.md

* MS-86 Coco format suppport (#107)

* up

* save refactor

* coco exporter in progress

* coco exporter in progress

* Disable browser back buttons during labelling (#106)

* done

* up

* Piotr | MS-96 | Can image suppored by multi labels (#109)

* initial refactor

* refactor in progress

* update

* csv export working

* export tags as json

Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>

* Update README.md

* Piotr | MS-XXX | Import coco labels from file (#111)

* initial refactor

* initial changes

* export popup refactored

* refactor continues

* style changes

* base import popup added

* new feature placeholder added

* hide import button

* up

* drop zone in place

* up

* bug fixing cleanup

* loading mechanism prepared

* update

* more tests and more refactor

* base import created

* almost done

* basic error handling

* done

* done

* Update README.md

* Update README.md

* quick fix

* Update README.md

* Piotr | MS-XXX | Import labels yolo format (#114)

* initial refactor

* popup prepared for other file formats

* fix

* fix

* loading of yolo files in place

* bug fix

* loading labels from file

* up

* up

* refactor

* tests refactor

* filtering file data

* filterFilesData tests added

* up

* up

* done

* working code

* up

* after PR, part 1

* YOLOImporter refactor done

* YOLOImporter refactor done

* Piotr | MS-XXX | Drop down menu (#117)

* initial work on dropdown

* style and base actions

* up

* up

* up

* up

* almost done

* after PR

* update dependencies fixing vulnerabilities (#119)

* Resolves issue #44 (#120)

* Resolves issue #44

* Abstracts handleKeyUp function in TextInput

* Rename props to onKeyUp

* Update README.md

* up

Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>
Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>
Co-authored-by: Augusto L C Schnorr <alcsaw@hotmail.com>

Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>
Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>
Co-authored-by: Augusto L C Schnorr <alcsaw@hotmail.com>

* Implement hot keys (#134)

* Added hotkeys for first 10 labels

* updated readme

Co-authored-by: Jordan Wagner <WagnerJJ@sunypoly.edu>

* Change Manifest.json to reflect MakeSense Name (#145)

* Change Manifest.json to reflect MakeSense Name

* Update manifest.json

* Update README.md

* Update README.md

* Fix importing images and labels with filenames with multiple dots (#160)

* fix importing images and labels with filenames with multiple dots

* fix typo (all test passing)

* removed comments from FileUtils

* added unit tests for filenames with multiple dots

* fix develop build (#162)

* test .nvmrc

* test .node js 11

* small fixes

* feature/msb-001-add_automatic_response_to_new_issues_using_github_actions (#173)

* Bump path-parse from 1.0.6 to 1.0.7 (#170)

Bumps [path-parse](https://github.com/jbgutierrez/path-parse) from 1.0.6 to 1.0.7.
- [Release notes](https://github.com/jbgutierrez/path-parse/releases)
- [Commits](https://github.com/jbgutierrez/path-parse/commits/v1.0.7)

---
updated-dependencies:
- dependency-name: path-parse
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* feature/msb-001-add_automatic_response_to_new_issues_using_github_actions_2 (#182)

* feature/msb-002-add_code-cov_integration (#184)

* feature/msb-002-add_code-cov_integration

* upload test results to code-cov

* add code-cov badge to README.md

* feature/151_add_description_about_each_file_type (#185)

* feature/151_add_description_about_each_file_type

* gh action update

* update documentation structure

* initial documentation

* initial documentation 2

* initial documentation 3

* initial documentation 4

* initial documentation 5

* initial documentation 6

* initial documentation 7

* initial documentation 8

* initial documentation 9

* initial documentation 10

* initial documentation 11

* initial documentation 12

* initial documentation 13

* feature/issue-171_invalid_YOLO_annotations_exported_for_bboxes_on_the… (#188)

* feature/issue-171_invalid_YOLO_annotations_exported_for_bboxes_on_the_edge_of_an_image

* done

* feature/msb-003-bump_make-sense_dependencies (#189)

* feature/msb-003-bump_make-sense_dependencies

* package-lock.json

* Bump url-parse from 1.4.7 to 1.5.3 (#179)

Bumps [url-parse](https://github.com/unshiftio/url-parse) from 1.4.7 to 1.5.3.
- [Release notes](https://github.com/unshiftio/url-parse/releases)
- [Commits](unshiftio/url-parse@1.4.7...1.5.3)

---
updated-dependencies:
- dependency-name: url-parse
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump dns-packet from 1.3.1 to 1.3.4 (#178)

Bumps [dns-packet](https://github.com/mafintosh/dns-packet) from 1.3.1 to 1.3.4.
- [Release notes](https://github.com/mafintosh/dns-packet/releases)
- [Changelog](https://github.com/mafintosh/dns-packet/blob/master/CHANGELOG.md)
- [Commits](mafintosh/dns-packet@v1.3.1...v1.3.4)

---
updated-dependencies:
- dependency-name: dns-packet
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump color-string from 1.5.3 to 1.6.0 (#177)

Bumps [color-string](https://github.com/Qix-/color-string) from 1.5.3 to 1.6.0.
- [Release notes](https://github.com/Qix-/color-string/releases)
- [Changelog](https://github.com/Qix-/color-string/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Qix-/color-string/commits/1.6.0)

---
updated-dependencies:
- dependency-name: color-string
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* fix/dockerfile can be built with current develop branch (#191)

* Update README.md

* Update issue-greetings.yml

* Update mkdocs.yml

* Update README.md

* Update README.md

* initial integration with GTM (#192)

* feature/141_per-class_coloration (#190)

* initial commit - refactor + color palette list + color added to LabelName type + color initiation

* use material ui text field

* label creation and edit is working

* refresh button is working

* color labels work in progress

* render settings refactor

* render rect works

* done

* feature/msb-004_orchestrated_error_reporting_system (#193)

* initial commit - refactor + color palette list + color added to LabelName type + color initiation

* use material ui text field

* label creation and edit is working

* refresh button is working

* color labels work in progress

* render settings refactor

* render rect works

* done

* initial commit with Redux store setup

* initial notifications view plugin

* notifications view is ready to use

* refactor

* refactor 2

* Update README.md

* Update README.md

* feature/167_click_outside_the_image_line (#194)

* feature/164_respect_directory_structure_or_at_least_provide_warning (#195)

* initial refactor

* empty labels validation

* non unique labels validation

* issue/87_tooltips_for_action_bar_buttons (#196)

* tf.js models fix

Co-authored-by: Piotr Skalski <SkalskiP@users.noreply.github.com>
Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>
Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>
Co-authored-by: Augusto L C Schnorr <alcsaw@hotmail.com>
Co-authored-by: jaaywags <38050123+jaaywags@users.noreply.github.com>
Co-authored-by: Jordan Wagner <WagnerJJ@sunypoly.edu>
Co-authored-by: Muhammad Fahmi Rasyid <ufarasfa@gmail.com>
Co-authored-by: Héctor A <h3ct0r.ml@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: David Bensoussan <david@bensoussan.xyz>

* initial commit

* more tests

* initial commit

* more tests

* before toggle rect visibility tests

* update react version

* ready for review

Co-authored-by: Piotr Skalski <SkalskiP@users.noreply.github.com>
Co-authored-by: PLE12366003 <piotr.skalski@tesco.com>
Co-authored-by: Fatih Baltacı <baltacifatih14@gmail.com>
Co-authored-by: Augusto L C Schnorr <alcsaw@hotmail.com>
Co-authored-by: jaaywags <38050123+jaaywags@users.noreply.github.com>
Co-authored-by: Jordan Wagner <WagnerJJ@sunypoly.edu>
Co-authored-by: Muhammad Fahmi Rasyid <ufarasfa@gmail.com>
Co-authored-by: Héctor A <h3ct0r.ml@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: David Bensoussan <david@bensoussan.xyz>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
improvement Improves or optimizes the code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants