diff --git a/PyNutil/coordinate_extraction.py b/PyNutil/coordinate_extraction.py index d16ae6fb237057823db106578e1e016ba4bfd6e1..a2a4d8d901f184ba7bc8c312faa0a15c74326c97 100644 --- a/PyNutil/coordinate_extraction.py +++ b/PyNutil/coordinate_extraction.py @@ -20,6 +20,7 @@ def get_centroids_and_area(segmentation, pixel_cut_off=0): labels = measure.label(segmentation) # This finds all the objects in the image labels_info = measure.regionprops(labels) + # Remove objects that are less than pixel_cut_off labels_info = [label for label in labels_info if label.area > pixel_cut_off] # Get the centre points of the objects @@ -84,7 +85,12 @@ def transform_to_atlas_space(anchoring, y, x, reg_height, reg_width): # related to coordinate extraction # This function returns an array of points def folder_to_atlas_space( - folder, quint_alignment, pixel_id=[0, 0, 0], non_linear=True, method="all", object_cutoff=0 + folder, + quint_alignment, + pixel_id=[0, 0, 0], + non_linear=True, + method="all", + object_cutoff=0, ): """Apply Segmentation to atlas space to all segmentations in a folder.""" @@ -118,7 +124,7 @@ def folder_to_atlas_space( centroids_list, index, method, - object_cutoff + object_cutoff, ), ) threads.append(x) @@ -131,10 +137,23 @@ def folder_to_atlas_space( points_len = [len(points) for points in points_list] centroids_len = [len(centroids) for centroids in centroids_list] - points = [item for sublist in points_list for item in sublist] - centroids_list = [item for sublist in centroids_list for item in sublist] - - return np.array(points), np.array(centroids_list), points_len, centroids_len + points = np.concatenate(points_list) + print("points shape: ",points.shape) + centroids = np.concatenate(centroids_list) + print("centroids shape: ",centroids.shape) + print("Number of points: ", len(points)) + print("Number of centroids: ", len(centroids)) + print("points_len: ", points_len) + print("points: ", points) + print("points first: ", points[0]) + + return ( + np.array(points), + np.array(centroids), + points_len, + centroids_len, + segmentations, + ) def segmentation_to_atlas_space( @@ -146,7 +165,7 @@ def segmentation_to_atlas_space( centroids_list=None, index=None, method="per_pixel", - object_cutoff=0 + object_cutoff=0, ): """Combines many functions to convert a segmentation to atlas space. It takes care of deformations.""" @@ -174,9 +193,9 @@ def segmentation_to_atlas_space( centroids, scaled_centroidsX, scaled_centroidsY = get_centroids( segmentation, pixel_id, y_scale, x_scale, object_cutoff ) - print("Number of objects: ", len(scaled_centroidsY)) if method in ["per_pixel", "all"]: scaled_y, scaled_x = get_scaled_pixels(segmentation, pixel_id, y_scale, x_scale) + print(f"{segmentation_path} \nNumber of objects: {len(scaled_centroidsY)}\nNumber of pixels: {len(scaled_y)}") if non_linear: if "markers" in slice: @@ -210,6 +229,7 @@ def segmentation_to_atlas_space( centroids = transform_to_atlas_space( slice["anchoring"], centroids_new_y, centroids_new_x, reg_height, reg_width ) + print(f"Finished and points len is: {len(points)} and centroids len is: {len(centroids)}") points_list[index] = np.array(points) centroids_list[index] = np.array(centroids) @@ -217,9 +237,11 @@ def segmentation_to_atlas_space( def get_centroids(segmentation, pixel_id, y_scale, x_scale, object_cutoff=0): binary_seg = segmentation == pixel_id binary_seg = np.all(binary_seg, axis=2) - centroids, area, coords = get_centroids_and_area(binary_seg, pixel_cut_off=object_cutoff) - centroidsY = centroids[:, 1] - centroidsX = centroids[:, 0] + centroids, area, coords = get_centroids_and_area( + binary_seg, pixel_cut_off=object_cutoff + ) + centroidsX = centroids[:, 1] + centroidsY = centroids[:, 0] scaled_centroidsY, scaled_centroidsX = scale_positions( centroidsY, centroidsX, y_scale, x_scale ) diff --git a/PyNutil/counting_and_load.py b/PyNutil/counting_and_load.py index 09a3f5483e115c5e58d00b0d285efbae8a844f0a..1d2dfdd4a14ecf09f4d49e9b1d4c354b96217f38 100644 --- a/PyNutil/counting_and_load.py +++ b/PyNutil/counting_and_load.py @@ -17,8 +17,23 @@ def label_points(points, label_volume, scale_factor=1): x = points[:, 0] y = points[:, 1] z = points[:, 2] + print(x[0], y[0], z[0]) + + #make sure the points are within the volume + x[x < 0] = 0 + y[y < 0] = 0 + z[z < 0] = 0 + mask = (x > label_volume.shape[0] - 1) | (y > label_volume.shape[1] - 1) | (z > label_volume.shape[2] - 1) + x[mask] = 0 + y[mask] = 0 + z[mask] = 0 + print('total mask: ') + print(np.sum(mask)) # Get the label value for each point + print(x[0], y[0], z[0]) labels = label_volume[x, y, z] + print('label sum: ') + print(np.sum(labels)) return labels diff --git a/PyNutil/main.py b/PyNutil/main.py index 97ebdd4642e6186c0f0e9be5f1dd06e1e7d7c9fc..c65c8a8f6b6dbb6b89ae29348a47f9b0bf7281e9 100644 --- a/PyNutil/main.py +++ b/PyNutil/main.py @@ -123,12 +123,12 @@ class PyNutil: current_atlas_path = self.config["annotation_volumes"][self.atlas]["volume"] print("loading atlas volume") start_time = datetime.now() - atlas_volume = read_atlas_volume(atlas_root_path + current_atlas_path) + atlas_volume = read_atlas_volume(f"{atlas_root_path}{current_atlas_path}") time_taken = datetime.now() - start_time print(f"atlas volume loaded in: {time_taken} ✅") atlas_label_path = self.config["annotation_volumes"][self.atlas]["labels"] print("loading atlas labels") - atlas_labels = pd.read_csv(atlas_root_path + atlas_label_path) + atlas_labels = pd.read_csv(f"{atlas_root_path}{atlas_label_path}") print("atlas labels loaded ✅") return atlas_volume, atlas_labels @@ -160,7 +160,13 @@ class PyNutil: f"method {method} not recognised, valid methods are: per_pixel, per_object, or all" ) print("extracting coordinates") - pixel_points, centroids, points_len, centroids_len = folder_to_atlas_space( + ( + pixel_points, + centroids, + points_len, + centroids_len, + segmentation_filenames, + ) = folder_to_atlas_space( self.segmentation_folder, self.alignment_json, pixel_id=self.colour, @@ -174,6 +180,7 @@ class PyNutil: ##This will be used to split the data up later into per section files self.points_len = points_len self.centroids_len = centroids_len + self.segmentation_filenames = segmentation_filenames def quantify_coordinates(self): """Quantifies the pixel coordinates by region. @@ -203,8 +210,24 @@ class PyNutil: self.label_df = pixel_count_per_region( labeled_points, labeled_points_centroids, self.atlas_labels ) + prev_pl = 0 + per_section_df = [] + current_centroids = None + current_points = None + for pl in self.points_len: + if hasattr(self, "centroids"): + current_centroids = labeled_points_centroids[prev_pl : prev_pl + pl] + if hasattr(self, "pixel_points"): + current_points = labeled_points[prev_pl : prev_pl + pl] + current_df = pixel_count_per_region( + current_points, current_centroids, self.atlas_labels + ) + per_section_df.append(current_df) + prev_pl += pl + self.labeled_points = labeled_points self.labeled_points_centroids = labeled_points_centroids + self.per_section_df = per_section_df print("quantification complete ✅") @@ -226,30 +249,66 @@ class PyNutil: if not os.path.exists(output_folder): os.makedirs(output_folder) - if not hasattr(self, "pixel_points"): - raise ValueError("Please run get_coordinates before running save_analysis") if not hasattr(self, "label_df"): print("no quantification found so we will only save the coordinates") print( "if you want to save the quantification please run quantify_coordinates" ) + else: + self.label_df.to_csv( + f"{output_folder}/counts.csv", sep=";", na_rep="", index=False + ) + if not os.path.exists(f"{output_folder}/per_section_meshview"): + os.makedirs(f"{output_folder}/per_section_meshview") + if not os.path.exists(f"{output_folder}/per_section_reports"): + os.makedirs(f"{output_folder}/per_section_reports") - self.label_df.to_csv( - output_folder + "/counts.csv", sep=";", na_rep="", index=False - ) + prev_pl = 0 + prev_cl = 0 - - - write_points_to_meshview( - self.pixel_points, - self.labeled_points, - output_folder + "/pixels_meshview.json", - self.atlas_labels, - ) - write_points_to_meshview( - self.centroids, - self.labeled_points_centroids, - output_folder + "/objects_meshview.json", - self.atlas_labels, - ) + for pl, cl, fn, df in zip( + self.points_len, + self.centroids_len, + self.segmentation_filenames, + self.per_section_df, + ): + + split_fn = fn.split("/")[-1].split(".")[0] + df.to_csv( + f"{output_folder}/per_section_reports/{split_fn}.csv", + sep=";", + na_rep="", + index=False, + ) + if hasattr(self, "pixel_points"): + write_points_to_meshview( + self.pixel_points[prev_pl : pl + prev_pl], + self.labeled_points[prev_pl : pl + prev_pl], + f"{output_folder}/per_section_meshview/{split_fn}_pixels.json", + self.atlas_labels, + ) + if hasattr(self, "centroids"): + write_points_to_meshview( + self.centroids[prev_cl : cl + prev_cl], + self.labeled_points_centroids[prev_cl : cl + prev_cl], + f"{output_folder}/per_section_meshview/{split_fn}_centroids.json", + self.atlas_labels, + ) + prev_cl += cl + prev_pl += pl + + if hasattr(self, "pixel_points"): + write_points_to_meshview( + self.pixel_points, + self.labeled_points, + f"{output_folder}/pixels_meshview.json", + self.atlas_labels, + ) + if hasattr(self, "centroids"): + write_points_to_meshview( + self.centroids, + self.labeled_points_centroids, + f"{output_folder}/objects_meshview.json", + self.atlas_labels, + ) print("analysis saved ✅") diff --git a/test/PVMouse_81264_test.json b/test/PVMouse_81264_test.json new file mode 100644 index 0000000000000000000000000000000000000000..963261b9e52e6b2de2652574d88c62e562dba571 --- /dev/null +++ b/test/PVMouse_81264_test.json @@ -0,0 +1,7 @@ +{ "volume_path": "allen2017", + "label_path": "annotation_volumes/allen2017_colours.csv", + "segmentation_folder": "test_data/ext-d000033_PVMouseExtraction_pub-Nutil_Quantifier_analysis-81264-Input_dir", + "alignment_json": "test_data/PVMouse_81264_nonlin.json", + "nonlinear": true, + "colour": [255, 0, 0] +} \ No newline at end of file diff --git a/test/test1.json b/test/test1.json index 6ce2ef414a40e9a0f0d6c1f34e30d93551379ee7..0355d8ca22ff7b021d36eac2a7dce534117df2c0 100644 --- a/test/test1.json +++ b/test/test1.json @@ -1,5 +1,5 @@ { "volume_path": "allen2017", - "label_path": "../annotation_volumes/allen2017_colours.csv", + "label_path": "annotation_volumes/allen2017_colours.csv", "segmentation_folder": "test_data/ttA_2877_NOP_segmentations", "alignment_json": "test_data/ttA_2877_NOP_horizontal_final_2017.json", "nonlinear": true, diff --git a/test/test3.json b/test/test3.json index 93d869b273362cd6aa3d923b29ce0b65160f1f08..1c9343f895c732d928da65a84999da0602e8c1c6 100644 --- a/test/test3.json +++ b/test/test3.json @@ -1,9 +1,9 @@ -{ "volume_path": "../annotation_volumes/annotation_10_reoriented.nrrd", - "label_path": "../annotation_volumes/allen2022_colours.csv", - "segmentation_folder": "../test_data/oneSection15", - "alignment_json": "../test_data/C68_nonlinear.json", +{ "volume_path": "allen2017", + "label_path": "annotation_volumes/allen2017_colours.csv", + "segmentation_folder": "test_data/oneSection15", + "alignment_json": "test_data/C68_nonlinear.json", "nonlinear": true, "colour": [255, 0, 255], - "points_json_path": "../outputs/test3_points.json", - "counts_per_label_name": "../outputs/test3_counts_per_idx.csv" + "points_json_path": "outputs/test3_points.json", + "counts_per_label_name": "outputs/test3_counts_per_idx.csv" } \ No newline at end of file diff --git a/testOOP.py b/testOOP.py index fe5173ae6cc27f015d5fa59e4d8f4b8faab96f64..ce0c65d1cab9a28d37c5531d511f8b82f454ffad 100644 --- a/testOOP.py +++ b/testOOP.py @@ -1,6 +1,7 @@ from PyNutil import PyNutil -pnt = PyNutil(settings_file=r"test/test4_2017.json") +pnt = PyNutil(settings_file=r"test/PVMouse_81264_test.json") +# pnt = PyNutil(settings_file=r"test/test3.json") # pnt.build_quantifier() pnt.get_coordinates(object_cutoff=0) diff --git a/test_data/ext-d000033_PVMouseExtraction_pub-Nutil_Quantifier_analysis-81264-Input_dir/PVMouse_81264_nonlin.json b/test_data/ext-d000033_PVMouseExtraction_pub-Nutil_Quantifier_analysis-81264-Input_dir/PVMouse_81264_nonlin.json new file mode 100644 index 0000000000000000000000000000000000000000..47498a90d9543b059f7449ea82762cc27ccbdd05 --- /dev/null +++ b/test_data/ext-d000033_PVMouseExtraction_pub-Nutil_Quantifier_analysis-81264-Input_dir/PVMouse_81264_nonlin.json @@ -0,0 +1,47 @@ +{"name":"file:\/\/\/\/sambaad.stud.ntnu.no\/arthurl\/TS-desktop\/QuickNIIMousev3\/sets\/PVMouse_81264\\1301_4244_6086_Ext_00006a_PVMouse_81264_Samp1__s038.png","target":"ABA_Mouse_CCFv3_2017_25um.cutlas","target-resolution":[456.0, 528.0, 320.0],"slices":[ +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s001_thumbnail_FinalSegmentation.png","nr":1,"width":11540,"height":8686,"anchoring":[116.41873628010956, 304.7430883068341, 304.55811790054605, 217.2083253277532, 0.0, 0.0, 0.0, -161.2429836174041, 5.630729400754519],"markers":[[4741.748013620884, 6859.779954785231, 5010.272417707152, 7147.78598342125], [5277.001051104085, 4272.504882145447, 5553.870601589102, 4431.3654860587785], [3230.7042079959483, 2380.3852639172846, 3097.8547105561856, 2402.2321024868124], [3766.703854325888, 7066.836608628541, 4073.7116912599317, 7461.974378296909], [6739.249602813287, 2815.9894967282867, 6726.208853575482, 2925.879427279578], [6595.438674172263, 4391.629801007501, 6529.72758229285, 4536.094951017331], [8431.831201662451, 2290.849389742628, 8501.089670828602, 2258.2290881688014]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s002_thumbnail_FinalSegmentation.png","nr":2,"width":6546,"height":10300,"anchoring":[227.15862669746707, 308.77468333189125, 298.65032693983386, 122.96766665170009, -10.75172277317006, 0.3754584284778134, -14.283069097287626, -163.15678146401638, 5.697559283303428],"markers":[[4946.384341637011, 8025.772418990204, 4992.975088967971, 8095.629238884703]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s003_thumbnail_FinalSegmentation.png","nr":3,"width":13398,"height":11150,"anchoring":[106.91030111371816, 334.41209206124205, 291.9880428517513, 253.10989951642432, 0.0, 0.0, 0.0, -205.87217249036576, 7.18921511145732],"markers":[[4421.171894604768, 1193.1424265259984, 4379.145545796737, 840.2411454408441], [11921.738904044989, 7994.595873730307, 12263.28858218319, 7999.095704596835], [6626.449181984648, 5721.272247239212, 6640.163111668758, 5553.99397136398]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s004_thumbnail_FinalSegmentation.png","nr":4,"width":15168,"height":12996,"anchoring":[86.83092971349856, 353.9287942578318, 285.5394992833533, 287.0744403215188, 0.0, 0.0, 0.0, -239.30878241661617, 8.356847329303344],"markers":[[6031.948353776629, 1165.4287867370006, 5248.578437701743, 1341.7121326299925], [3920.8139580683387, 11767.245416180474, 2751.5868302130407, 11918.712886209496], [3546.938386731142, 2101.0884832364236, 2653.66559070368, 1684.4853051996988], [1667.2508422221215, 10029.199097264513, 773.577792123951, 10175.466465712132], [8549.447330022584, 1207.0883495989465, 9047.922530664946, 1331.9186134137149], [9640.898315793856, 11695.044290490217, 9890.04519044545, 11722.842501883948], [13792.72968751934, 6334.787121082595, 14041.90574564235, 6346.200452147702]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s005_thumbnail_FinalSegmentation.png","nr":5,"width":16606,"height":14060,"anchoring":[79.9006912007975, 367.4765080066958, 279.299397420319, 314.8667700503469, 0.0, 0.0, 0.0, -258.20058836174684, 9.016563769560994],"markers":[[6358.391831525207, 656.910324039186, 6167.640076579451, 858.2215523737754], [3590.2276010677433, 2305.107010431674, 3115.611997447352, 2150.8515448379803], [4284.421994628601, 13029.030318554507, 4238.927887683472, 13424.280331574982], [9257.999321089883, 621.1662891948636, 10099.245692405873, 603.9336850037679], [11141.435859433179, 13118.369555329215, 11974.971282705807, 11824.385832705351], [6292.298540020072, 12134.054943562453, 6633.9221442246335, 12089.26902788244]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s006_thumbnail_FinalSegmentation.png","nr":6,"width":17470,"height":15877,"anchoring":[69.58149646550089, 394.8598635992396, 272.57614424961224, 331.8553583671349, 0.0, 0.0, 0.0, -290.7770530142641, 10.154159050772172],"markers":[[6741.336531871144, 1100.7415222305956, 6525.805346127486, 1196.4581763376036], [4149.009120921929, 3080.2000966815563, 3220.9938313913635, 2751.853805576488], [1520.0342176426889, 6415.486872941752, 742.3851953392733, 6209.617935192164], [8143.728150689665, 11489.644490555405, 7914.784098697738, 11426.175584024117], [9816.292615738193, 1255.3248073278048, 10070.095956134337, 1292.1748304446116], [15554.74973749931, 11836.170605930569, 15877.464016449623, 11976.54634513941]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s007_thumbnail_FinalSegmentation.png","nr":7,"width":18018,"height":19981,"anchoring":[57.78590272904577, 437.0840944608325, 265.33463659940355, 333.042705201017, 5.809740910586812, -0.20288063046845659, 6.010852492319354, -344.15172332736745, 12.018043007471329],"markers":[[6206.869565217392, 17933.211002260745, 6508.173913043477, 18008.49736247174], [7189.617903737228, 2752.593305047022, 6990.260869565216, 2589.8507912584782], [14527.130957007976, 18430.527251331685, 14477.67391304348, 17842.867370007538], [9007.364765322964, 5630.158596423042, 8948.73913043478, 5360.3888470233605]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s008_thumbnail_FinalSegmentation.png","nr":8,"width":19489,"height":23226,"anchoring":[44.75584395486186, 431.50612190510947, 259.762418076593, 371.5603898055047, 0.0, 0.0, 0.0, -403.4822639804366, 14.089911979478],"markers":[[7722.056603773586, 1417.7136397889976, 6531.353998203055, 1102.6661642803313], [6922.793361402322, 17260.788596697057, 7319.318957771788, 17310.108515448377], [9298.581752308435, 13894.787147726316, 9140.393530997306, 13652.057272042202], [4491.682086581353, 5042.255037251453, 3747.2111410601974, 4778.22004521477], [6470.055084342409, 2160.696314541002, 5130.527403414195, 1802.7716654107007], [2472.1943127378313, 7899.908196755408, 1821.0745732255166, 7456.123587038433], [11332.530159549062, 1419.5363733364918, 11696.902066486971, 1242.6872645064052], [17837.415889229458, 13514.018549376451, 18070.66307277628, 13687.06254709872], [12135.642383052656, 17087.72525347158, 12117.150044923628, 17205.092690278823], [10635.33322695185, 14797.976066315356, 10471.178796046723, 14947.252449133384], [3249.111588989242, 17395.447358662288, 3537.0871518418685, 17222.59532780709], [6751.781387323863, 18810.24133408958, 6338.740341419589, 18745.324792765634], [7041.91366482873, 18316.24371051051, 6811.519317160826, 18115.229841748303], [8990.62720829296, 19068.835239014545, 9245.455525606469, 19252.901281085153], [5802.3469831386865, 17776.418023940776, 6006.044025157233, 17922.700828937457]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s009_thumbnail_FinalSegmentation.png","nr":9,"width":19671,"height":24358,"anchoring":[41.048444876268775, 432.5183914901809, 253.960063589939, 375.7128889654385, 0.0, 0.0, 0.0, -424.86567247449756, 14.83663710323004],"markers":[[3361.1512605042017, 5837.109269027883, 3214.21568627451, 5708.619442351168], [8048.468933572978, 877.4656684837832, 8356.960784313727, 862.7174076865109], [1415.706808778102, 11186.767944261295, 1102.0168067226894, 11050.125094197436], [6914.203120377034, 17246.161292239594, 6905.971988795518, 17199.281085154482], [16129.258890942707, 18024.471319722492, 15924.142857142859, 17584.75056518463], [11766.456753066941, 856.8175373578941, 11809.946778711483, 789.2946495855314], [13605.005200384197, 12850.773784438172, 13756.843137254902, 12995.828183873398], [12479.037603027733, 12036.539647967322, 12342.588235294117, 12261.600602863604], [6103.805448663341, 12815.904128520067, 5895.789915966387, 13142.673700075358], [12993.005299339067, 12719.663116091875, 13022.165266106444, 13105.962321024868], [13130.204294555559, 19092.535861244487, 14491.52100840336, 19328.541070082894], [12618.630480492118, 16617.070455998648, 12544.624649859947, 16703.677467972866], [13904.70234784656, 18124.498762915413, 14252.750700280114, 17951.86435568953], [9813.071773663582, 13138.824599690726, 9624.280112044818, 13087.60663149962], [9641.307561263891, 19173.253373605825, 10707.929971988793, 19934.27882441598], [6930.8660156864735, 17981.48869834734, 7310.044817927171, 18612.669178598342], [9132.62386231641, 14452.75035505057, 8999.803921568628, 14170.592313489073]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s010_thumbnail_FinalSegmentation.png","nr":10,"width":19698,"height":24456,"anchoring":[44.648389116960914, 455.3471917055548, 247.39585900728096, 376.9121663766461, 0.0, 0.0, 0.0, -428.30024997719516, 14.956575199696285],"markers":[[7591.7455565949485, 1621.7995478522985, 7628.598690364827, 1142.63149962321], [3700.312156713726, 5868.303163775294, 3464.1945743685683, 5344.566691785984], [2246.685513518237, 18815.19016222087, 2432.306828811974, 18466.399397136396], [926.8073993414305, 10454.176588072862, 829.1955098222638, 10154.67671439337], [11877.930923270333, 1531.1805861936607, 12087.827876520112, 995.1951770911833], [16428.6234860826, 18952.910271569213, 16141.672591206732, 18226.815373021855], [9630.07556888335, 13014.447365977956, 9563.388213283444, 12992.825923134893], [14277.441190506617, 14533.559580730685, 14206.883068288122, 14282.893745290128], [14423.34590250575, 13066.71181304426, 14593.840972871845, 12826.960060286361], [11522.197697792917, 12734.404005759385, 11387.61833489242, 12568.94649585531], [4982.5024328297395, 12764.084292527325, 4827.760523854068, 12458.369253956293], [14039.974040296067, 3442.108859443592, 14372.722170252575, 3004.0150715900522], [9555.247142653732, 15615.342995042738, 9434.402245088868, 15278.088922381312], [13201.926692070803, 19802.907272046454, 13469.820392890551, 19203.581009796533], [6008.01206586106, 19821.235365502434, 5841.221702525724, 19369.44687264506], [5857.163185776879, 18917.46700046653, 5822.795135640786, 18742.842501883944], [13263.497941101523, 18895.52102405037, 13009.15622076707, 18392.681235870386]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s011_thumbnail_FinalSegmentation.png","nr":11,"width":20579,"height":25869,"anchoring":[31.077157335593824, 455.79160093657424, 241.61333458538837, 394.48385125952336, 0.0, 0.0, 0.0, -454.87113708299194, 15.884451079156191],"markers":[[7958.51374407583, 1150.1665410700825, 7275.798104265404, 877.2456669178598], [4839.505075596628, 4418.209658101689, 3998.7630331753544, 4093.8131122833456], [3808.2686668936403, 19402.094411513535, 4564.4417061611375, 19474.853805576484], [2011.9447016629854, 9164.710187878214, 1755.5545023696682, 9025.883195177092], [1578.4296136862272, 16330.965289351014, 1931.1099526066353, 16414.241145440843], [10047.221520928886, 14240.706959639454, 10104.191469194311, 14133.402411454408], [11898.816007788346, 1222.8449063339674, 12054.807582938387, 916.2343632253203], [15664.469910725897, 4185.705198163894, 16170.60758293839, 4015.835719668425], [14337.440007846839, 2387.058456926514, 14727.151658767774, 2046.9065561416728], [17557.420681910862, 18861.8348919676, 17321.471090047395, 18597.608138658627], [19365.52891623984, 12763.520632835294, 19525.6672985782, 12593.34890730972], [13717.4191837012, 18109.89601018818, 13420.238862559241, 17954.294649585536], [10335.28018781187, 11400.20327524944, 10279.746919431278, 11384.699321778447], [5327.862868660479, 15288.199281365922, 5208.145023696682, 15088.625470987192], [12324.841474372906, 13381.617070725142, 12171.844549763031, 13334.13413715147], [6419.635419564112, 19847.00860775717, 6202.95924170616, 20137.661642803312], [14152.680625490333, 19809.140379673663, 14415.053080568721, 19981.70685757347], [10224.680373040661, 15377.43610926893, 10123.697630331751, 15751.433308214017], [6965.406878748602, 18181.81288624485, 7041.724170616114, 18519.63074604371]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s012_thumbnail_FinalSegmentation.png","nr":12,"width":20822,"height":26286,"anchoring":[32.27625267941767, 467.1720062446676, 235.4489167764009, 399.864565415197, 0.0, 0.0, 0.0, -464.05781316834543, 16.205256896367743],"markers":[[8665.918095238096, 1505.4529012810854, 9102.18857142857, 1168.706857573474], [5483.407950016886, 3307.3673539739293, 5552.533333333334, 2971.2886209495105], [2850.1833648162033, 7033.261112673981, 2677.1142857142854, 6754.729464958553], [3837.825670710398, 20059.96326602978, 4025.5866666666666, 19352.993217784475], [4318.686464527174, 15525.251154276037, 4204.060952380953, 15034.720422004522], [11987.181640115465, 1410.5675268203593, 11739.641904761904, 1208.324039186134], [16524.62799218115, 5941.910612570207, 16598.108571428573, 5645.448379804069], [10326.764757471561, 2566.022984829507, 10311.847619047621, 2079.902034664657], [17392.95742815148, 19617.138126344762, 16657.599999999995, 19491.653353428785], [19509.974416067897, 13249.995571751406, 19592.510476190473, 13113.287113790504], [13506.643236756418, 17084.46681287207, 13722.689523809522, 16837.30218538056], [11399.957796709466, 13099.917396193328, 11442.184761904762, 13053.861341371516], [15286.97377555334, 12835.387382019442, 15626.415238095238, 12519.029389600602], [5218.188084878135, 12709.84392257793, 5017.110476190476, 12182.28334589299], [10151.656217476415, 21221.99487838051, 9816.085714285715, 20680.16880180859], [6178.188185801547, 20058.94512296972, 5770.668571428571, 19352.99321778447], [6182.956612081641, 19212.002780387735, 5968.973333333333, 18778.544084400906], [14307.082867302473, 20207.74446352936, 14139.129523809526, 20026.4853051997], [14564.673090169317, 19500.311684521872, 13960.655238095236, 19194.52449133384], [14149.56370275584, 19709.773679493832, 13841.672380952381, 19452.036171816126], [9906.499126807656, 25478.18727186736, 9538.459047619048, 24740.929917106256], [10169.87194779226, 15760.979737334666, 10173.034285714286, 15490.31801055011]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s013_thumbnail_FinalSegmentation.png","nr":13,"width":21707,"height":26051,"anchoring":[23.687403416706275, 462.86656812330585, 229.832260723669, 417.6133580641331, 0.0, 0.0, 0.0, -461.74679976519025, 16.12455452518389],"markers":[[5343.261538461538, 3160.67143933685, 4950.374660633484, 2885.8304446119064], [10383.243766715896, 1750.9932525891359, 10273.991855203618, 1511.6254709871894], [3021.7065251989393, 6766.476978406048, 2573.409049773755, 6498.026375282593], [4406.117749403383, 19740.834913593746, 4498.554751131222, 19395.921627731725], [18320.792611796285, 19141.09933199697, 18013.863348416286, 18865.871137905055], [20163.6925239586, 12761.231804569416, 20233.674208144792, 12505.265259984928], [17202.656767524764, 5240.047902008939, 17503.110407239823, 4809.717407686511], [12502.595609088066, 878.5282234582655, 11924.116742081445, 1001.2064807837227], [15692.568242734342, 2814.1877348855223, 15774.408144796378, 2532.4634513941223], [5196.82159557663, 12409.786547687083, 4911.085972850679, 12034.109269027882], [9921.308050694459, 13080.838487075604, 10018.615384615385, 12897.895252449134], [11226.220408879142, 11863.924117962304, 11118.698642533936, 11720.00527505652], [16824.37834508914, 13633.823003390296, 17267.378280542987, 13388.682743029389], [15613.533301308624, 19478.357836916806, 15342.232579185522, 19297.764129615676], [16172.709499904584, 16468.092937794558, 16226.228054298643, 16058.566691785982], [10663.232165160876, 15534.960757282575, 10175.770135746607, 15410.727204220046], [10614.435088100887, 13324.617135009572, 10784.744796380088, 13329.78824415976], [10292.732702980604, 14244.762445876597, 10313.280542986427, 14193.57422758101], [14069.708194568742, 18243.92596840387, 14045.705882352942, 17982.453654860587], [14805.879725771892, 19621.36867376873, 14949.345701357468, 19356.658628485304], [6520.962956682142, 20250.31724544963, 6462.989140271493, 20475.654107008286], [12078.250993919795, 21283.628244354702, 12533.09140271493, 21260.9140919367], [5223.589712408286, 20178.564500805667, 4852.1529411764695, 20416.759608138655], [17154.462583141565, 21173.11319015166, 18171.018099547517, 20946.810097965335], [16530.030636984404, 20409.381838664667, 17404.888687782804, 20083.024114544085], [10885.375301994613, 25511.00785470613, 11177.631674208145, 24892.741522230597]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s014_thumbnail_FinalSegmentation.png","nr":14,"width":20213,"height":27022,"anchoring":[41.89689107359288, 465.6711936448488, 223.96731576516373, 389.5722700867638, 0.0, 0.0, 0.0, -480.8637207119013, 16.792132154992323],"markers":[[2750.761088709677, 19691.238884702332, 3932.5695564516122, 19324.700828937453], [-90.91799902298476, 14626.524243751244, 753.9122983870969, 14478.253202712885], [1397.9525396553786, 7910.282892907748, 1691.208669354839, 7738.025621703089], [3790.458329621961, 3915.336143675849, 3647.305443548387, 3624.654107008289], [7632.618924410141, 677.9190408798108, 7742.88306451613, 733.0761115297664], [10475.352564801604, 914.3033298853934, 10188.004032258066, 957.0715900527506], [14910.814807780702, 2763.1257501464147, 15567.270161290324, 2545.4031650339116], [18112.320345039574, 19085.431428523363, 17482.614919354834, 18632.35116804822], [19460.80175293998, 13191.376471795436, 19540.591733870966, 13175.006782215523], [19296.692335965545, 16514.89992885923, 18929.31149193549, 16433.122833458925], [15046.268046750733, 16650.810476261016, 15098.62197580645, 16351.669932177843], [9138.647328095913, 10888.657509086423, 9454.467741935481, 10527.787490580256], [9701.354068124117, 10037.089109449167, 9923.115927419352, 9468.899773926149], [3082.318274347782, 15923.811003758452, 3749.1854838709673, 15638.95704596835], [14603.15506057646, 11694.936728738854, 14935.613911290322, 11118.321024868124], [9621.686940865386, 20658.160513480194, 10208.380040322581, 22033.00979653353], [5532.747892846233, 20316.137726100955, 6194.306451612903, 21361.02336096458], [4207.253022915658, 17747.85964212961, 4992.121975806452, 17675.279577995483], [13896.771940659224, 20143.327438127933, 14691.101814516129, 21564.655614167295], [15819.23676614979, 19823.1225523263, 15852.53427419355, 20037.413715146948], [15251.892980537867, 18083.338965801446, 15302.382056451615, 18001.09118311982], [14768.093369187089, 19487.451463721387, 15159.75, 20017.050489826677], [9628.022028436808, 14280.773627593777, 10188.004032258066, 14152.441597588548]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s015_thumbnail_FinalSegmentation.png","nr":15,"width":22070,"height":26381,"anchoring":[18.91008473302304, 466.39850776883236, 218.17491211979748, 426.12878290261665, 0.0, 0.0, 0.0, -471.31794314938196, 16.458786237120464],"markers":[[8947.297297297297, 636.1657874905804, 9166.009009009009, 974.128862094951], [5710.211018711017, 2424.061353492024, 5547.324324324324, 2345.8613413715143], [2035.81308438616, 8789.186763978007, 2107.585585585586, 8826.8003014318], [883.0739644107052, 14525.344105687502, 1173.0900900900901, 14691.453654860588], [3673.4991147201363, 19834.55952971761, 4155.522522522522, 19542.21778447626], [19738.601173541963, 18825.877320231626, 19425.576576576575, 18766.890730972114], [20702.526042471058, 12998.491755917685, 20837.26126126126, 12882.35719668425], [11545.998794397747, 661.3015851151058, 11492.306306306304, 1093.409947249435], [8764.316982866821, 7002.72455196422, 8808.117117117117, 6858.662396382819], [14567.615045001618, 8494.718250338185, 14892.279279279279, 8230.394875659382], [6189.531708418961, 11420.381631570659, 6263.108108108108, 10914.219291635267], [10102.836627951125, 14020.698542014616, 10736.756756756758, 13757.0851544838], [11623.431581073435, 14076.570612739963, 11532.072072072073, 13816.725697061038], [17811.675197682645, 15482.263866250296, 18073.540540540536, 15089.057272042199], [16905.108824475177, 12830.363424752657, 17238.459459459456, 12405.232856066315], [8218.782328075456, 13897.29872494084, 8271.279279279277, 13339.601356443103], [16146.783087666163, 17138.89247840342, 16204.549549549547, 16699.35192162773], [6525.401251238847, 19912.585228941847, 6561.351351351352, 19780.77995478523], [15154.164395195605, 19922.35890768978, 15468.882882882881, 19661.49886963074], [15980.501071051896, 19361.088562808585, 16005.720720720721, 19383.176337603618], [11142.174679075591, 25948.32129411488, 11472.42342342342, 24889.986435568957]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s016_thumbnail_FinalSegmentation.png","nr":16,"width":22519,"height":27183,"anchoring":[15.688263914717993, 461.615625190397, 212.21778594725495, 435.5795790676624, 0.0, 0.0, 0.0, -484.2915708740798, 16.911835327536892],"markers":[[10183.751592356688, 327.7528259231349, 10265.71337579618, 1147.134890730972], [4687.55593032312, 3783.063118605321, 4487.407643312101, 4137.879427279578], [1164.025555242668, 11706.382717535587, 1413.8407643312105, 12003.947249434816], [1550.8702002503082, 17495.769239825964, 1557.2738853503188, 17985.43632253203], [4195.249581731898, 19649.729368376033, 4323.484076433122, 19562.74679728711], [7043.057383403599, 15142.842446311322, 7356.070063694268, 14851.299924642048], [17159.545992709696, 19380.650738723813, 16699.713375796182, 19890.499623210246], [20869.57384089385, 11906.49213211506, 20818.292993630574, 11962.978146194422], [18107.5937771063, 4611.952802733984, 18256.987261146496, 4506.601356443105], [14843.363728584918, 9055.520856056773, 14794.101910828025, 8521.573474001505], [15317.135735541207, 9332.20414249998, 15531.75796178344, 9033.687264506405], [15618.892337866544, 9800.369399143317, 15716.171974522294, 9197.563677467972], [16162.262613724815, 10650.55652648407, 16535.789808917198, 10242.275810097964], [7390.322287174246, 8720.652418232825, 7540.484076433121, 8316.727957799549], [11074.470372548483, 8550.425650756993, 11105.821656050955, 8460.11981914092], [15498.285674241895, 19712.161618408012, 15572.738853503184, 20197.76789751319], [11059.160012915343, 14561.054624533861, 11310.726114649682, 14892.269027882441], [6491.437159345235, 19344.679713819445, 6474.980891719745, 19316.93217784476], [11008.569640104382, 20221.459684478206, 10941.898089171973, 20320.675207234362]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s017_thumbnail_FinalSegmentation.png","nr":17,"width":22507,"height":26591,"anchoring":[15.72410815930823, 461.3350094836542, 206.10343714310318, 436.1285288140277, 0.0, 0.0, 0.0, -482.99581792553175, 16.866586634788717],"markers":[[8758.289403383791, 380.73021853805585, 8858.498664292072, 621.19140919367], [5262.7416224068, 2200.4245084773274, 5190.839715048976, 2043.92012057272], [1613.7416366018156, 17800.25945718636, 2244.6874443455026, 17834.204973624717], [970.127342014091, 11890.481853017343, 1062.2181656277826, 11822.675207234362], [6705.8670648973475, 16384.325270420042, 6774.146037399822, 16251.168801808592], [5515.355013488156, 18645.306184821333, 5832.178984861976, 18816.08816880181], [17261.915566209234, 3208.599795236342, 17616.78806767587, 3065.88018085908], [15581.071326606847, 15288.168952835094, 15532.435440783616, 14688.171062547099], [8700.461931111391, 11911.480525579638, 8557.87088156723, 11341.752825923137], [6434.025815494029, 15280.108925384024, 6754.104185218164, 14788.36322532027], [8493.661121387247, 7382.893060294284, 8597.954585930544, 6933.297663903541], [8152.610147715753, 8324.77303408218, 8638.038290293856, 8055.449886963074], [5714.913865133586, 8106.498651780658, 5491.46749777382, 7474.335342878674], [7140.985329684133, 6878.93563080019, 6994.60641139804, 6091.683496608893], [7105.818221812115, 9544.120409257259, 7074.773820124667, 9237.717407686512], [5026.91801770284, 11199.76254522765, 4790.002671415851, 10961.02260738508], [13599.292654844741, 7285.7924814375065, 13929.087266251114, 6652.759608138657], [13692.937422695073, 8282.479228755066, 13307.789848619768, 7734.8349660889235], [14208.956227093822, 9022.514599471615, 13909.045414069456, 8636.564431047476], [15035.178193638409, 7724.330520120842, 15171.682101513805, 7133.681989449886], [15151.131066686115, 9980.942495299874, 15151.640249332146, 9698.601356443105], [15839.171882842571, 7876.825536544746, 16253.942119323243, 7554.489073097211], [19305.971100344053, 6158.0422576145975, 20182.145146927873, 5490.530519969857], [21383.50248129047, 13638.503499765311, 21565.03294746215, 13385.672946495853], [11042.527703116713, 19689.20161005133, 11504.023152270704, 20238.816880180857], [6891.119037715163, 19845.390152210635, 7114.857524487979, 20579.470233609645], [14950.160585549598, 19692.839681114106, 15472.309884238644, 19998.355689525244], [10958.21113847891, 14622.312131783512, 11303.604630454143, 13786.441597588546]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s018_thumbnail_FinalSegmentation.png","nr":18,"width":22296,"height":27080,"anchoring":[10.686371115594284, 466.2797221354274, 199.80661583842013, 432.8136249037872, 0.0, 0.0, 0.0, -490.15692875729593, 17.11665815044705],"markers":[[9187.912087912086, 816.277317256971, 9269.582417582418, 1122.3813112283347], [6410.569836413584, 1400.9113066897316, 6431.538461538463, 1326.450640542577], [4149.705027733933, 4401.653330700037, 4001.8461538461534, 4265.048982667671], [888.985550910561, 13759.832366338334, 1102.5494505494505, 13672.645064054255], [1974.499054483991, 18610.702398559606, 2715.538461538462, 18815.19216277317], [19225.558486481397, 19525.693180186187, 18825.010989010992, 19345.7724189902], [21712.325815532033, 14400.76233739706, 21336.37362637363, 14284.853051996986], [20674.88233858914, 9015.479273331512, 20642.175824175825, 8897.42275810098], [18577.49564986632, 4600.097832262224, 18722.923076923078, 4387.490580256216], [8843.394453082685, 4918.723386149856, 8636.637362637362, 4265.04898266767], [13319.232246973388, 5185.3204143459025, 13741.032967032967, 4754.815373021854], [13775.819675244233, 7122.8355237843425, 13986.043956043955, 6346.556141672946], [13764.048148995922, 8567.456006825305, 13373.516483516483, 8387.24943481537], [17642.87029787584, 12099.492330749195, 17844.96703296703, 11815.614167294649], [9006.10715488474, 7317.742968005086, 9269.582417582418, 6999.577995478523], [7492.261684386127, 7287.180590477063, 7534.087912087911, 6530.218538055764], [4815.927422402365, 12095.77899302062, 4655.208791208791, 11897.241899020346], [6448.390580922742, 12146.676635889504, 6594.87912087912, 11693.172569706107], [16020.622341906477, 12144.074481308266, 16089.054945054944, 11611.544837980407], [15981.906299280372, 15928.774723221493, 15599.032967032965, 15243.978899773927], [10612.448904811394, 10135.931176181093, 10494.637362637364, 9652.479276563676], [12604.079640807815, 12895.781712544585, 12128.043956043955, 12244.15975885456], [11201.268242261673, 8423.238397951985, 11107.164835164835, 7917.889977392616], [11253.940308522306, 14148.747217762924, 11311.34065934066, 13795.086661642803], [15840.549878633688, 19081.31598304239, 15884.879120879119, 19019.26149208741], [6578.1332560311375, 18802.118152449624, 6737.802197802199, 18835.599095704598], [20942.0125556098, 17356.380470116448, 20846.351648351643, 17366.29992464205], [5911.643690724094, 18861.763496034648, 6206.945054945055, 19060.07535795026]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s019_thumbnail_FinalSegmentation.png","nr":19,"width":22986,"height":26731,"anchoring":[4.8375423350638584, 459.21023354420436, 193.92933971022507, 447.00570420732384, 0.0, 0.0, 0.0, -482.14105238810987, 16.83673756269681],"markers":[[9133.910526315787, 644.6058779201203, 10041.252631578946, 1067.6284853051998], [14325.203571428574, 639.5698944988685, 14537.636842105265, 1107.9163526752072], [6499.949767801856, 1165.0895762223493, 6996.615789473684, 1269.0678221552375], [3904.282157344042, 4882.104150874944, 4032.6315789473674, 4854.688018085908], [18211.36853390512, 3202.772075425813, 18832.389473684212, 3384.1808590806336], [19918.860884468297, 19140.633754880226, 19961.526315789473, 18673.426525998493], [16849.22580662142, 18562.990863745297, 16816.073684210525, 18532.41899020347], [16446.882885061055, 13772.908216635757, 16553.95263157895, 13476.291635267518], [16551.73834349012, 15924.74912436528, 16473.3, 15389.96533534288], [6594.844686374072, 15790.056657642857, 6653.842105263157, 15269.101733232857], [6191.940002436451, 18465.026105230943, 6089.273684210527, 18471.987189148458], [8400.462574750403, 5957.069690942295, 8690.32105263158, 5358.286360211001], [14704.3007329481, 6062.512216919277, 15324.000000000002, 5438.862094951018], [18343.316046390722, 11952.01787197755, 18872.71578947369, 11542.474001507157], [14127.31380346991, 8588.850808294037, 14094.047368421054, 8198.581009796533], [9145.17808457654, 8141.131780580488, 9819.457894736843, 7775.558402411454], [6540.348384662652, 6710.548440544588, 6694.168421052631, 6244.619442351168], [4681.118101305409, 12177.403382002012, 4456.057894736841, 11804.34513941221]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s020_thumbnail_FinalSegmentation.png","nr":20,"width":23041,"height":27087,"anchoring":[-0.13054632747724781, 467.7701787348592, 187.50627168897336, 448.874876246791, 0.0, 0.0, 0.0, -486.84066443483243, 17.000851641523383],"markers":[[6863.276595744683, 1592.1522230595333, 6618.159574468085, 1428.854559155991], [1364.5296450003907, 16109.344452081454, 1674.9663120567375, 16166.468726450641], [6966.6718412843475, 17289.460152072243, 6985.835106382979, 17227.903541823667], [3681.574662964344, 5740.804540063589, 3452.0647163120566, 5592.944988696308], [11782.512039432975, 1643.0806425946187, 11908.60195035461, 1530.9155990957047], [19588.54705932815, 19921.779306389668, 19425.52393617021, 18983.353428786733], [22190.715572882367, 15517.196574945167, 21876.694148936174, 14941.736247174076], [8766.55363573581, 6090.344985025071, 8762.933510638297, 4980.578749058025], [5972.096086046018, 7886.893123332196, 5739.823581560283, 7123.860587792012], [4307.823995111291, 13260.069216927077, 4207.842198581561, 12675.981160512436], [13813.33142295315, 6513.310188980078, 13583.568262411347, 5368.4107008289375], [19056.472637725332, 13206.041658507518, 18914.863475177306, 12206.50037678975], [11730.054985863226, 16624.400450982725, 11949.454787234043, 16595.125094197443], [11804.763093214846, 19883.110715158946, 11990.307624113477, 19534.483044461194], [7235.627477967984, 25680.40781033155, 7210.525709219857, 25004.954785229842], [3419.5709729970113, 20894.008265657994, 3227.3741134751776, 21044.986435568957], [19748.280747271012, 22565.472618914024, 20140.448581560282, 22228.89449886963], [15756.615038126676, 25709.68521343916, 16218.576241134751, 24780.42049736247], [11831.573363125739, 25930.719885043192, 12010.734042553191, 25821.443104747552]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s021_thumbnail_FinalSegmentation.png","nr":21,"width":22951,"height":26604,"anchoring":[1.533850734932571, 467.3995894171459, 181.3950648329062, 447.9180058898097, 0.0, 0.0, 0.0, -493.73953888278226, 17.24176566032099],"markers":[[1163.5996503496508, 12650.432554634515, 862.6687062937062, 12630.384325546343], [3534.8692365847955, 19078.157696206556, 3691.4195804195806, 19005.72117558402], [6707.4895175380625, 17363.473214648784, 6580.356643356644, 16880.608892238135], [6132.819035025495, 16151.762956074963, 5677.56381118881, 15537.37754333082], [9489.204613078213, 1478.400200868316, 9409.107517482518, 1543.7136397889979], [16769.82646255449, 16459.842090601473, 16972.505244755244, 16640.03014318011], [19688.42695313951, 19408.830492164318, 20021.938811188807, 19105.962321024872], [17427.963113547572, 18451.704475306713, 17634.55332167832, 18644.85305199699], [21972.109810336413, 15956.37402454241, 21626.903846153844, 15517.329314242654], [21303.683965385946, 9098.256443887749, 21346.034965034964, 8801.172569706105], [18090.009814825535, 3049.4271276457525, 18196.291083916083, 2766.655614167294], [9097.45405705432, 5473.275856612494, 9108.176573426575, 4891.767897513188], [14596.644173716959, 5436.182337560026, 14625.24388111888, 4671.237377543332], [17289.967313735444, 16057.472716424876, 17233.312062937068, 15958.390354182367], [9484.600438424452, 13178.867530076042, 9328.859265734263, 12850.914845516201], [11636.66575568113, 17933.83607262823, 11535.686188811187, 17742.68274302939], [11665.720257903253, 19175.919816189085, 11575.810314685315, 19146.05877920121], [3451.2144254737614, 21520.003995942752, 3410.5506993006993, 21652.08741522231], [19823.7316449522, 21593.124509056626, 19941.690559440558, 22073.100226073853], [2295.189202583514, 18059.881858076114, 2246.951048951049, 18063.454408440088]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s022_thumbnail_FinalSegmentation.png","nr":22,"width":23233,"height":26665,"anchoring":[-2.149437248093818, 463.9560541585894, 175.39116760874995, 454.22785247886446, 0.0, 0.0, 0.0, -492.48455473990913, 17.19794064572364],"markers":[[9486.138408304498, 1507.064807837227, 10149.364186851213, 1647.7241899020346], [4424.406831428898, 4159.505345363081, 4521.993944636677, 4119.310474755087], [1848.9462087461125, 10011.669443542176, 1728.4065743944636, 10027.004521477014], [1507.7057560238236, 16386.590112218277, 1949.4818339100345, 16356.676714393368], [4930.139284884424, 18912.621776862063, 5064.6332179930805, 18788.074604370762], [22084.843230387716, 10961.140929786952, 22449.187716262975, 10850.866616428035], [17050.503196337067, 16374.210679542024, 17464.945501730108, 16437.053504144686], [19910.356464122367, 5429.194819970073, 20580.096885813153, 5224.49133383572], [16264.9605256272, 1158.3502596373573, 17042.89273356401, 1064.9924642049734], [17747.129555681702, 16052.128405788768, 18027.68252595156, 15854.321778447627], [6020.076650355699, 16091.94202629034, 6290.596020761246, 15452.437829691033], [11712.318992186427, 6656.553134795167, 12299.823529411764, 5646.469480030143], [16572.42613858802, 5426.860086326263, 17505.14100346021, 4762.324792765637], [7794.736002336605, 4911.337360242059, 7978.807093425606, 4280.064054257723], [11850.604765533119, 18090.506310214932, 11978.259515570935, 17883.835719668423], [17440.291512318534, 18204.99788005998, 17686.02076124568, 18366.096458176336], [4797.374008223291, 19471.497553767145, 4341.114186851211, 19571.74830444612], [6978.961743367356, 18606.951318086605, 6994.017301038061, 18928.733986435567], [3854.1950365830917, 19677.694637893917, 3376.422145328719, 19511.465712132627], [2770.1941205783933, 18574.207351356996, 2853.8806228373705, 18305.813865862852], [11871.875915698347, 25132.415553749575, 11938.064013840833, 25539.72494348154], [6969.323280929912, 24695.588408859217, 7014.115051903113, 24615.39186134137], [16871.97220165145, 24637.044246992635, 17002.697231833914, 24595.29766390354]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s023_thumbnail_FinalSegmentation.png","nr":23,"width":23828,"height":26922,"anchoring":[-10.020069884450379, 465.56487540421097, 169.21083819851816, 466.6875895462161, 0.0, 0.0, 0.0, -494.82109037555773, 17.279534272958756],"markers":[[9884.357751277683, 1907.0595327807082, 9579.911413969334, 2028.7867370007536], [14447.154035091953, 1900.5032388100237, 14511.942078364567, 1947.6352675207236], [4722.744038490333, 4352.246658564047, 4323.137989778535, 4219.876412961567], [3937.856643044062, 19327.375986154904, 3612.763202725724, 20064.70082893745], [2211.5347544022943, 9952.70323515934, 1745.4923339011925, 10346.812358703844], [20263.110410105448, 19374.284828537275, 20174.64395229983, 19090.88319517709], [17498.533869693547, 18028.29840711598, 17414.330494037484, 18076.489826676712], [6444.173351263842, 16138.986533076197, 6231.001703577514, 16331.733232856066], [18147.913626179386, 16172.425290793293, 18145.00170357751, 15723.09721175584], [12208.199884438935, 6536.082861327906, 11934.296422487223, 5863.193669932178], [16745.530895230186, 5161.472332912599, 17028.698466780243, 4787.936699321778], [19069.797869997492, 3200.0046887131784, 19119.229982964225, 3022.892238131122], [6965.40763531876, 17986.604012988253, 6799.301533219761, 18664.837980406934], [1463.7239208857736, 14344.583807136985, 1278.6746166950593, 14688.415975885457], [12320.898495484753, 19211.204863213898, 12319.928449744462, 19395.2012057272], [12053.115921044293, 25274.73418327574, 12056.074957410565, 25461.27354935946], [17536.656763837345, 24829.716624058798, 17434.626916524703, 24162.850037678978], [7001.070018890258, 24688.55973697738, 6961.672913117548, 24710.622456669174], [2648.2460253513573, 17554.95465331544, 2212.3100511073258, 18015.626224566695]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s024_thumbnail_FinalSegmentation.png","nr":24,"width":23363,"height":27087,"anchoring":[-3.469597431456492, 462.0210672943215, 163.2104425838397, 458.39101692815717, 0.0, 0.0, 0.0, -495.428905883691, 17.30075965948472],"markers":[[9455.479895104894, 1939.1597588545596, 9435.057692307691, 2306.579502637528], [4279.698643436716, 4386.5990784470505, 3982.329545454546, 4572.33458929917], [3616.2990039908586, 19191.61054038613, 3369.663461538462, 19901.90278824416], [6601.714325187433, 17616.68109041016, 6759.749125874126, 18350.57498116051], [17021.574527317214, 17812.979873933444, 17236.339160839158, 18575.109269027886], [19681.012594476277, 19352.928832789654, 20115.869755244756, 19473.24642049736], [22146.441231706187, 15768.84465447378, 22096.82342657343, 15819.461190655615], [19853.18502240582, 5103.751014588506, 20013.758741258738, 5041.815373021853], [8994.337008085686, 4751.4273347953485, 8965.347027972028, 4531.510173323285], [6122.391388701003, 5876.378425188099, 5738.638986013986, 5715.418236623965], [17416.94997213325, 5973.21946078234, 17624.361013986014, 5572.532780708364], [8061.317939908545, 9920.298400259804, 8168.881118881119, 9634.562170308966], [6458.984869873607, 12501.508639158656, 6167.505244755243, 12451.446872645061], [11846.12844779123, 18818.899622030425, 11865.299825174825, 18840.46797287114], [11836.99403193872, 25281.85643112002, 11865.299825174825, 26005.152976639038], [20278.727042636117, 21682.765260588123, 19993.33653846154, 21759.413715146948], [3350.619734212691, 21364.274957478923, 3798.5297202797206, 22086.009042954032], [6096.971132697878, 24747.17466186086, 6412.5716783216785, 24902.893745290126], [17540.612481929405, 24640.01522404212, 17869.427447552443, 24290.527505651848], [14124.719191064738, 25175.41768943353, 14397.652972027972, 25658.14544084401], [11823.922324035982, 19317.771566324504, 11865.299825174825, 19799.841748304447], [11767.259435228865, 6091.678624638322, 11742.766608391608, 5531.708364732479], [6819.858909139876, 10683.918782427623, 6759.749125874126, 10695.99698568199], [16523.92687251549, 10361.20232400151, 16582.828671328676, 10491.87490580256], [17742.914525127384, 16235.004098133386, 17726.472027972028, 16411.41522230595]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s025_thumbnail_FinalSegmentation.png","nr":25,"width":23315,"height":27544,"anchoring":[-2.800371159073052, 469.81456218377, 156.81413959825787, 458.2583414856054, 0.0, 0.0, 0.0, -501.32180180359165, 17.506544131883867],"markers":[[9446.41585040071, 2532.3044461190652, 9010.427426536064, 2947.4363225320267], [13813.342315287082, 2561.18183385307, 14013.913624220839, 2719.1137905048977], [4983.614127843604, 3955.7554032395233, 4442.92965271594, 4047.535795026375], [3096.657422932142, 19516.04354942637, 2698.975957257346, 20154.652599849283], [6471.557295172977, 18244.08579442685, 6394.496883348175, 18971.526752072346], [19853.46920771595, 5630.7462638950765, 20096.990204808546, 5542.010550113036], [22302.449677330987, 15182.779942901401, 22463.784505788062, 15090.043707611154], [19572.852945755345, 19645.20108105473, 19661.0017809439, 19490.44159758855], [16998.70629075742, 17967.129530193924, 16941.264470169186, 18265.802562170305], [9513.864536275765, 4975.196451680204, 9384.13178984862, 4421.154483798042], [6237.822084376867, 6097.248130598696, 5709.372217275155, 5708.063300678222], [17744.35246163565, 6474.141969866857, 18020.854853072124, 6185.464958553126], [11794.928149122494, 13947.886176331886, 11584.835262689223, 14052.21401657875], [11791.042349801188, 20009.36782103161, 11626.357969723953, 20299.948756593818], [11386.630244298343, 25819.242748744713, 11024.27871772039, 26091.038432554637], [4062.136339433073, 24147.356345280907, 3944.657168299198, 23579.49058025622], [18446.475990331513, 24808.27802729504, 18498.365983971504, 23973.865862848535], [19772.51315079974, 21340.244962387053, 20138.512911843278, 20735.837226827432], [5921.702404380969, 16676.12593029074, 5605.5654496883335, 17020.406932931422], [17609.665993568397, 16836.229407543393, 17709.434550311667, 16709.058025621707]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s026_thumbnail_FinalSegmentation.png","nr":26,"width":23216,"height":26826,"anchoring":[2.1811673689563804, 463.80585668547405, 150.89982009780405, 457.11815527527136, 0.0, 0.0, 0.0, -485.8521730165725, 16.966332758491564],"markers":[[9080.125435540069, 2991.8975131876414, 9302.578397212541, 3214.268274302939], [13754.146612292521, 3075.2676626532075, 14358.327526132403, 3032.3285606631503], [4279.816536095574, 4338.881634528101, 4246.829268292683, 4346.337603617181], [2846.017888518352, 19219.5404589112, 2912.11149825784, 19790.997739261486], [1136.30146551807, 12178.440033634271, 1152.710801393728, 12472.978146194426], [6259.812441143327, 17275.869764969753, 6289.351916376307, 17344.91936699322], [20404.72088321281, 6993.059987208323, 21011.69337979094, 6792.415975885456], [16650.696053996933, 17386.815455066506, 16542.411149825784, 17486.428033157496], [21342.925417067545, 16688.27566241014, 21274.592334494773, 16657.59155990957], [21618.6026711228, 10836.56060684676, 22043.066202090587, 10774.874152223061], [22005.24449453778, 14078.270849048879, 21941.951219512197, 13948.711379050492], [18621.912333849734, 13353.622918342051, 18928.724738675963, 13160.305953278074], [19906.038751939832, 16587.55295321329, 20081.435540069688, 16617.160512434057], [11558.120789371853, 19720.39861471433, 11749.560975609755, 19346.2562170309], [4856.47282157606, 24430.430233216943, 4914.188153310105, 23510.65410700829], [11698.751124165716, 25602.275328276755, 11790.006968641113, 25390.69781461944], [18122.189196188407, 24461.36296560137, 18322.034843205576, 24096.90429540316], [19164.95768493973, 20938.536966191044, 19960.097560975606, 20801.77392614921], [3852.225915718458, 20948.416317699488, 3336.7944250871074, 20518.756593820646], [3174.5291512794274, 22445.235848693577, 3215.4564459930316, 21994.489826676716], [11503.378360486538, 13738.74925457903, 11668.668989547039, 13301.81461944235], [15906.92583136479, 10297.691752828425, 16461.519163763067, 9925.822155237378], [6826.545096041484, 10517.499469286711, 6754.480836236935, 10148.192916352675], [7600.991001862914, 10431.52618776854, 7583.623693379791, 10148.192916352673], [11492.903082161763, 5697.085418678995, 11628.222996515682, 5599.70007535795], [8444.516350900274, 4843.34857174639, 8574.550522648084, 4649.570459683496]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s027_thumbnail_FinalSegmentation.png","nr":27,"width":23613,"height":27718,"anchoring":[-5.090571066075142, 477.40436870833867, 144.3008014335799, 465.75444623100566, 0.0, 0.0, 0.0, -499.5260529394012, 17.443835195971587],"markers":[[8985.477876106197, 4240.206480783723, 8797.409734513274, 4031.329314242653], [14586.415583618631, 4066.9045007581626, 14899.176106194693, 3843.339864355689], [7805.110850215578, 2544.8500835232976, 7710.793805309734, 2736.290881688018], [5400.607039168742, 4282.033661532478, 5015.150442477877, 4240.206480783722], [3647.9310325554998, 20072.43940782346, 3447.9159292035392, 20407.299171062543], [6710.504288046184, 18175.290931432464, 6895.831858407079, 18443.853805576488], [16957.727460900132, 18156.918602285667, 16779.857522123893, 18255.864355689526], [19462.33094398343, 20138.56546964875, 19747.15486725664, 20135.758854559153], [21756.816685197322, 17422.173396613456, 21586.043362831857, 17524.79427279578], [21576.563745610827, 9303.213141279637, 21836.800884955752, 9190.595327807083], [22240.903801537213, 14634.230530814122, 22129.35132743363, 14537.85079125848], [11866.925508892462, 6484.373309246484, 11806.5, 6099.2132629992475], [7026.419961676203, 6107.870475953937, 6770.453097345133, 5744.1220798794275], [4059.481948101251, 14109.323708476397, 3573.2946902654867, 14078.321024868123], [6076.995853594606, 17202.560688331498, 5683.837168141593, 16960.82592313489], [17564.875028900355, 17248.23786604691, 17782.88761061947, 16981.713639789], [6865.223321931465, 10731.336334615797, 6436.109734513274, 10381.195177091184], [16756.77609225129, 10578.563723708308, 16947.029203539823, 10234.98116051243], [11878.917025190496, 20691.88899216005, 12036.361061946904, 20574.4009042954], [4780.634186140687, 20867.41163113854, 4534.531858407079, 20595.288620949512], [5252.428024900509, 19516.882866986838, 5286.804424778761, 19592.678221552374], [6452.46594334738, 26306.028014979653, 6331.6274336283195, 25420.35116804823], [4231.125886250133, 21776.30291239895, 3803.1557522123894, 21430.797287113786], [11940.005420919097, 26458.656064023842, 11890.085840707965, 26443.84928409947], [17717.187551945215, 26075.603288780643, 17803.78407079646, 25253.249434815374], [19387.951584184593, 21741.644190431452, 20185.980530973455, 21347.24642049736]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s028_thumbnail_FinalSegmentation.png","nr":28,"width":23087,"height":26440,"anchoring":[11.588227610739636, 462.8864241474554, 138.68363110944549, 444.6023670769573, 0.0, 0.0, 0.0, -455.5258154668348, 15.907312953460696],"markers":[[7954.847150259067, 3865.380557648833, 8832.073402417964, 3825.531273549359], [6800.732316744615, 2221.496339209645, 7356.738341968912, 2550.35418236624], [1858.9404452433077, 7660.004506903925, 2332.6243523316066, 7910.08289374529], [695.2951319236558, 11894.07898715743, 1335.7763385146807, 12293.504144687266], [4004.4697543820776, 19910.738484068705, 4126.950777202072, 20024.265259984928], [5933.812156360429, 18107.545802262415, 6339.953367875646, 18370.519969856814], [18983.892349174315, 20034.93702922519, 20375.573402417966, 19785.169555388096], [16757.700560322563, 18468.896804467713, 17763.831606217616, 18729.163526752076], [21963.167548326837, 14140.735257204606, 22309.4585492228, 13867.55086661643], [21064.84893680201, 8765.014975502883, 21631.601899827292, 8527.746797287113], [11203.071440859589, 5703.564435032009, 12061.8609671848, 5220.2562170308975], [5971.126747589322, 5731.019684839696, 6599.133851468048, 5519.125847776941], [3960.271232270903, 14037.560971576186, 4286.44645941278, 13827.701582516955], [18236.028641923214, 14018.7190426174, 19019.86010362694, 13787.852298417485], [16693.1838067275, 15935.579981754707, 17704.0207253886, 15740.467219291635], [5568.953230802288, 17233.774215995803, 5602.285837651124, 17055.49359457423], [6158.961718164763, 10259.73045044396, 6499.449050086356, 9822.84853051997], [4769.736174287018, 12584.768882236338, 5044.050949913645, 12193.88093443858]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s029_thumbnail_FinalSegmentation.png","nr":29,"width":23571,"height":27117,"anchoring":[2.960727576172758, 463.7482339041434, 132.52938791651255, 455.3977950629143, 0.0, 0.0, 0.0, -465.82195953953976, 16.26686224884054],"markers":[[7645.753686036427, 2431.743029389601, 7543.537727666957, 3146.9615674453653], [6197.29476434668, 18063.766421520068, 6787.139635732871, 18207.420497362473], [1358.7929190980549, 14895.883809152645, 1267.4778837814397, 14978.719668425018], [1409.9917686577137, 18478.717106802877, 2003.4327840416308, 19106.552373775434], [17607.82969433553, 3172.0115982037673, 17826.463139635733, 3841.7452901281085], [20114.397759165433, 20199.00716327291, 20320.532523850823, 20005.684250188395], [22043.11414238069, 16906.1707707529, 21690.22636600173, 16633.939713639793], [17092.867742691327, 17955.297205473697, 16947.405897658282, 17962.202712886206], [14718.482666021731, 9158.88975175484, 14862.200346921078, 8991.318764129615], [18330.09534692693, 12765.892583056146, 18419.315698178667, 12403.932931424268], [8709.799196127487, 9130.436156477557, 8483.924544666088, 8725.66616428033], [5118.013920600887, 12850.073017800123, 5253.900260190806, 12465.237377543333], [6313.113752469923, 13551.294385693163, 5744.536860364267, 13303.064807837225], [17018.829167940657, 13439.826294757904, 17417.599306157845, 13262.195177091182], [11723.508677486407, 21456.502674150113, 11754.835212489157, 20720.90278824416], [11719.777676764246, 14491.516829155684, 11652.619254119685, 14386.110022607387]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s030_thumbnail_FinalSegmentation.png","nr":30,"width":22700,"height":26812,"anchoring":[10.404305699277558, 470.04531709904353, 126.18534130781234, 439.9900614134258, 2.1549828943534521E-7, 0.0, 2.313958700441622E-7, -472.4486831812653, 16.498271567524004],"markers":[[6751.380231522708, 3172.1808590806345, 6650.311665182547, 3455.0504898266763], [11294.476411237889, 5727.9305566053135, 11319.679430097955, 6000.8771665410695], [2690.0760108138547, 19833.154454321033, 3598.0409617097057, 20588.86812358704], [708.0959307091111, 11972.318191694958, 768.1211041852182, 12264.418990203467], [15587.695722384888, 3186.971355903497, 16069.902048085487, 3394.435568952525], [16727.41919189231, 17689.90922561283, 16797.59572573464, 17477.302185380562], [16463.40951802101, 16436.17427762538, 16878.450578806773, 15901.3142426526], [17717.191277793077, 16236.111705266556, 18354.05164737311, 15881.109269027882], [16758.73443243813, 17204.828392966112, 17181.65627782725, 16770.128108515444], [4954.807535240636, 16146.59645696294, 4972.573463935885, 16224.593820648079], [20753.044607894968, 8510.651014681605, 20840.33837934105, 8385.064054257724], [17341.23446925747, 3815.413532446233, 17606.144256455922, 4101.6096458176335], [7671.0050822274425, 9447.581771754945, 7357.791629563668, 9152.853051996986], [15172.117634801229, 9430.028075369915, 15321.9946571683, 9112.44310474755], [11277.060876388932, 21366.646418845765, 11663.312555654496, 21174.812358703843], [11218.541093184542, 14187.511271639596, 11279.252003561887, 14103.071590052752]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s031_thumbnail_FinalSegmentation.png","nr":31,"width":22419,"height":26109,"anchoring":[12.165988606802955, 450.4818219176076, 120.74436500456693, 435.9461186603808, 0.0, 0.0, 0.0, -445.87265889148915, 15.570217277608785],"markers":[[6180.47936786655, 2400.3752825923134, 6082.064091308165, 2813.5546345139414], [7853.282054491032, 382.77805238648534, 8227.51712028095, 885.3843255463452], [1651.7337755354943, 18631.448473550805, 2047.0377524143983, 18730.79728711379], [1175.256135430285, 8988.315451242044, 1121.9341527655838, 8991.569706103995], [5650.253868378022, 17233.454488011394, 6121.430201931519, 16901.00301431801], [16529.050200201193, 17358.01325092042, 16238.520632133452, 16999.37905048983], [16059.810306351183, 2515.7557843365375, 16258.203687445128, 3069.3323285606625], [18163.4018776555, 13705.046681176731, 18029.67866549605, 13221.739261492088], [3726.10959859743, 13782.259867743007, 3641.365232660228, 13379.140919366992], [6177.245648540769, 9255.908662335476, 5904.916593503073, 8853.84325546345], [6678.944094478833, 11773.712701923472, 6200.162423178227, 11214.868123587037], [13740.246892162595, 9006.88779330838, 14014.33538191396, 8637.415975885457], [15495.448625830692, 11889.357368512296, 15746.444249341526, 11411.62019593067], [19166.601237549887, 17230.334163077154, 19348.443371378402, 17137.105501130372], [11100.677851531102, 13679.93631749421, 11061.877085162423, 13379.140919366995], [11105.203348013125, 20867.476339439207, 10943.77875329236, 20226.113036925395], [4959.307301481211, 15676.622221055404, 4507.419666374011, 15543.41371514695], [6083.441236879065, 16073.336925224783, 6121.430201931518, 15622.114544084401], [17315.267475090153, 15716.550046006563, 17734.43283582089, 15523.738507912583], [16107.763556598855, 16043.685959430495, 16317.252853380158, 15523.738507912583], [16681.159320137594, 16878.74232984734, 16671.547848990347, 16487.823662396382], [16731.69910118431, 17920.836072392834, 16632.181738366988, 17707.6865109269]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s032_thumbnail_FinalSegmentation.png","nr":32,"width":23781,"height":27272,"anchoring":[-2.6499893344471275, 461.0617127156128, 114.25075893094753, 463.9185778995499, 0.0, 0.0, 0.0, -464.3581443726054, 16.215744693751848],"markers":[[7070.582541054451, 2774.4687264506406, 7276.122731201382, 2918.3300678221553], [1820.1968837940472, 10437.956561925479, 1685.4295592048402, 10481.32629992464], [2929.9053205631203, 19418.373682069203, 2240.388072601556, 19544.590806330063], [6429.873812445829, 18218.79294105905, 6001.773552290406, 18393.70007535795], [19405.657325214706, 19977.957839310024, 20574.573033707864, 19914.51996985681], [17289.346199421652, 18088.15970008825, 17799.78046672428, 18414.251695553878], [20666.998119561937, 7562.398306526162, 20718.45116681072, 7706.857573474002], [14310.17643322062, 451.2303854667516, 15127.757994814174, 965.9261492087417], [8989.444617025107, 9020.31984419517, 8776.566119273986, 8487.819140919368], [14780.346813456381, 9027.277314248598, 14819.447709593776, 8672.783722682743], [10655.334967043938, 10071.476681265036, 10441.441659464132, 9597.606631499622], [7767.892656497712, 12360.404869842, 7296.676750216076, 12022.697814619441], [4201.4531004751625, 14602.595178801654, 3658.615384615385, 14488.892238131124], [5974.850140790769, 16416.223755583753, 4912.410544511668, 16441.296156744538], [16771.06866642991, 16814.302057830166, 17676.45635263613, 16934.53504144687], [21359.61067405627, 19085.506874742656, 22239.44857389801, 19133.558402411458], [11849.872687952937, 21616.887268094753, 11798.00691443388, 20983.20422004522]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s033_thumbnail_FinalSegmentation.png","nr":33,"width":23977,"height":27020,"anchoring":[-7.796162230466734, 457.3582188743518, 108.25593966400218, 469.24224177324845, 0.0, 0.0, 0.0, -458.7045917315383, 16.018318273323548],"markers":[[7761.4587935429045, 2585.9382064807833, 7007.72132540357, 2504.4913338357196], [4636.9178607226895, 5309.720437836708, 3850.172472387426, 5131.152976639036], [2595.571301856308, 9126.629138080792, 1772.301614273577, 8959.155990957046], [6652.63845608781, 17710.55834894248, 6478.067969413763, 17572.16277317257], [18021.042929541858, 17488.25084402263, 17885.986406117252, 17226.01356443105], [21549.345411904782, 9008.824513656102, 21328.733220050974, 8796.262245666916], [16184.752141662224, 2137.1196988729325, 15502.546304163128, 2178.703843255464], [11942.795477030562, 8099.130666601333, 11224.576890399321, 7330.218538055766], [4167.124825366605, 15003.617551118392, 3198.2914188615127, 14802.96910324039], [19759.561153082162, 14728.953054038908, 20412.025488530162, 14110.670685757346], [16796.271106770615, 16247.935169755654, 17132.248937977914, 15474.905802562173], [9185.313280061066, 10001.004150293626, 8189.255734919285, 9101.688018085908], [14790.230295089763, 9926.361192539065, 14300.640611724722, 8979.517709118312], [4208.834769414668, 13895.758957677173, 3585.345794392523, 13642.351168048228], [19592.813957689497, 11427.80517331084, 19332.347493627865, 10995.32780708365], [19423.854754283777, 19600.896048976818, 20045.34239592183, 18468.07837226828], [6441.361684359793, 16693.213452659355, 5561.360237892949, 16472.629992464208], [7269.176696114803, 17024.3817639119, 6641.038232795242, 16615.162019593066], [12084.074117946988, 13814.815524116084, 11489.403568394222, 13174.03165033911], [12141.25919065476, 21313.78954642747, 11794.972812234495, 20544.973624717408], [12154.42615378835, 25940.45072345429, 12100.542056074766, 24922.743029389596]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s034_thumbnail_FinalSegmentation.png","nr":34,"width":22560,"height":26799,"anchoring":[5.881556034925552, 452.871994816069, 102.28845394215612, 442.9222736322187, 0.0, 0.0, 0.0, -453.60116561582595, 15.840102695630486],"markers":[[6947.752909579231, 2383.030896759608, 7190.116383169204, 2746.544084400905], [4842.126308499527, 4324.151420659293, 4766.481647269472, 4402.54860587792], [2576.1153213167618, 7620.797683659512, 2363.0438675022388, 7613.581763376036], [15649.488916716651, 2297.5224759166717, 15693.034914950762, 2665.763376036172], [19890.801328508147, 6971.43073551479, 20257.547000895258, 7068.311981914091], [18620.89170745774, 19102.944860871703, 18863.95702775291, 18821.905048982666], [16944.171145257817, 13757.126192204254, 17429.973142345567, 13086.47475508666], [3849.677754356383, 14587.477158162856, 3655.649059982095, 14096.23360964582], [3370.8076873528953, 16619.439217838986, 2867.9677708146824, 16277.312735493597], [16632.99326082072, 16045.032972924068, 17147.215756490597, 15307.944235116805], [7990.149829474121, 4839.46976109053, 7917.206803939123, 4846.84250188395], [14472.758199306121, 4477.434042817805, 14440.823634735902, 4442.938960060286], [8726.736227366584, 10172.96034275481, 8664.49418084154, 9754.270535041447], [5774.750134836162, 17780.94183517972, 5735.935541629366, 17650.584777694046], [16870.56329286354, 17537.906329366175, 16945.246195165622, 17266.876412961567], [11327.837492854533, 23330.404316836426, 11532.461951656222, 22436.841748304447], [16620.46072946153, 17029.271329741583, 16945.246195165622, 16297.507912584777], [19190.186512417033, 15211.986781822414, 19833.410922112806, 14883.845516201958]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s035_thumbnail_FinalSegmentation.png","nr":35,"width":23835,"height":27080,"anchoring":[-4.618248821575946, 451.1648424494024, 96.22392089106084, 469.44567138030186, 0.0, 0.0, 0.0, -456.99158902195705, 15.95849889697599],"markers":[[7264.777397260272, 2612.087415222306, 7468.844178082192, 3020.226073850791], [3767.5766008216897, 6147.575865227269, 3367.1018835616433, 6162.893745290129], [2523.3914828414327, 10517.75787722056, 1775.3809931506848, 10550.384325546343], [2655.9649116470723, 18142.453232897587, 1999.8544520547948, 18305.018839487562], [4415.145416450545, 14347.471017924618, 3632.3886986301372, 14346.07385079126], [18858.151475122402, 18983.209540047486, 19386.344178082196, 18815.19216277317], [20369.22930444618, 7630.520633107157, 20304.644691780817, 7693.413715146949], [21535.84285817475, 17310.463158824812, 22222.87243150685, 17345.89299171062], [16651.987428251774, 2834.9483843190073, 16162.08904109589, 3367.1439336850044], [13850.841912769443, 622.029778605483, 13570.440924657534, 959.1258477769404], [10267.317442631975, 7562.57884809941, 10203.33904109589, 7570.972117558402], [13299.45420539349, 7451.061609387323, 12876.613869863013, 7305.681989449887], [6879.605816092394, 9925.791081475816, 6081.190068493152, 9632.072343632253], [11837.332231080889, 9316.365776303726, 11488.959760273972, 8856.60889223813], [17315.73541730722, 17504.74638856391, 17590.55650684932, 17590.77618688772], [16914.019024676792, 16014.025127874382, 17427.303082191782, 15958.221552373776], [11816.044114575903, 24790.508113464402, 11631.806506849316, 23998.55312735493], [6361.9417824495495, 17516.039881439523, 6224.036815068494, 17345.89299171062], [9526.991457128903, 3707.158550610824, 9346.258561643835, 4040.5727204220047], [14101.214840471437, 3524.881661704081, 13998.981164383564, 3714.0617935192163], [11829.507517016287, 13019.670930964186, 11529.773116438355, 12672.70535041447]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s036_thumbnail_FinalSegmentation.png","nr":36,"width":24176,"height":26764,"anchoring":[-7.385338003795141, 449.3974035711118, 90.1614930942534, 477.6744417602142, 0.0, 0.0, 0.0, -450.3090363796465, 15.725139002542159],"markers":[[5166.15692821369, 18736.81688018086, 4015.8797996661106, 19180.53051996986], [2573.2161967980924, 17073.333584211323, 1352.0801335559265, 17304.831951770917], [3407.651464261049, 8165.560046281478, 2583.078464106845, 8228.871137905051], [9226.472699468713, 826.6338821627041, 9444.380634390649, 1068.9464958553126], [4814.373489926842, 5251.050682461502, 4197.5025041736235, 5163.213262999246], [19516.282505893523, 18653.102474277002, 20846.250417362273, 18051.077618688767], [16329.653616053207, 16466.974923884478, 16951.452420701167, 16377.067068575734], [21295.015428164672, 11548.745600841989, 21794.7245409015, 11254.19140919367], [21713.319072253424, 15847.193284588106, 22743.198664440733, 15469.470987189146], [18353.169164241153, 4143.931891816572, 18323.71285475793, 4215.279577995479], [15339.067599609023, 2021.5683196673476, 15155.405676126878, 2077.386586284852], [5142.2949929093775, 14595.748860442889, 3753.5358931552582, 14219.005275056521], [16476.82323502453, 13752.85211448188, 16951.452420701167, 13492.92840994725], [19018.573622283264, 14716.684955653718, 20079.39899833055, 14118.161266013565], [7168.149841932246, 16207.577132306353, 6276.073455759599, 16598.923888470235], [11953.140688907828, 26564.088200355265, 11987.098497495826, 25634.547098718915], [8028.02905481168, 26708.909777162575, 7890.4974958263765, 25372.35267520724], [15641.602296214129, 26762.0061083896, 15982.797996661102, 25190.833458929916], [6093.996903135572, 20504.775252576917, 5549.58263772955, 20350.321024868124], [17107.47441515941, 18887.88204031112, 18021.008347245406, 18454.453654860583]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s037_thumbnail_FinalSegmentation.png","nr":37,"width":22730,"height":26720,"anchoring":[5.667086278378861, 446.21486887759033, 84.14848153389971, 450.5261604520476, 0.0, 0.0, 0.0, -448.2210880682546, 15.652226236476624],"markers":[[4030.1418439716317, 5658.116051243405, 3526.3741134751776, 5537.302185380558], [7499.869580608742, 2389.000112565591, 7536.36524822695, 2537.091183119819], [2650.3713916776333, 9477.577715831925, 1914.3173758865246, 9423.481537302185], [2527.419872594891, 17710.826819904636, 2015.0709219858159, 17960.99472494348], [6465.612518225675, 16354.048764594329, 6287.021276595745, 16551.499623210253], [6039.371277700058, 13780.66403182877, 5339.937943262412, 13511.01733232856], [18061.458908095272, 18350.176765631968, 18861.063829787232, 18061.67294649586], [15303.549717815642, 13573.723368173321, 15576.498226950354, 13088.16880180859], [20771.57501681136, 14290.952834856347, 21682.163120567373, 14115.086661642803], [19165.14591848729, 6845.465307782308, 19445.434397163124, 6564.22004521477], [12044.534082742599, 3979.753823096818, 11969.521276595744, 3765.365486058779], [14940.707314169173, 5237.9100284759525, 14790.620567375885, 4731.876412961567], [16992.346953707325, 3805.329123871457, 16684.78723404256, 3443.1951770911833], [11303.276179528442, 26591.807756274535, 11364.999999999998, 25713.217784476263], [7446.507089408559, 26688.11682676084, 7334.858156028369, 25552.13262999246], [15066.31038835357, 26579.37990726089, 15415.292553191492, 25310.504898266772], [15329.954542378879, 22909.386680791828, 15596.648936170212, 21746.49585531274]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s038_thumbnail_FinalSegmentation.png","nr":38,"width":22830,"height":26805,"anchoring":[2.299166654170108, 447.47308345618717, 77.9803955776963, 453.9365819121671, 0.0, 0.0, 0.0, -448.29501282807655, 15.654807746128887],"markers":[[7273.274336283186, 3070.35418236624, 7313.6814159292035, 3231.9517709118313], [3953.72640894271, 6378.639551025266, 3677.044247787611, 6585.101733232856], [1940.8652655637566, 15876.56401889351, 1434.4513274336282, 16139.559155990957], [12922.900547541805, 1243.1268541801778, 13697.999999999998, 1312.9804069329314], [12205.250970883964, 3971.9055766739148, 12708.026548672564, 3817.743029389601], [6640.815091677214, 8161.50632947241, 6929.8141592920365, 7211.292388847023], [11298.978721959415, 9229.88068291654, 11495.814159292035, 8685.870384325544], [5186.45446168437, 14907.740619231, 4121.522123893806, 14543.78296910324], [6794.291559496556, 16129.61581405009, 6343.91150442478, 16664.75131876413], [4308.127758933539, 18252.8508463767, 3980.0973451327427, 18361.525998492845], [16034.742008914465, 8110.077794848765, 15878.00751879699, 7323.457844183565], [16906.569758987735, 9264.647046464592, 16850.71428571429, 8181.675560298827], [18526.25993813489, 11568.341308133142, 18395.601503759397, 9926.71824973319], [16758.74694992877, 18668.31686071667, 17251.24060150376, 17421.819637139804], [7938.550370223718, 16374.472195545119, 7524.172932330827, 16163.10032017076], [11367.628187153032, 23913.63504567935, 11844.135338345863, 22885.80576307364], [5277.779575827106, 20398.236422722297, 5378.496240601504, 19081.04055496265], [15326.397259658846, 26715.266318766455, 16021.052631578947, 25117.171824973324], [7557.146552505087, 26798.208348953634, 7896.090225563909, 25288.815368196367], [20714.359277255324, 13168.542333705816, 20970.413533834588, 11957.833511205978]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s039_thumbnail_FinalSegmentation.png","nr":39,"width":22171,"height":26519,"anchoring":[9.477296062104642, 442.8010585754191, 72.01939816229492, 442.2205771751323, 0.0, 0.0, 0.0, -442.17435699222784, 15.441069721728478],"markers":[[9995.94229035167, 1059.1612660135647, 9915.974752028855, 1578.7498116051245], [4965.030158883688, 4630.536475718884, 4438.198376916142, 4716.265259984928], [3346.947365503464, 7327.729987768524, 2658.920649233544, 7314.207987942727], [2350.304816462195, 16754.42491852948, 1779.2777276825968, 16986.548605877917], [19022.105572822096, 17512.2546996701, 20031.868349864744, 17426.200452147703], [7540.25243590963, 26439.24191278641, 8096.713255184851, 25000.20271288621], [14937.56975841745, 26549.199593426423, 15373.759242560867, 25180.06028636021], [5505.199546124825, 18452.151916750223, 5517.760144274122, 18025.725697061036], [4996.227349860413, 17628.554202495496, 5137.914337240758, 17666.010550113042], [5038.523774623117, 9660.117088136725, 4438.198376916141, 9272.657121326301], [5452.057245904776, 15056.62793688157, 4918.00360685302, 14308.669178598342], [16962.06218450688, 9598.179741966978, 17432.923354373313, 9212.704596834968], [17255.63232903994, 14670.185758979631, 18412.52569882777, 13968.938206480783], [15913.233515009026, 14204.03177907896, 17113.05320108206, 13329.444611906556], [16498.357595426587, 16932.247208933382, 16613.256086564477, 16526.912584777692], [15223.94617463233, 15143.285163012397, 15613.661857529307, 14768.305199698569], [6788.095509260724, 15175.42594091659, 6717.273219116322, 15028.099472494348]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s040_thumbnail_FinalSegmentation.png","nr":40,"width":22375,"height":28600,"anchoring":[23.922779321361418, 425.22499947404594, 57.50901952479336, 419.7088298039976, 0.0, 0.0, 0.0, -456.9669088281341, 15.957637045564786],"markers":[[4311.175337186898, 5258.779201205727, 3750.722543352601, 5021.703089675961], [9807.694009904197, 1196.0595024891613, 9851.035645472062, 1250.0376789751322], [3851.643478367405, 16664.54418576279, 3621.387283236995, 17457.42275810098], [2000.9620980989507, 10383.000787863362, 1465.7996146435453, 10797.739261492088], [18585.076065948146, 16400.93288871971, 18904.503853564544, 16703.08967596082], [20474.336589083734, 13219.681339736824, 21124.759152215796, 13384.024114544087], [12026.310335371012, 1283.415675490473, 11963.511560693642, 1034.513941220799], [14923.183353414443, 13304.033258768179, 14744.219653179192, 13599.547852298418], [15405.514418574301, 4167.078564753107, 15757.34585741811, 3944.084400904295], [13182.455923194457, 15175.581540460187, 13149.084778420038, 17004.82290881688], [9067.028315688123, 15047.615760813813, 8708.574181117536, 17047.92765636775], [10678.578884888771, 14340.26808326592, 10885.717726396915, 14052.147701582518], [12170.925838282528, 14971.548327661687, 12200.62620423892, 16789.29917106255], [11089.706584598105, 26587.05712713636, 11036.608863198458, 27630.143180105504]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s041_thumbnail_FinalSegmentation.png","nr":41,"width":21014,"height":28773,"anchoring":[32.583227403631895, 424.002890977437, 52.92754837434297, 399.8737752840762, 0.0, 0.0, 0.0, -461.3757227124586, 16.111596228184585],"markers":[[8913.058823529413, 1886.398643556895, 8479.333333333336, 1279.2818387339864], [3517.576841927587, 16181.48581659583, 4489.058823529413, 16739.077618688774], [1816.705231283128, 9502.60819258589, 1734.9019607843138, 9648.820648078372], [3770.4027451590523, 5419.114040615551, 3209.568627450981, 4987.030896759608], [11280.092230189286, 1871.5991452771598, 11949.137254901958, 1366.0128108515448], [9869.237235802257, 3050.9696639235262, 9910.62745098039, 2645.2946495855313], [10064.172452911278, 4736.630520450919, 10170.862745098038, 4423.279577995479], [16951.65222730054, 16041.437959487434, 15939.411764705885, 16652.34664657121], [19373.191092368324, 14655.238667220929, 19452.58823529412, 15806.71966842502], [10844.123552658832, 13576.380553471166, 10843.137254901962, 13161.425018839487], [5851.705243239792, 13209.469368705446, 6505.882352941176, 13378.252449133382], [14919.850919581051, 13616.790504133256, 14182.823529411762, 13833.590052750566], [12062.669671483505, 15013.691350586392, 12339.490196078432, 16110.278070836475], [8425.894378262881, 15089.64912033978, 8913.058823529414, 16110.278070836475]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s042_thumbnail_FinalSegmentation.png","nr":42,"width":20930,"height":28983,"anchoring":[34.6795901064703, 411.9445491127965, 48.724486870963794, 403.9470800835049, 0.0, 0.0, 0.0, -466.3997232115502, 16.287038202061563],"markers":[[8629.801670146138, 1419.6646571213269, 8564.258872651357, 1070.2087415222309], [4057.5533155122775, 4787.0553153308465, 3364.530271398748, 4564.767897513188], [3443.6821486046747, 15120.432395835513, 3255.2922755741133, 15834.721175584024], [1136.731253352727, 11202.740738816632, 524.3423799582463, 11728.614167294649], [11202.681479841374, 1453.0468651409085, 11906.941544885178, 1070.2087415222306], [16181.450713199685, 14979.482595811147, 15839.509394572025, 15266.855312735493], [18636.75124800028, 14034.247393408868, 19029.258872651353, 15179.49133383572], [18914.999306254773, 11439.07694442175, 19640.991649269312, 12427.525998492842], [16744.420840413197, 5502.405607004917, 17499.92693110647, 5591.294649585531], [6253.481338136835, 11432.841404286664, 6139.175365344468, 12034.388093443858], [11343.755931981752, 14470.743128437425, 10967.494780793319, 16642.837980406934], [7279.156618955652, 14473.255225369689, 7253.402922755741, 16686.519969856818], [9954.774863797476, 12665.53249341917, 9984.352818371608, 12689.617935192164], [7767.830034039686, 11890.045687959315, 7843.288100208768, 11903.342125094196], [12854.864158713905, 11651.740792286206, 12518.674321503133, 11510.204220045212], [5967.42987183349, 25675.18634949461, 5680.375782881003, 27628.858327053505], [14323.959814671864, 25628.58016642895, 14113.549060542797, 27432.289374529013]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s043_thumbnail_FinalSegmentation.png","nr":43,"width":21593,"height":29858,"anchoring":[24.0026937026729, 413.9923709231799, 44.02882721795089, 422.5943171796859, 0.0, 0.0, 0.0, -482.18704116536514, 16.838343526282866],"markers":[[9141.56204379562, 1777.5297663903548, 8646.206465067778, 2610.043707611153], [3748.985656987542, 14797.502434333453, 3377.4244004171014, 16312.773172569707], [5446.775994672353, 13085.816809925507, 5403.879040667362, 14557.743782969103], [3810.4159054252445, 5903.75199811255, 3354.9082377476543, 5917.599095704596], [2288.588998674144, 9842.869517272818, 1486.0667361835242, 10822.681235870386], [11746.715881632448, 1863.757590012893, 12023.630865484882, 1350.022607385079], [16241.0313031753, 5474.003506658399, 17022.218978102188, 4725.079125847777], [18804.26116960594, 13701.074171842347, 20106.933263816478, 13612.727957799549], [17041.664173175606, 14999.12605245458, 17540.090719499483, 14422.741522230597], [13942.392583458985, 9815.224932146162, 14117.633993743484, 9720.162773172568], [12945.004045481506, 14604.127544636935, 12856.728884254431, 16447.775433308216], [7984.954812264699, 14762.692868719128, 8038.2700729927, 16717.779954785226], [5098.149020474701, 20792.25140698637, 5921.750782064651, 22275.373021853808], [15623.926927485003, 22734.33298599829, 16594.411887382696, 24660.412961567446], [6513.615897240824, 25537.098396153662, 7407.817518248176, 27270.456669178595]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s044_thumbnail_FinalSegmentation.png","nr":44,"width":17170,"height":27453,"anchoring":[57.853789441882554, 410.5834476838993, 39.52372134010682, 340.68507980125423, 0.0, 0.0, 0.0, -444.91706319811516, 15.53684713867188],"markers":[[6681.819277108436, 1965.3617181612663, 6578.385542168675, 910.2727957799548], [2220.6010575969726, 14231.499164673096, 3578.807228915663, 14212.668425018837], [2997.943484949401, 5521.1133714921825, 2647.903614457831, 4696.18010550113], [986.8479231794943, 8307.666525091356, 1365.3253012048192, 8026.951017332329], [297.27596961693916, 11918.541869920959, 1034.33734939759, 11771.482290881688], [9947.288307046934, 2131.978417401707, 11294.963855421687, 786.1446872645065], [14551.118034480527, 14120.647468652094, 13446.385542168673, 13798.90806330068], [16080.218499263654, 7788.8504398002115, 16073.602409638554, 7406.310474755088], [13933.605540908955, 5005.695522537359, 14397.97590361446, 3641.091183119819], [5394.812189772658, 8003.20714324465, 5709.542168674699, 8089.015071590052], [10278.819673531785, 14543.371527777617, 10302.0, 15578.077618688774], [6571.8542337858125, 14647.44335121258, 6950.746987951808, 15660.829691032402], [8089.923598441376, 11998.382779261257, 8812.554216867467, 10261.256970610399], [12197.765487375556, 9672.48975448664, 11915.56626506024, 8999.287867370009], [4782.680174108482, 25269.91551773878, 5068.253012048192, 26397.911077618686], [12458.196406184592, 25315.05868857776, 12743.036144578315, 26294.470987189154], [13648.791736588377, 21936.205924146616, 13922.180722891564, 22301.683496608894], [3654.241388069853, 20926.666937877108, 3785.674698795181, 21350.034664657123]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s045_thumbnail_FinalSegmentation.png","nr":45,"width":17337,"height":24723,"anchoring":[83.03688654813195, 415.35777189267117, 34.73285383334986, 344.4038109246195, -54.51496607482749, 1.9037045838360878, -62.93852320254367, -397.1361933740041, 13.868294628183076],"markers":[[2777.648387096775, 13730.859834212511, 3336.906451612903, 14289.782215523739], [2355.1931622368747, 5446.483349008825, 2292.958064516128, 5365.6548605877915], [15460.746621311726, 11166.39503458966, 13645.896774193548, 14215.259231348908], [9214.542770679753, 590.1816992720128, 11147.877419354838, 2421.99698568199], [4964.858287532231, 5936.694831381821, 5107.890322580644, 6036.361718161266], [6369.997987695567, 1963.045632650306, 6468.751612903226, 2496.51996985682], [16288.833000790597, 7090.048539063109, 15808.36129032258, 9613.46495855313], [16162.946910593624, 10443.66591689299, 15659.225806451612, 14084.844009042954], [15767.857688432521, 10500.027839423887, 14727.129032258066, 14345.674453654861], [12572.648192580566, 1885.7558415666485, 14167.870967741936, 3502.5802562170315], [11070.583774234548, 13318.1484452703, 10644.545161290325, 13861.275056518463], [7046.536601074758, 14371.752304121816, 6431.467741935485, 14252.520723436322], [14821.564144952768, 20255.52098166735, 13067.99677419355, 22431.418236623966], [5902.849170038202, 20255.410467795224, 4306.287096774195, 20158.46721929164], [7986.732558867401, 24277.98028718433, 5760.358064516129, 23921.877920120576], [13569.207179645959, 15605.530287268837, 13049.354838709678, 16544.102486812364], [5306.092185818206, 17883.472079351348, 3877.522580645161, 17550.16277317257], [14023.177010274445, 17889.381319386783, 13403.551612903224, 19208.299171062554]]}, +{"filename":"ext-d000009_PVMouse_81264_Samp1_resize15__s046_thumbnail_FinalSegmentation.png","nr":46,"width":20881,"height":22422,"anchoring":[13.417114921613347, 385.82997289485127, 31.139835626818524, 425.6352084712112, 0.0, 0.0, 0.0, -365.9453857836332, 12.779095069682851],"markers":[[9163.969230769231, 1537.6051243406182, 8758.184615384613, 1520.7083647324791], [5445.436608909411, 4303.0897358712655, 4514.3538461538465, 4494.538055764883], [4366.879310793804, 11620.60360310024, 4243.83076923077, 12942.917859834211], [3492.8136839995013, 5960.411046192045, 2722.1384615384613, 6539.045968349661], [6643.610475049072, 7760.553140265616, 5985.323076923076, 8161.134890730971], [12011.65040825642, 1479.2872734005489, 13103.461538461539, 1537.6051243406177], [16610.11682318757, 11584.453434542587, 15622.707692307697, 12283.944235116805], [18029.728717665832, 10980.257152419606, 18125.046153846157, 12334.634513941222], [15128.821907890679, 2385.0763456511254, 15910.13846153846, 2128.9917106254707], [13677.262456295191, 5356.748099331116, 13796.676923076924, 5508.343632253202], [10688.962216618718, 9172.56367005878, 10685.661538461538, 9631.152976639036], [12348.381374354452, 13796.334524629408, 12308.8, 12267.047475508665], [8923.549763912306, 13754.401427263663, 8639.83076923077, 11979.802562170311], [10468.558016333462, 14490.98058672537, 10313.692307692307, 12165.666917859833], [7844.964551434122, 14359.167471479395, 7236.492307692308, 12757.053504144687], [13401.224311340506, 14700.459322048984, 13492.338461538462, 13094.98869630746], [6522.823812392781, 22427.560680296378, 6982.876923076923, 21610.95553880934], [14634.69746536497, 22407.865371641576, 14101.015384615384, 21509.57498116051], [14218.681784619512, 16841.908058923003, 14861.86153846154, 15561.915599095704], [6664.547951457964, 17797.941041498343, 5748.615384615385, 16744.688771665413]]}]} \ No newline at end of file