Skip to content

Commit 16b06c8

Browse files
SkalskiPPLE12366003fatihbaltaci
authored
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ı <[email protected]> Co-authored-by: Fatih Baltacı <[email protected]> * 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 <[email protected]> Co-authored-by: Fatih Baltacı <[email protected]>
1 parent 0d3cbb1 commit 16b06c8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+1186
-88
lines changed

public/ico/cross-hair.png

1.52 KB
Loading

public/ico/line.png

1.33 KB
Loading

public/ico/object.png

325 Bytes
Loading

public/ico/point.png

2.47 KB
Loading

src/data/enums/LabelType.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@ export enum LabelType {
22
NAME = "NAME",
33
POINT = "POINT",
44
RECTANGLE = "RECTANGLE",
5-
POLYGON = "POLYGON"
5+
POLYGON = "POLYGON",
6+
LINE = "LINE"
67
}

src/data/enums/LineAnchorType.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
export enum LineAnchorType {
2+
START = "START",
3+
END = "END"
4+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import {IExportFormat} from "../../interfaces/IExportFormat";
2+
import {ExportFormatType} from "../enums/ExportFormatType";
3+
4+
export const LineExportFormatData: IExportFormat[] = [
5+
{
6+
type: ExportFormatType.CSV,
7+
label: "Single CSV file."
8+
}
9+
];
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import {IExportFormat} from "../../interfaces/IExportFormat";
2+
import {ExportFormatType} from "../enums/ExportFormatType";
3+
4+
export const TagExportFormatData: IExportFormat[] = [
5+
{
6+
type: ExportFormatType.CSV,
7+
label: "Single CSV file."
8+
}
9+
];

src/data/info/EditorFeatureData.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export const EditorFeatureData: IEditorFeature[] = [
2121
imageAlt: "private",
2222
},
2323
{
24-
displayText: "Support multiple label types - bounding box, polygon, point",
24+
displayText: "Support multiple label types - rects, lines, points and polygons",
2525
imageSrc: "img/labels.png",
2626
imageAlt: "labels",
2727
},

src/data/info/LabelToolkitData.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export const LabelToolkitData: ILabelToolkit[] = [
1616
},
1717
{
1818
labelType: LabelType.RECTANGLE,
19-
headerText: "Bounding box",
19+
headerText: "Rect",
2020
imageSrc: "ico/rectangle.png",
2121
imageAlt: "rectangle",
2222
},
@@ -26,6 +26,12 @@ export const LabelToolkitData: ILabelToolkit[] = [
2626
imageSrc: "ico/point.png",
2727
imageAlt: "point",
2828
},
29+
{
30+
labelType: LabelType.LINE,
31+
headerText: "Line",
32+
imageSrc: "ico/line.png",
33+
imageAlt: "line",
34+
},
2935
{
3036
labelType: LabelType.POLYGON,
3137
headerText: "Polygon",

0 commit comments

Comments
 (0)