|
1 | 1 | module Dummies
|
2 | 2 |
|
| 3 | +using GeometryBasics |
3 | 4 | using ..ImageAnnotations
|
4 | 5 |
|
5 |
| -create_label(::Type{Int}) = 2 |
6 |
| -create_label(::Type{Float64}) = 0.5 |
7 |
| -create_label(::Type{String}) = "aeroplane" |
| 6 | +"Excerpt of the COCO classes." |
| 7 | +create_classes_1(::Type{String}) = ["person", "bicycle", "car"] |
| 8 | +create_classes_1(::Type{Label{String}}) = [Label(l) for l in create_classes_1(String)] |
| 9 | +create_classes_1(::Type{Int}) = Int.(1:length(create_classes_1(String))) |
| 10 | +create_classes_1(::Type{Float32}) = Float32.(create_classes_1(Int)) |
| 11 | +create_classes_1(::Type{Float64}) = Float64.(create_classes_1(Int)) |
| 12 | +create_classes_1() = create_classes_1(String) |
| 13 | + |
| 14 | +for L in [Int, Float64, Float32] |
| 15 | + @eval create_label_1(::Type{$L}) = $L(1) |
| 16 | + @eval create_label_2(::Type{$L}) = $L(2) |
| 17 | + @eval create_label_3(::Type{$L}) = $L(3) |
| 18 | +end |
| 19 | +for L in [String, Label{String}] |
| 20 | + @eval create_label_1(::Type{$L}) = $L(create_classes_1()[1]) |
| 21 | + @eval create_label_2(::Type{$L}) = $L(create_classes_1()[2]) |
| 22 | + @eval create_label_3(::Type{$L}) = $L(create_classes_1()[3]) |
| 23 | +end |
| 24 | + |
| 25 | +for L in [Int, Float64, Float32, String, Label{String}] |
| 26 | + @eval create_image_annotation_1(::Type{$L}) = ImageAnnotation(create_label_1($L)) |
| 27 | + @eval create_image_annotation_2(::Type{$L}) = ImageAnnotation(create_label_2($L)) |
| 28 | + @eval create_image_annotation_3(::Type{$L}) = ImageAnnotation(create_label_3($L); confidence = 0.6f0) |
| 29 | + |
| 30 | + @eval function create_annotated_image_1(::Type{$L}) |
| 31 | + return AnnotatedImage( |
| 32 | + create_image_annotation_1($L); image_file_path = joinpath("images", "image1.jpeg"), image_height = 9, image_width = 16 |
| 33 | + ) |
| 34 | + end |
| 35 | + @eval function create_annotated_image_2(::Type{$L}) |
| 36 | + return AnnotatedImage( |
| 37 | + sort([create_image_annotation_1($L), create_image_annotation_2($L)]); |
| 38 | + image_file_path = joinpath("images", "image2.jpeg"), |
| 39 | + image_height = 9, |
| 40 | + image_width = 16, |
| 41 | + ) |
| 42 | + end |
| 43 | + |
| 44 | + @eval create_image_annotation_dataset_1(::Type{$L}) = ImageAnnotationDataSet(create_classes_1($L), [create_annotated_image_1($L)]) |
| 45 | + @eval create_image_annotation_dataset_2(::Type{$L}) = ImageAnnotationDataSet(create_classes_1($L), [create_annotated_image_2($L)]) |
| 46 | + |
| 47 | + for T in [Float64, Float32] |
| 48 | + @eval create_bounding_box_annotation_1(::Type{$L}, ::Type{$T}) = |
| 49 | + BoundingBoxAnnotation(Point2{$T}($T(0), $T(0)), $T(1), $T(1), create_label_1($L)) |
| 50 | + @eval create_bounding_box_annotation_2(::Type{$L}, ::Type{$T}) = |
| 51 | + BoundingBoxAnnotation(Point2{$T}($T(0), $T(1)), $T(2), $T(3), create_label_2($L)) |
| 52 | + @eval create_bounding_box_annotation_3(::Type{$L}, ::Type{$T}) = |
| 53 | + BoundingBoxAnnotation(Point2{$T}($T(0), $T(1)), $T(2), $T(3), create_label_3($L); confidence = 0.6f0) |
| 54 | + |
| 55 | + @eval create_oriented_bounding_box_annotation_1(::Type{$L}, ::Type{$T}) = |
| 56 | + OrientedBoundingBoxAnnotation(Point2{$T}($T(0), $T(0)), $T(1), $T(1), $T(0), create_label_1($L)) |
| 57 | + @eval create_oriented_bounding_box_annotation_2(::Type{$L}, ::Type{$T}) = |
| 58 | + OrientedBoundingBoxAnnotation(Point2{$T}($T(0), $T(1)), $T(2), $T(3), $T(pi / 2), create_label_2($L)) |
| 59 | + @eval create_oriented_bounding_box_annotation_3(::Type{$L}, ::Type{$T}) = |
| 60 | + OrientedBoundingBoxAnnotation(Point2{$T}($T(0), $T(1)), $T(2), $T(3), $T(pi / 2), create_label_3($L); confidence = 0.6f0) |
| 61 | + |
| 62 | + @eval create_polygon_annotation_1(::Type{$L}, ::Type{$T}) = |
| 63 | + PolygonAnnotation([Point2{$T}($T(0), $T(0)), Point2{$T}($T(1), $T(0)), Point2{$T}($T(1), $T(1))], create_label_1($L)) |
| 64 | + @eval create_polygon_annotation_2(::Type{$L}, ::Type{$T}) = |
| 65 | + PolygonAnnotation([Point2{$T}($T(0), $T(1)), Point2{$T}($T(2), $T(3)), Point2{$T}($T(4), $T(5))], create_label_2($L)) |
| 66 | + @eval create_polygon_annotation_3(::Type{$L}, ::Type{$T}) = PolygonAnnotation( |
| 67 | + [Point2{$T}($T(0), $T(1)), Point2{$T}($T(2), $T(3)), Point2{$T}($T(4), $T(5))], create_label_3($L); confidence = 0.6f0 |
| 68 | + ) |
| 69 | + |
| 70 | + @eval function create_annotated_image_3(::Type{$L}, ::Type{$T}) |
| 71 | + return AnnotatedImage( |
| 72 | + sort([ |
| 73 | + create_image_annotation_1($L), |
| 74 | + create_image_annotation_2($L), |
| 75 | + create_bounding_box_annotation_1($L, $T), |
| 76 | + create_bounding_box_annotation_2($L, $T), |
| 77 | + create_oriented_bounding_box_annotation_1($L, $T), |
| 78 | + create_oriented_bounding_box_annotation_2($L, $T), |
| 79 | + create_polygon_annotation_1($L, $T), |
| 80 | + create_polygon_annotation_2($L, $T), |
| 81 | + ]); |
| 82 | + image_file_path = joinpath("images", "image3.jpeg"), |
| 83 | + image_height = 9, |
| 84 | + image_width = 16, |
| 85 | + ) |
| 86 | + end |
| 87 | + @eval function create_annotated_image_4(::Type{$L}, ::Type{$T}) |
| 88 | + return AnnotatedImage( |
| 89 | + sort([ |
| 90 | + create_image_annotation_3($L), |
| 91 | + create_bounding_box_annotation_3($L, $T), |
| 92 | + create_oriented_bounding_box_annotation_3($L, $T), |
| 93 | + create_polygon_annotation_3($L, $T), |
| 94 | + ]); |
| 95 | + image_file_path = joinpath("images", "image4.jpeg"), |
| 96 | + image_height = 9, |
| 97 | + image_width = 16, |
| 98 | + ) |
| 99 | + end |
| 100 | + |
| 101 | + @eval function create_image_annotation_dataset_3(::Type{$L}, ::Type{$T}) |
| 102 | + return ImageAnnotationDataSet(create_classes_1($L), [create_annotated_image_3($L, $T)]) |
| 103 | + end |
| 104 | + @eval function create_image_annotation_dataset_4(::Type{$L}, ::Type{$T}) |
| 105 | + return ImageAnnotationDataSet(create_classes_1($L), [create_annotated_image_4($L, $T)]) |
| 106 | + end |
| 107 | + end |
| 108 | +end |
| 109 | + |
| 110 | +create_label_1() = create_label_1(String) |
| 111 | +create_label_2() = create_label_2(String) |
| 112 | +create_label_3() = create_label_3(String) |
| 113 | + |
| 114 | +create_image_annotation_1() = create_image_annotation_1(String) |
| 115 | +create_image_annotation_2() = create_image_annotation_2(String) |
| 116 | +create_image_annotation_3() = create_image_annotation_3(String) |
| 117 | + |
| 118 | +create_bounding_box_annotation_1() = create_bounding_box_annotation_1(String, Float64) |
| 119 | +create_bounding_box_annotation_2() = create_bounding_box_annotation_2(String, Float64) |
| 120 | +create_bounding_box_annotation_3() = create_bounding_box_annotation_3(String, Float64) |
| 121 | + |
| 122 | +create_oriented_bounding_box_annotation_1() = create_oriented_bounding_box_annotation_1(String, Float64) |
| 123 | +create_oriented_bounding_box_annotation_2() = create_oriented_bounding_box_annotation_2(String, Float64) |
| 124 | +create_oriented_bounding_box_annotation_3() = create_oriented_bounding_box_annotation_3(String, Float64) |
| 125 | + |
| 126 | +create_polygon_annotation_1() = create_polygon_annotation_1(String, Float64) |
| 127 | +create_polygon_annotation_2() = create_polygon_annotation_2(String, Float64) |
| 128 | +create_polygon_annotation_3() = create_polygon_annotation_3(String, Float64) |
| 129 | + |
| 130 | +create_annotated_image_0() = AnnotatedImage(; image_file_path = joinpath("images", "image0.jpeg"), image_height = 9, image_width = 16) |
| 131 | +create_annotated_image_1() = create_annotated_image_1(String) |
| 132 | +create_annotated_image_2() = create_annotated_image_2(String) |
| 133 | +create_annotated_image_3() = create_annotated_image_3(String, Float64) |
| 134 | +create_annotated_image_4() = create_annotated_image_4(String, Float64) |
| 135 | + |
| 136 | +create_image_annotation_dataset_0() = ImageAnnotationDataSet(create_classes_1(), AnnotatedImage[]) |
| 137 | +create_image_annotation_dataset_1() = create_image_annotation_dataset_1(String) |
| 138 | +create_image_annotation_dataset_2() = create_image_annotation_dataset_2(String) |
| 139 | +create_image_annotation_dataset_3() = create_image_annotation_dataset_3(String, Float64) |
| 140 | +create_image_annotation_dataset_4() = create_image_annotation_dataset_4(String, Float64) |
8 | 141 |
|
9 | 142 | end
|
0 commit comments