sigima 0.0.1.dev0__py3-none-any.whl → 1.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- sigima/__init__.py +142 -2
- sigima/client/__init__.py +105 -0
- sigima/client/base.py +780 -0
- sigima/client/remote.py +469 -0
- sigima/client/stub.py +814 -0
- sigima/client/utils.py +90 -0
- sigima/config.py +444 -0
- sigima/data/logo/Sigima.svg +135 -0
- sigima/data/tests/annotations.json +798 -0
- sigima/data/tests/curve_fitting/exponential_fit.txt +511 -0
- sigima/data/tests/curve_fitting/gaussian_fit.txt +100 -0
- sigima/data/tests/curve_fitting/piecewiseexponential_fit.txt +1022 -0
- sigima/data/tests/curve_fitting/polynomial_fit.txt +100 -0
- sigima/data/tests/curve_fitting/twohalfgaussian_fit.txt +1000 -0
- sigima/data/tests/curve_formats/bandwidth.txt +201 -0
- sigima/data/tests/curve_formats/boxcar.npy +0 -0
- sigima/data/tests/curve_formats/datetime.txt +1001 -0
- sigima/data/tests/curve_formats/dynamic_parameters.txt +4000 -0
- sigima/data/tests/curve_formats/fw1e2.txt +301 -0
- sigima/data/tests/curve_formats/fwhm.txt +319 -0
- sigima/data/tests/curve_formats/multiple_curves.csv +29 -0
- sigima/data/tests/curve_formats/noised_saw.mat +0 -0
- sigima/data/tests/curve_formats/oscilloscope.csv +111 -0
- sigima/data/tests/curve_formats/other/other2/recursive2.txt +5 -0
- sigima/data/tests/curve_formats/other/recursive1.txt +5 -0
- sigima/data/tests/curve_formats/paracetamol.npy +0 -0
- sigima/data/tests/curve_formats/paracetamol.txt +1010 -0
- sigima/data/tests/curve_formats/paracetamol_dx_dy.csv +1000 -0
- sigima/data/tests/curve_formats/paracetamol_dy.csv +1001 -0
- sigima/data/tests/curve_formats/pulse1.npy +0 -0
- sigima/data/tests/curve_formats/pulse2.npy +0 -0
- sigima/data/tests/curve_formats/simple.txt +5 -0
- sigima/data/tests/curve_formats/spectrum.mca +2139 -0
- sigima/data/tests/curve_formats/square2.npy +0 -0
- sigima/data/tests/curve_formats/step.npy +0 -0
- sigima/data/tests/fabry-perot1.jpg +0 -0
- sigima/data/tests/fabry-perot2.jpg +0 -0
- sigima/data/tests/flower.npy +0 -0
- sigima/data/tests/image_formats/NF 180338201.scor-data +11003 -0
- sigima/data/tests/image_formats/binary_image.npy +0 -0
- sigima/data/tests/image_formats/binary_image.png +0 -0
- sigima/data/tests/image_formats/centroid_test.npy +0 -0
- sigima/data/tests/image_formats/coordinated_text/complex_image.txt +10011 -0
- sigima/data/tests/image_formats/coordinated_text/complex_ref_image.txt +10010 -0
- sigima/data/tests/image_formats/coordinated_text/image.txt +15 -0
- sigima/data/tests/image_formats/coordinated_text/image2.txt +14 -0
- sigima/data/tests/image_formats/coordinated_text/image_no_unit_no_label.txt +14 -0
- sigima/data/tests/image_formats/coordinated_text/image_with_nan.txt +15 -0
- sigima/data/tests/image_formats/coordinated_text/image_with_unit.txt +14 -0
- sigima/data/tests/image_formats/fiber.csv +480 -0
- sigima/data/tests/image_formats/fiber.jpg +0 -0
- sigima/data/tests/image_formats/fiber.png +0 -0
- sigima/data/tests/image_formats/fiber.txt +480 -0
- sigima/data/tests/image_formats/gaussian_spot_with_noise.npy +0 -0
- sigima/data/tests/image_formats/mr-brain.dcm +0 -0
- sigima/data/tests/image_formats/noised_gaussian.mat +0 -0
- sigima/data/tests/image_formats/sif_reader/nd_lum_image_no_glue.sif +0 -0
- sigima/data/tests/image_formats/sif_reader/raman1.sif +0 -0
- sigima/data/tests/image_formats/tiling.txt +10 -0
- sigima/data/tests/image_formats/uint16.tiff +0 -0
- sigima/data/tests/image_formats/uint8.tiff +0 -0
- sigima/data/tests/laser_beam/TEM00_z_13.jpg +0 -0
- sigima/data/tests/laser_beam/TEM00_z_18.jpg +0 -0
- sigima/data/tests/laser_beam/TEM00_z_23.jpg +0 -0
- sigima/data/tests/laser_beam/TEM00_z_30.jpg +0 -0
- sigima/data/tests/laser_beam/TEM00_z_35.jpg +0 -0
- sigima/data/tests/laser_beam/TEM00_z_40.jpg +0 -0
- sigima/data/tests/laser_beam/TEM00_z_45.jpg +0 -0
- sigima/data/tests/laser_beam/TEM00_z_50.jpg +0 -0
- sigima/data/tests/laser_beam/TEM00_z_55.jpg +0 -0
- sigima/data/tests/laser_beam/TEM00_z_60.jpg +0 -0
- sigima/data/tests/laser_beam/TEM00_z_65.jpg +0 -0
- sigima/data/tests/laser_beam/TEM00_z_70.jpg +0 -0
- sigima/data/tests/laser_beam/TEM00_z_75.jpg +0 -0
- sigima/data/tests/laser_beam/TEM00_z_80.jpg +0 -0
- sigima/enums.py +195 -0
- sigima/io/__init__.py +123 -0
- sigima/io/base.py +311 -0
- sigima/io/common/__init__.py +5 -0
- sigima/io/common/basename.py +164 -0
- sigima/io/common/converters.py +189 -0
- sigima/io/common/objmeta.py +181 -0
- sigima/io/common/textreader.py +58 -0
- sigima/io/convenience.py +157 -0
- sigima/io/enums.py +17 -0
- sigima/io/ftlab.py +395 -0
- sigima/io/image/__init__.py +9 -0
- sigima/io/image/base.py +177 -0
- sigima/io/image/formats.py +1016 -0
- sigima/io/image/funcs.py +414 -0
- sigima/io/signal/__init__.py +9 -0
- sigima/io/signal/base.py +129 -0
- sigima/io/signal/formats.py +290 -0
- sigima/io/signal/funcs.py +723 -0
- sigima/objects/__init__.py +260 -0
- sigima/objects/base.py +937 -0
- sigima/objects/image/__init__.py +88 -0
- sigima/objects/image/creation.py +556 -0
- sigima/objects/image/object.py +524 -0
- sigima/objects/image/roi.py +904 -0
- sigima/objects/scalar/__init__.py +57 -0
- sigima/objects/scalar/common.py +215 -0
- sigima/objects/scalar/geometry.py +502 -0
- sigima/objects/scalar/table.py +784 -0
- sigima/objects/shape.py +290 -0
- sigima/objects/signal/__init__.py +133 -0
- sigima/objects/signal/constants.py +27 -0
- sigima/objects/signal/creation.py +1428 -0
- sigima/objects/signal/object.py +444 -0
- sigima/objects/signal/roi.py +274 -0
- sigima/params.py +405 -0
- sigima/proc/__init__.py +96 -0
- sigima/proc/base.py +381 -0
- sigima/proc/decorator.py +330 -0
- sigima/proc/image/__init__.py +513 -0
- sigima/proc/image/arithmetic.py +335 -0
- sigima/proc/image/base.py +260 -0
- sigima/proc/image/detection.py +519 -0
- sigima/proc/image/edges.py +329 -0
- sigima/proc/image/exposure.py +406 -0
- sigima/proc/image/extraction.py +458 -0
- sigima/proc/image/filtering.py +219 -0
- sigima/proc/image/fourier.py +147 -0
- sigima/proc/image/geometry.py +661 -0
- sigima/proc/image/mathops.py +340 -0
- sigima/proc/image/measurement.py +195 -0
- sigima/proc/image/morphology.py +155 -0
- sigima/proc/image/noise.py +107 -0
- sigima/proc/image/preprocessing.py +182 -0
- sigima/proc/image/restoration.py +235 -0
- sigima/proc/image/threshold.py +217 -0
- sigima/proc/image/transformations.py +393 -0
- sigima/proc/signal/__init__.py +376 -0
- sigima/proc/signal/analysis.py +206 -0
- sigima/proc/signal/arithmetic.py +551 -0
- sigima/proc/signal/base.py +262 -0
- sigima/proc/signal/extraction.py +60 -0
- sigima/proc/signal/features.py +310 -0
- sigima/proc/signal/filtering.py +484 -0
- sigima/proc/signal/fitting.py +276 -0
- sigima/proc/signal/fourier.py +259 -0
- sigima/proc/signal/mathops.py +420 -0
- sigima/proc/signal/processing.py +580 -0
- sigima/proc/signal/stability.py +175 -0
- sigima/proc/title_formatting.py +227 -0
- sigima/proc/validation.py +272 -0
- sigima/tests/__init__.py +7 -0
- sigima/tests/common/__init__.py +0 -0
- sigima/tests/common/arithmeticparam_unit_test.py +26 -0
- sigima/tests/common/basename_unit_test.py +126 -0
- sigima/tests/common/client_unit_test.py +412 -0
- sigima/tests/common/converters_unit_test.py +77 -0
- sigima/tests/common/decorator_unit_test.py +176 -0
- sigima/tests/common/examples_unit_test.py +104 -0
- sigima/tests/common/kernel_normalization_unit_test.py +242 -0
- sigima/tests/common/roi_basic_unit_test.py +73 -0
- sigima/tests/common/roi_geometry_unit_test.py +171 -0
- sigima/tests/common/scalar_builder_unit_test.py +142 -0
- sigima/tests/common/scalar_unit_test.py +991 -0
- sigima/tests/common/shape_unit_test.py +183 -0
- sigima/tests/common/stat_unit_test.py +138 -0
- sigima/tests/common/title_formatting_unit_test.py +338 -0
- sigima/tests/common/tools_coordinates_unit_test.py +60 -0
- sigima/tests/common/transformations_unit_test.py +178 -0
- sigima/tests/common/validation_unit_test.py +205 -0
- sigima/tests/conftest.py +129 -0
- sigima/tests/data.py +998 -0
- sigima/tests/env.py +280 -0
- sigima/tests/guiutils.py +163 -0
- sigima/tests/helpers.py +532 -0
- sigima/tests/image/__init__.py +28 -0
- sigima/tests/image/binning_unit_test.py +128 -0
- sigima/tests/image/blob_detection_unit_test.py +312 -0
- sigima/tests/image/centroid_unit_test.py +170 -0
- sigima/tests/image/check_2d_array_unit_test.py +63 -0
- sigima/tests/image/contour_unit_test.py +172 -0
- sigima/tests/image/convolution_unit_test.py +178 -0
- sigima/tests/image/datatype_unit_test.py +67 -0
- sigima/tests/image/edges_unit_test.py +155 -0
- sigima/tests/image/enclosingcircle_unit_test.py +88 -0
- sigima/tests/image/exposure_unit_test.py +223 -0
- sigima/tests/image/fft2d_unit_test.py +189 -0
- sigima/tests/image/filtering_unit_test.py +166 -0
- sigima/tests/image/geometry_unit_test.py +654 -0
- sigima/tests/image/hough_circle_unit_test.py +147 -0
- sigima/tests/image/imageobj_unit_test.py +737 -0
- sigima/tests/image/morphology_unit_test.py +71 -0
- sigima/tests/image/noise_unit_test.py +57 -0
- sigima/tests/image/offset_correction_unit_test.py +72 -0
- sigima/tests/image/operation_unit_test.py +518 -0
- sigima/tests/image/peak2d_limits_unit_test.py +41 -0
- sigima/tests/image/peak2d_unit_test.py +133 -0
- sigima/tests/image/profile_unit_test.py +159 -0
- sigima/tests/image/projections_unit_test.py +121 -0
- sigima/tests/image/restoration_unit_test.py +141 -0
- sigima/tests/image/roi2dparam_unit_test.py +53 -0
- sigima/tests/image/roi_advanced_unit_test.py +588 -0
- sigima/tests/image/roi_grid_unit_test.py +279 -0
- sigima/tests/image/spectrum2d_unit_test.py +40 -0
- sigima/tests/image/threshold_unit_test.py +91 -0
- sigima/tests/io/__init__.py +0 -0
- sigima/tests/io/addnewformat_unit_test.py +125 -0
- sigima/tests/io/convenience_funcs_unit_test.py +470 -0
- sigima/tests/io/coordinated_text_format_unit_test.py +495 -0
- sigima/tests/io/datetime_csv_unit_test.py +198 -0
- sigima/tests/io/imageio_formats_test.py +41 -0
- sigima/tests/io/ioregistry_unit_test.py +69 -0
- sigima/tests/io/objmeta_unit_test.py +87 -0
- sigima/tests/io/readobj_unit_test.py +130 -0
- sigima/tests/io/readwriteobj_unit_test.py +67 -0
- sigima/tests/signal/__init__.py +0 -0
- sigima/tests/signal/analysis_unit_test.py +135 -0
- sigima/tests/signal/check_1d_arrays_unit_test.py +169 -0
- sigima/tests/signal/convolution_unit_test.py +404 -0
- sigima/tests/signal/datetime_unit_test.py +176 -0
- sigima/tests/signal/fft1d_unit_test.py +303 -0
- sigima/tests/signal/filters_unit_test.py +403 -0
- sigima/tests/signal/fitting_unit_test.py +929 -0
- sigima/tests/signal/fwhm_unit_test.py +111 -0
- sigima/tests/signal/noise_unit_test.py +128 -0
- sigima/tests/signal/offset_correction_unit_test.py +34 -0
- sigima/tests/signal/operation_unit_test.py +489 -0
- sigima/tests/signal/peakdetection_unit_test.py +145 -0
- sigima/tests/signal/processing_unit_test.py +657 -0
- sigima/tests/signal/pulse/__init__.py +112 -0
- sigima/tests/signal/pulse/crossing_times_unit_test.py +123 -0
- sigima/tests/signal/pulse/plateau_detection_unit_test.py +102 -0
- sigima/tests/signal/pulse/pulse_unit_test.py +1824 -0
- sigima/tests/signal/roi_advanced_unit_test.py +392 -0
- sigima/tests/signal/signalobj_unit_test.py +603 -0
- sigima/tests/signal/stability_unit_test.py +431 -0
- sigima/tests/signal/uncertainty_unit_test.py +611 -0
- sigima/tests/vistools.py +1030 -0
- sigima/tools/__init__.py +59 -0
- sigima/tools/checks.py +290 -0
- sigima/tools/coordinates.py +308 -0
- sigima/tools/datatypes.py +26 -0
- sigima/tools/image/__init__.py +97 -0
- sigima/tools/image/detection.py +451 -0
- sigima/tools/image/exposure.py +77 -0
- sigima/tools/image/extraction.py +48 -0
- sigima/tools/image/fourier.py +260 -0
- sigima/tools/image/geometry.py +190 -0
- sigima/tools/image/preprocessing.py +165 -0
- sigima/tools/signal/__init__.py +86 -0
- sigima/tools/signal/dynamic.py +254 -0
- sigima/tools/signal/features.py +135 -0
- sigima/tools/signal/filtering.py +171 -0
- sigima/tools/signal/fitting.py +1171 -0
- sigima/tools/signal/fourier.py +466 -0
- sigima/tools/signal/interpolation.py +70 -0
- sigima/tools/signal/peakdetection.py +126 -0
- sigima/tools/signal/pulse.py +1626 -0
- sigima/tools/signal/scaling.py +50 -0
- sigima/tools/signal/stability.py +258 -0
- sigima/tools/signal/windowing.py +90 -0
- sigima/worker.py +79 -0
- sigima-1.0.0.dist-info/METADATA +233 -0
- sigima-1.0.0.dist-info/RECORD +262 -0
- {sigima-0.0.1.dev0.dist-info → sigima-1.0.0.dist-info}/licenses/LICENSE +29 -29
- sigima-0.0.1.dev0.dist-info/METADATA +0 -60
- sigima-0.0.1.dev0.dist-info/RECORD +0 -6
- {sigima-0.0.1.dev0.dist-info → sigima-1.0.0.dist-info}/WHEEL +0 -0
- {sigima-0.0.1.dev0.dist-info → sigima-1.0.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,798 @@
|
|
|
1
|
+
{
|
|
2
|
+
"AnnotatedPoint_001": {
|
|
3
|
+
"annotationparam": {
|
|
4
|
+
"show_label": true,
|
|
5
|
+
"show_computations": true,
|
|
6
|
+
"title": "",
|
|
7
|
+
"subtitle": "",
|
|
8
|
+
"format": "%.1f",
|
|
9
|
+
"uncertainty": 0.0,
|
|
10
|
+
"transform_matrix": [
|
|
11
|
+
"array",
|
|
12
|
+
[
|
|
13
|
+
[
|
|
14
|
+
1.0,
|
|
15
|
+
0.0,
|
|
16
|
+
0.0
|
|
17
|
+
],
|
|
18
|
+
[
|
|
19
|
+
0.0,
|
|
20
|
+
1.0,
|
|
21
|
+
0.0
|
|
22
|
+
],
|
|
23
|
+
[
|
|
24
|
+
0.0,
|
|
25
|
+
0.0,
|
|
26
|
+
1.0
|
|
27
|
+
]
|
|
28
|
+
],
|
|
29
|
+
"float64"
|
|
30
|
+
],
|
|
31
|
+
"readonly": false,
|
|
32
|
+
"private": false
|
|
33
|
+
},
|
|
34
|
+
"shapeparam": {
|
|
35
|
+
"label": "",
|
|
36
|
+
"line": {
|
|
37
|
+
"style": "SolidLine",
|
|
38
|
+
"color": "#000000",
|
|
39
|
+
"width": 1.0
|
|
40
|
+
},
|
|
41
|
+
"sel_line": {
|
|
42
|
+
"style": "SolidLine",
|
|
43
|
+
"color": "#000000",
|
|
44
|
+
"width": 1.0
|
|
45
|
+
},
|
|
46
|
+
"symbol": {
|
|
47
|
+
"marker": "Ellipse",
|
|
48
|
+
"size": 6,
|
|
49
|
+
"edgecolor": "#808080",
|
|
50
|
+
"facecolor": "#ffff00",
|
|
51
|
+
"alpha": 1.0
|
|
52
|
+
},
|
|
53
|
+
"sel_symbol": {
|
|
54
|
+
"marker": "Ellipse",
|
|
55
|
+
"size": 6,
|
|
56
|
+
"edgecolor": "#808080",
|
|
57
|
+
"facecolor": "#ffff00",
|
|
58
|
+
"alpha": 1.0
|
|
59
|
+
},
|
|
60
|
+
"fill": {
|
|
61
|
+
"style": "SolidPattern",
|
|
62
|
+
"color": "#000000",
|
|
63
|
+
"alpha": 1.0,
|
|
64
|
+
"angle": 0.0,
|
|
65
|
+
"sx": 1.0,
|
|
66
|
+
"sy": 1.0
|
|
67
|
+
},
|
|
68
|
+
"sel_fill": {
|
|
69
|
+
"style": "SolidPattern",
|
|
70
|
+
"color": "#000000",
|
|
71
|
+
"alpha": 1.0,
|
|
72
|
+
"angle": 0.0,
|
|
73
|
+
"sx": 1.0,
|
|
74
|
+
"sy": 1.0
|
|
75
|
+
},
|
|
76
|
+
"readonly": false,
|
|
77
|
+
"private": false
|
|
78
|
+
},
|
|
79
|
+
"points": [
|
|
80
|
+
"array",
|
|
81
|
+
[
|
|
82
|
+
[
|
|
83
|
+
15.0,
|
|
84
|
+
400.0
|
|
85
|
+
]
|
|
86
|
+
],
|
|
87
|
+
"float64"
|
|
88
|
+
],
|
|
89
|
+
"closed": false,
|
|
90
|
+
"z": 0.0,
|
|
91
|
+
"labelparam": {
|
|
92
|
+
"label": "",
|
|
93
|
+
"contents": "",
|
|
94
|
+
"symbol": {
|
|
95
|
+
"marker": "NoSymbol",
|
|
96
|
+
"size": 0,
|
|
97
|
+
"edgecolor": "white",
|
|
98
|
+
"facecolor": "white",
|
|
99
|
+
"alpha": 1.0
|
|
100
|
+
},
|
|
101
|
+
"border": {
|
|
102
|
+
"style": "SolidLine",
|
|
103
|
+
"color": "#cbcbcb",
|
|
104
|
+
"width": 0
|
|
105
|
+
},
|
|
106
|
+
"font": {
|
|
107
|
+
"family": "default",
|
|
108
|
+
"size": 8,
|
|
109
|
+
"bold": false,
|
|
110
|
+
"italic": false
|
|
111
|
+
},
|
|
112
|
+
"color": "white",
|
|
113
|
+
"bgcolor": "black",
|
|
114
|
+
"bgalpha": 0.25,
|
|
115
|
+
"anchor": "TL",
|
|
116
|
+
"xc": 5,
|
|
117
|
+
"yc": 5,
|
|
118
|
+
"abspos": false,
|
|
119
|
+
"xg": 15.0,
|
|
120
|
+
"yg": 400.0,
|
|
121
|
+
"move_anchor": true,
|
|
122
|
+
"absg": "TL"
|
|
123
|
+
},
|
|
124
|
+
"text": "( 15.0 ; 400.0 )"
|
|
125
|
+
},
|
|
126
|
+
"AnnotatedPoint_002": {
|
|
127
|
+
"annotationparam": {
|
|
128
|
+
"show_label": true,
|
|
129
|
+
"show_computations": true,
|
|
130
|
+
"title": "",
|
|
131
|
+
"subtitle": "",
|
|
132
|
+
"format": "%.1f",
|
|
133
|
+
"uncertainty": 0.0,
|
|
134
|
+
"transform_matrix": [
|
|
135
|
+
"array",
|
|
136
|
+
[
|
|
137
|
+
[
|
|
138
|
+
1.0,
|
|
139
|
+
0.0,
|
|
140
|
+
0.0
|
|
141
|
+
],
|
|
142
|
+
[
|
|
143
|
+
0.0,
|
|
144
|
+
1.0,
|
|
145
|
+
0.0
|
|
146
|
+
],
|
|
147
|
+
[
|
|
148
|
+
0.0,
|
|
149
|
+
0.0,
|
|
150
|
+
1.0
|
|
151
|
+
]
|
|
152
|
+
],
|
|
153
|
+
"float64"
|
|
154
|
+
],
|
|
155
|
+
"readonly": false,
|
|
156
|
+
"private": false
|
|
157
|
+
},
|
|
158
|
+
"shapeparam": {
|
|
159
|
+
"label": "",
|
|
160
|
+
"line": {
|
|
161
|
+
"style": "SolidLine",
|
|
162
|
+
"color": "#000000",
|
|
163
|
+
"width": 1.0
|
|
164
|
+
},
|
|
165
|
+
"sel_line": {
|
|
166
|
+
"style": "SolidLine",
|
|
167
|
+
"color": "#000000",
|
|
168
|
+
"width": 1.0
|
|
169
|
+
},
|
|
170
|
+
"symbol": {
|
|
171
|
+
"marker": "Ellipse",
|
|
172
|
+
"size": 6,
|
|
173
|
+
"edgecolor": "#808080",
|
|
174
|
+
"facecolor": "#ffff00",
|
|
175
|
+
"alpha": 1.0
|
|
176
|
+
},
|
|
177
|
+
"sel_symbol": {
|
|
178
|
+
"marker": "Ellipse",
|
|
179
|
+
"size": 6,
|
|
180
|
+
"edgecolor": "#808080",
|
|
181
|
+
"facecolor": "#ffff00",
|
|
182
|
+
"alpha": 1.0
|
|
183
|
+
},
|
|
184
|
+
"fill": {
|
|
185
|
+
"style": "SolidPattern",
|
|
186
|
+
"color": "#000000",
|
|
187
|
+
"alpha": 1.0,
|
|
188
|
+
"angle": 0.0,
|
|
189
|
+
"sx": 1.0,
|
|
190
|
+
"sy": 1.0
|
|
191
|
+
},
|
|
192
|
+
"sel_fill": {
|
|
193
|
+
"style": "SolidPattern",
|
|
194
|
+
"color": "#000000",
|
|
195
|
+
"alpha": 1.0,
|
|
196
|
+
"angle": 0.0,
|
|
197
|
+
"sx": 1.0,
|
|
198
|
+
"sy": 1.0
|
|
199
|
+
},
|
|
200
|
+
"readonly": false,
|
|
201
|
+
"private": false
|
|
202
|
+
},
|
|
203
|
+
"points": [
|
|
204
|
+
"array",
|
|
205
|
+
[
|
|
206
|
+
[
|
|
207
|
+
500.0,
|
|
208
|
+
500.0
|
|
209
|
+
]
|
|
210
|
+
],
|
|
211
|
+
"float64"
|
|
212
|
+
],
|
|
213
|
+
"closed": false,
|
|
214
|
+
"z": 0.0,
|
|
215
|
+
"labelparam": {
|
|
216
|
+
"label": "",
|
|
217
|
+
"contents": "",
|
|
218
|
+
"symbol": {
|
|
219
|
+
"marker": "NoSymbol",
|
|
220
|
+
"size": 0,
|
|
221
|
+
"edgecolor": "white",
|
|
222
|
+
"facecolor": "white",
|
|
223
|
+
"alpha": 1.0
|
|
224
|
+
},
|
|
225
|
+
"border": {
|
|
226
|
+
"style": "SolidLine",
|
|
227
|
+
"color": "#cbcbcb",
|
|
228
|
+
"width": 0
|
|
229
|
+
},
|
|
230
|
+
"font": {
|
|
231
|
+
"family": "default",
|
|
232
|
+
"size": 8,
|
|
233
|
+
"bold": false,
|
|
234
|
+
"italic": false
|
|
235
|
+
},
|
|
236
|
+
"color": "white",
|
|
237
|
+
"bgcolor": "black",
|
|
238
|
+
"bgalpha": 0.25,
|
|
239
|
+
"anchor": "TL",
|
|
240
|
+
"xc": 5,
|
|
241
|
+
"yc": 5,
|
|
242
|
+
"abspos": false,
|
|
243
|
+
"xg": 500.0,
|
|
244
|
+
"yg": 500.0,
|
|
245
|
+
"move_anchor": true,
|
|
246
|
+
"absg": "TL"
|
|
247
|
+
},
|
|
248
|
+
"text": "( 500.0 ; 500.0 )"
|
|
249
|
+
},
|
|
250
|
+
"AnnotatedSegment_001": {
|
|
251
|
+
"annotationparam": {
|
|
252
|
+
"show_label": true,
|
|
253
|
+
"show_computations": true,
|
|
254
|
+
"title": "",
|
|
255
|
+
"subtitle": "",
|
|
256
|
+
"format": "%.1f",
|
|
257
|
+
"uncertainty": 0.0,
|
|
258
|
+
"transform_matrix": [
|
|
259
|
+
"array",
|
|
260
|
+
[
|
|
261
|
+
[
|
|
262
|
+
1.0,
|
|
263
|
+
0.0,
|
|
264
|
+
0.0
|
|
265
|
+
],
|
|
266
|
+
[
|
|
267
|
+
0.0,
|
|
268
|
+
1.0,
|
|
269
|
+
0.0
|
|
270
|
+
],
|
|
271
|
+
[
|
|
272
|
+
0.0,
|
|
273
|
+
0.0,
|
|
274
|
+
1.0
|
|
275
|
+
]
|
|
276
|
+
],
|
|
277
|
+
"float64"
|
|
278
|
+
],
|
|
279
|
+
"readonly": false,
|
|
280
|
+
"private": false
|
|
281
|
+
},
|
|
282
|
+
"shapeparam": {
|
|
283
|
+
"label": "",
|
|
284
|
+
"line": {
|
|
285
|
+
"style": "SolidLine",
|
|
286
|
+
"color": "#ffff00",
|
|
287
|
+
"width": 1.0
|
|
288
|
+
},
|
|
289
|
+
"sel_line": {
|
|
290
|
+
"style": "SolidLine",
|
|
291
|
+
"color": "#00ff00",
|
|
292
|
+
"width": 1.0
|
|
293
|
+
},
|
|
294
|
+
"symbol": {
|
|
295
|
+
"marker": "Rect",
|
|
296
|
+
"size": 3,
|
|
297
|
+
"edgecolor": "#ffff00",
|
|
298
|
+
"facecolor": "#ffff00",
|
|
299
|
+
"alpha": 1.0
|
|
300
|
+
},
|
|
301
|
+
"sel_symbol": {
|
|
302
|
+
"marker": "Rect",
|
|
303
|
+
"size": 9,
|
|
304
|
+
"edgecolor": "#00aa00",
|
|
305
|
+
"facecolor": "#00ff00",
|
|
306
|
+
"alpha": 0.7
|
|
307
|
+
},
|
|
308
|
+
"fill": {
|
|
309
|
+
"style": "SolidPattern",
|
|
310
|
+
"color": "#ffffff",
|
|
311
|
+
"alpha": 0.10000762951094835,
|
|
312
|
+
"angle": 0.0,
|
|
313
|
+
"sx": 1.0,
|
|
314
|
+
"sy": 1.0
|
|
315
|
+
},
|
|
316
|
+
"sel_fill": {
|
|
317
|
+
"style": "SolidPattern",
|
|
318
|
+
"color": "#ffffff",
|
|
319
|
+
"alpha": 0.10000762951094835,
|
|
320
|
+
"angle": 0.0,
|
|
321
|
+
"sx": 1.0,
|
|
322
|
+
"sy": 1.0
|
|
323
|
+
},
|
|
324
|
+
"readonly": false,
|
|
325
|
+
"private": false
|
|
326
|
+
},
|
|
327
|
+
"points": [
|
|
328
|
+
"array",
|
|
329
|
+
[
|
|
330
|
+
[
|
|
331
|
+
50.0,
|
|
332
|
+
250.0
|
|
333
|
+
],
|
|
334
|
+
[
|
|
335
|
+
400.0,
|
|
336
|
+
400.0
|
|
337
|
+
],
|
|
338
|
+
[
|
|
339
|
+
225.0,
|
|
340
|
+
325.0
|
|
341
|
+
]
|
|
342
|
+
],
|
|
343
|
+
"float64"
|
|
344
|
+
],
|
|
345
|
+
"closed": false,
|
|
346
|
+
"z": 0.0,
|
|
347
|
+
"labelparam": {
|
|
348
|
+
"label": "",
|
|
349
|
+
"contents": "",
|
|
350
|
+
"symbol": {
|
|
351
|
+
"marker": "NoSymbol",
|
|
352
|
+
"size": 0,
|
|
353
|
+
"edgecolor": "white",
|
|
354
|
+
"facecolor": "white",
|
|
355
|
+
"alpha": 1.0
|
|
356
|
+
},
|
|
357
|
+
"border": {
|
|
358
|
+
"style": "SolidLine",
|
|
359
|
+
"color": "#cbcbcb",
|
|
360
|
+
"width": 0
|
|
361
|
+
},
|
|
362
|
+
"font": {
|
|
363
|
+
"family": "default",
|
|
364
|
+
"size": 8,
|
|
365
|
+
"bold": false,
|
|
366
|
+
"italic": false
|
|
367
|
+
},
|
|
368
|
+
"color": "white",
|
|
369
|
+
"bgcolor": "black",
|
|
370
|
+
"bgalpha": 0.25,
|
|
371
|
+
"anchor": "C",
|
|
372
|
+
"xc": 5,
|
|
373
|
+
"yc": 5,
|
|
374
|
+
"abspos": false,
|
|
375
|
+
"xg": 225.0,
|
|
376
|
+
"yg": 325.0,
|
|
377
|
+
"move_anchor": true,
|
|
378
|
+
"absg": "TL"
|
|
379
|
+
},
|
|
380
|
+
"text": "Distance : 380.8 "
|
|
381
|
+
},
|
|
382
|
+
"AnnotatedRectangle_001": {
|
|
383
|
+
"annotationparam": {
|
|
384
|
+
"show_label": true,
|
|
385
|
+
"show_computations": true,
|
|
386
|
+
"title": "",
|
|
387
|
+
"subtitle": "",
|
|
388
|
+
"format": "%.1f",
|
|
389
|
+
"uncertainty": 0.0,
|
|
390
|
+
"transform_matrix": [
|
|
391
|
+
"array",
|
|
392
|
+
[
|
|
393
|
+
[
|
|
394
|
+
1.0,
|
|
395
|
+
0.0,
|
|
396
|
+
0.0
|
|
397
|
+
],
|
|
398
|
+
[
|
|
399
|
+
0.0,
|
|
400
|
+
1.0,
|
|
401
|
+
0.0
|
|
402
|
+
],
|
|
403
|
+
[
|
|
404
|
+
0.0,
|
|
405
|
+
0.0,
|
|
406
|
+
1.0
|
|
407
|
+
]
|
|
408
|
+
],
|
|
409
|
+
"float64"
|
|
410
|
+
],
|
|
411
|
+
"readonly": false,
|
|
412
|
+
"private": false
|
|
413
|
+
},
|
|
414
|
+
"shapeparam": {
|
|
415
|
+
"label": "",
|
|
416
|
+
"line": {
|
|
417
|
+
"style": "SolidLine",
|
|
418
|
+
"color": "#ffff00",
|
|
419
|
+
"width": 1.0
|
|
420
|
+
},
|
|
421
|
+
"sel_line": {
|
|
422
|
+
"style": "SolidLine",
|
|
423
|
+
"color": "#00ff00",
|
|
424
|
+
"width": 1.0
|
|
425
|
+
},
|
|
426
|
+
"symbol": {
|
|
427
|
+
"marker": "Rect",
|
|
428
|
+
"size": 3,
|
|
429
|
+
"edgecolor": "#ffff00",
|
|
430
|
+
"facecolor": "#ffff00",
|
|
431
|
+
"alpha": 1.0
|
|
432
|
+
},
|
|
433
|
+
"sel_symbol": {
|
|
434
|
+
"marker": "Rect",
|
|
435
|
+
"size": 9,
|
|
436
|
+
"edgecolor": "#00aa00",
|
|
437
|
+
"facecolor": "#00ff00",
|
|
438
|
+
"alpha": 0.7
|
|
439
|
+
},
|
|
440
|
+
"fill": {
|
|
441
|
+
"style": "SolidPattern",
|
|
442
|
+
"color": "#d574ff",
|
|
443
|
+
"alpha": 0.5000076295109483,
|
|
444
|
+
"angle": 0.0,
|
|
445
|
+
"sx": 1.0,
|
|
446
|
+
"sy": 1.0
|
|
447
|
+
},
|
|
448
|
+
"sel_fill": {
|
|
449
|
+
"style": "SolidPattern",
|
|
450
|
+
"color": "#ffffff",
|
|
451
|
+
"alpha": 0.10000762951094835,
|
|
452
|
+
"angle": 0.0,
|
|
453
|
+
"sx": 1.0,
|
|
454
|
+
"sy": 1.0
|
|
455
|
+
},
|
|
456
|
+
"readonly": false,
|
|
457
|
+
"private": false
|
|
458
|
+
},
|
|
459
|
+
"points": [
|
|
460
|
+
"array",
|
|
461
|
+
[
|
|
462
|
+
[
|
|
463
|
+
246.05373134328346,
|
|
464
|
+
126.05269461077847
|
|
465
|
+
],
|
|
466
|
+
[
|
|
467
|
+
646.0537313432841,
|
|
468
|
+
126.05269461077847
|
|
469
|
+
],
|
|
470
|
+
[
|
|
471
|
+
646.0537313432841,
|
|
472
|
+
626.0526946107782
|
|
473
|
+
],
|
|
474
|
+
[
|
|
475
|
+
246.05373134328346,
|
|
476
|
+
626.0526946107782
|
|
477
|
+
]
|
|
478
|
+
],
|
|
479
|
+
"float64"
|
|
480
|
+
],
|
|
481
|
+
"closed": true,
|
|
482
|
+
"z": 0.0,
|
|
483
|
+
"labelparam": {
|
|
484
|
+
"label": "",
|
|
485
|
+
"contents": "",
|
|
486
|
+
"symbol": {
|
|
487
|
+
"marker": "NoSymbol",
|
|
488
|
+
"size": 0,
|
|
489
|
+
"edgecolor": "white",
|
|
490
|
+
"facecolor": "white",
|
|
491
|
+
"alpha": 1.0
|
|
492
|
+
},
|
|
493
|
+
"border": {
|
|
494
|
+
"style": "SolidLine",
|
|
495
|
+
"color": "#cbcbcb",
|
|
496
|
+
"width": 0.0
|
|
497
|
+
},
|
|
498
|
+
"font": {
|
|
499
|
+
"family": "default",
|
|
500
|
+
"size": 8,
|
|
501
|
+
"bold": false,
|
|
502
|
+
"italic": false
|
|
503
|
+
},
|
|
504
|
+
"color": "white",
|
|
505
|
+
"bgcolor": "black",
|
|
506
|
+
"bgalpha": 0.25,
|
|
507
|
+
"anchor": "TL",
|
|
508
|
+
"xc": 5,
|
|
509
|
+
"yc": 5,
|
|
510
|
+
"abspos": false,
|
|
511
|
+
"xg": 246.05373134328346,
|
|
512
|
+
"yg": 126.05269461077847,
|
|
513
|
+
"move_anchor": true,
|
|
514
|
+
"absg": "TL"
|
|
515
|
+
},
|
|
516
|
+
"text": "Centre : ( 446.1 ; 376.1 )<br>Taille : 400.0 x 500.0 "
|
|
517
|
+
},
|
|
518
|
+
"AnnotatedCircle_001": {
|
|
519
|
+
"annotationparam": {
|
|
520
|
+
"show_label": true,
|
|
521
|
+
"show_computations": true,
|
|
522
|
+
"title": "",
|
|
523
|
+
"subtitle": "",
|
|
524
|
+
"format": "%.1f",
|
|
525
|
+
"uncertainty": 0.0,
|
|
526
|
+
"transform_matrix": [
|
|
527
|
+
"array",
|
|
528
|
+
[
|
|
529
|
+
[
|
|
530
|
+
1.0,
|
|
531
|
+
0.0,
|
|
532
|
+
0.0
|
|
533
|
+
],
|
|
534
|
+
[
|
|
535
|
+
0.0,
|
|
536
|
+
1.0,
|
|
537
|
+
0.0
|
|
538
|
+
],
|
|
539
|
+
[
|
|
540
|
+
0.0,
|
|
541
|
+
0.0,
|
|
542
|
+
1.0
|
|
543
|
+
]
|
|
544
|
+
],
|
|
545
|
+
"float64"
|
|
546
|
+
],
|
|
547
|
+
"readonly": false,
|
|
548
|
+
"private": false
|
|
549
|
+
},
|
|
550
|
+
"shapeparam": {
|
|
551
|
+
"label": "",
|
|
552
|
+
"line": {
|
|
553
|
+
"style": "SolidLine",
|
|
554
|
+
"color": "#ffff00",
|
|
555
|
+
"width": 1.0
|
|
556
|
+
},
|
|
557
|
+
"sel_line": {
|
|
558
|
+
"style": "SolidLine",
|
|
559
|
+
"color": "#00ff00",
|
|
560
|
+
"width": 1.0
|
|
561
|
+
},
|
|
562
|
+
"symbol": {
|
|
563
|
+
"marker": "Rect",
|
|
564
|
+
"size": 3,
|
|
565
|
+
"edgecolor": "#ffff00",
|
|
566
|
+
"facecolor": "#ffff00",
|
|
567
|
+
"alpha": 1.0
|
|
568
|
+
},
|
|
569
|
+
"sel_symbol": {
|
|
570
|
+
"marker": "Rect",
|
|
571
|
+
"size": 9,
|
|
572
|
+
"edgecolor": "#00aa00",
|
|
573
|
+
"facecolor": "#00ff00",
|
|
574
|
+
"alpha": 0.7
|
|
575
|
+
},
|
|
576
|
+
"fill": {
|
|
577
|
+
"style": "SolidPattern",
|
|
578
|
+
"color": "#ffffff",
|
|
579
|
+
"alpha": 0.10000762951094835,
|
|
580
|
+
"angle": 0.0,
|
|
581
|
+
"sx": 1.0,
|
|
582
|
+
"sy": 1.0
|
|
583
|
+
},
|
|
584
|
+
"sel_fill": {
|
|
585
|
+
"style": "SolidPattern",
|
|
586
|
+
"color": "#ffffff",
|
|
587
|
+
"alpha": 0.10000762951094835,
|
|
588
|
+
"angle": 0.0,
|
|
589
|
+
"sx": 1.0,
|
|
590
|
+
"sy": 1.0
|
|
591
|
+
},
|
|
592
|
+
"readonly": false,
|
|
593
|
+
"private": false
|
|
594
|
+
},
|
|
595
|
+
"points": [
|
|
596
|
+
"array",
|
|
597
|
+
[
|
|
598
|
+
[
|
|
599
|
+
150.0,
|
|
600
|
+
150.0
|
|
601
|
+
],
|
|
602
|
+
[
|
|
603
|
+
350.0,
|
|
604
|
+
350.0
|
|
605
|
+
],
|
|
606
|
+
[
|
|
607
|
+
150.0,
|
|
608
|
+
350.0
|
|
609
|
+
],
|
|
610
|
+
[
|
|
611
|
+
350.0,
|
|
612
|
+
150.0
|
|
613
|
+
]
|
|
614
|
+
],
|
|
615
|
+
"float64"
|
|
616
|
+
],
|
|
617
|
+
"closed": true,
|
|
618
|
+
"z": 0.0,
|
|
619
|
+
"labelparam": {
|
|
620
|
+
"label": "",
|
|
621
|
+
"contents": "",
|
|
622
|
+
"symbol": {
|
|
623
|
+
"marker": "NoSymbol",
|
|
624
|
+
"size": 0,
|
|
625
|
+
"edgecolor": "white",
|
|
626
|
+
"facecolor": "white",
|
|
627
|
+
"alpha": 1.0
|
|
628
|
+
},
|
|
629
|
+
"border": {
|
|
630
|
+
"style": "SolidLine",
|
|
631
|
+
"color": "#cbcbcb",
|
|
632
|
+
"width": 0
|
|
633
|
+
},
|
|
634
|
+
"font": {
|
|
635
|
+
"family": "default",
|
|
636
|
+
"size": 8,
|
|
637
|
+
"bold": false,
|
|
638
|
+
"italic": false
|
|
639
|
+
},
|
|
640
|
+
"color": "white",
|
|
641
|
+
"bgcolor": "black",
|
|
642
|
+
"bgalpha": 0.25,
|
|
643
|
+
"anchor": "C",
|
|
644
|
+
"xc": 5,
|
|
645
|
+
"yc": 5,
|
|
646
|
+
"abspos": false,
|
|
647
|
+
"xg": 250.0,
|
|
648
|
+
"yg": 250.0,
|
|
649
|
+
"move_anchor": true,
|
|
650
|
+
"absg": "TL"
|
|
651
|
+
},
|
|
652
|
+
"text": "Centre : ( 250.0 ; 250.0 )<br>Diam\u00e8tre : 282.8 "
|
|
653
|
+
},
|
|
654
|
+
"AnnotatedCircle_002": {
|
|
655
|
+
"annotationparam": {
|
|
656
|
+
"show_label": true,
|
|
657
|
+
"show_computations": true,
|
|
658
|
+
"title": "",
|
|
659
|
+
"subtitle": "",
|
|
660
|
+
"format": "%.1f",
|
|
661
|
+
"uncertainty": 0.0,
|
|
662
|
+
"transform_matrix": [
|
|
663
|
+
"array",
|
|
664
|
+
[
|
|
665
|
+
[
|
|
666
|
+
1.0,
|
|
667
|
+
0.0,
|
|
668
|
+
0.0
|
|
669
|
+
],
|
|
670
|
+
[
|
|
671
|
+
0.0,
|
|
672
|
+
1.0,
|
|
673
|
+
0.0
|
|
674
|
+
],
|
|
675
|
+
[
|
|
676
|
+
0.0,
|
|
677
|
+
0.0,
|
|
678
|
+
1.0
|
|
679
|
+
]
|
|
680
|
+
],
|
|
681
|
+
"float64"
|
|
682
|
+
],
|
|
683
|
+
"readonly": false,
|
|
684
|
+
"private": false
|
|
685
|
+
},
|
|
686
|
+
"shapeparam": {
|
|
687
|
+
"label": "",
|
|
688
|
+
"line": {
|
|
689
|
+
"style": "SolidLine",
|
|
690
|
+
"color": "#ffff00",
|
|
691
|
+
"width": 1.0
|
|
692
|
+
},
|
|
693
|
+
"sel_line": {
|
|
694
|
+
"style": "SolidLine",
|
|
695
|
+
"color": "#00ff00",
|
|
696
|
+
"width": 1.0
|
|
697
|
+
},
|
|
698
|
+
"symbol": {
|
|
699
|
+
"marker": "Rect",
|
|
700
|
+
"size": 3,
|
|
701
|
+
"edgecolor": "#ffff00",
|
|
702
|
+
"facecolor": "#ffff00",
|
|
703
|
+
"alpha": 1.0
|
|
704
|
+
},
|
|
705
|
+
"sel_symbol": {
|
|
706
|
+
"marker": "Rect",
|
|
707
|
+
"size": 9,
|
|
708
|
+
"edgecolor": "#00aa00",
|
|
709
|
+
"facecolor": "#00ff00",
|
|
710
|
+
"alpha": 0.7
|
|
711
|
+
},
|
|
712
|
+
"fill": {
|
|
713
|
+
"style": "SolidPattern",
|
|
714
|
+
"color": "#ffffff",
|
|
715
|
+
"alpha": 0.10000762951094835,
|
|
716
|
+
"angle": 0.0,
|
|
717
|
+
"sx": 1.0,
|
|
718
|
+
"sy": 1.0
|
|
719
|
+
},
|
|
720
|
+
"sel_fill": {
|
|
721
|
+
"style": "SolidPattern",
|
|
722
|
+
"color": "#ffffff",
|
|
723
|
+
"alpha": 0.10000762951094835,
|
|
724
|
+
"angle": 0.0,
|
|
725
|
+
"sx": 1.0,
|
|
726
|
+
"sy": 1.0
|
|
727
|
+
},
|
|
728
|
+
"readonly": false,
|
|
729
|
+
"private": false
|
|
730
|
+
},
|
|
731
|
+
"points": [
|
|
732
|
+
"array",
|
|
733
|
+
[
|
|
734
|
+
[
|
|
735
|
+
100.0,
|
|
736
|
+
100.0
|
|
737
|
+
],
|
|
738
|
+
[
|
|
739
|
+
400.0,
|
|
740
|
+
400.0
|
|
741
|
+
],
|
|
742
|
+
[
|
|
743
|
+
100.0,
|
|
744
|
+
400.0
|
|
745
|
+
],
|
|
746
|
+
[
|
|
747
|
+
400.0,
|
|
748
|
+
100.0
|
|
749
|
+
]
|
|
750
|
+
],
|
|
751
|
+
"float64"
|
|
752
|
+
],
|
|
753
|
+
"closed": true,
|
|
754
|
+
"z": 0.0,
|
|
755
|
+
"labelparam": {
|
|
756
|
+
"label": "",
|
|
757
|
+
"contents": "",
|
|
758
|
+
"symbol": {
|
|
759
|
+
"marker": "NoSymbol",
|
|
760
|
+
"size": 0,
|
|
761
|
+
"edgecolor": "white",
|
|
762
|
+
"facecolor": "white",
|
|
763
|
+
"alpha": 1.0
|
|
764
|
+
},
|
|
765
|
+
"border": {
|
|
766
|
+
"style": "SolidLine",
|
|
767
|
+
"color": "#cbcbcb",
|
|
768
|
+
"width": 0
|
|
769
|
+
},
|
|
770
|
+
"font": {
|
|
771
|
+
"family": "default",
|
|
772
|
+
"size": 8,
|
|
773
|
+
"bold": false,
|
|
774
|
+
"italic": false
|
|
775
|
+
},
|
|
776
|
+
"color": "white",
|
|
777
|
+
"bgcolor": "black",
|
|
778
|
+
"bgalpha": 0.25,
|
|
779
|
+
"anchor": "C",
|
|
780
|
+
"xc": 5,
|
|
781
|
+
"yc": 5,
|
|
782
|
+
"abspos": false,
|
|
783
|
+
"xg": 250.0,
|
|
784
|
+
"yg": 250.0,
|
|
785
|
+
"move_anchor": true,
|
|
786
|
+
"absg": "TL"
|
|
787
|
+
},
|
|
788
|
+
"text": "Centre : ( 250.0 ; 250.0 )<br>Diam\u00e8tre : 424.3 "
|
|
789
|
+
},
|
|
790
|
+
"plot_items": [
|
|
791
|
+
"AnnotatedPoint_001",
|
|
792
|
+
"AnnotatedPoint_002",
|
|
793
|
+
"AnnotatedSegment_001",
|
|
794
|
+
"AnnotatedRectangle_001",
|
|
795
|
+
"AnnotatedCircle_001",
|
|
796
|
+
"AnnotatedCircle_002"
|
|
797
|
+
]
|
|
798
|
+
}
|