-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCHANGELOG
More file actions
1236 lines (1079 loc) · 54.3 KB
/
CHANGELOG
File metadata and controls
1236 lines (1079 loc) · 54.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Release: v2.0.0-alpha.86
Description:
## What's Changed
* fix: Fixed image divide: avoiding NaN and use float devide by @joda01 in https://github.com/joda01/imagec/pull/132
* fix: Possible segfault in ROI intersecting mask calculation by @joda01 in https://github.com/joda01/imagec/pull/132
* feat: Allow to set breakpoints in preview by @joda01 in https://github.com/joda01/imagec/pull/132
* feat: Added histogram toolbar for preview image by @joda01 in https://github.com/joda01/imagec/pull/132
* feat: Allow to enable and disable overlay in preview image by @joda01 in https://github.com/joda01/imagec/pull/132
* feat: Added more auto threshold algorithms from ImageJ: Mean, Shanbag, Renyi Entropy, Min Error, ... by @joda01 in https://github.com/joda01/imagec/pull/132
* feat: Added experimental adaptive threshold command by @joda01 in https://github.com/joda01/imagec/pull/132
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.85...v2.0.0-alpha.86
----------------------------------------
# Release: v2.0.0-alpha.85
Description:
## What's Changed
* feat: Added median and variance rank filter @joda01
* fix: Threshold validator was not executed @joda01
* fix: Morpho transform command has same input is output @joda01
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.84...v2.0.0-alpha.85
----------------------------------------
# Release: v2.0.0-alpha.84
Description:
## What's Changed
* feat: Show result of possible filter in preview by @joda01 in https://github.com/joda01/imagec/pull/131
* feat: Allow to export heatmap as PNG or SVG @joda01 in https://github.com/joda01/imagec/pull/131
* feat: Allow to export x,y center of mass @joda01 in https://github.com/joda01/imagec/pull/131
* feat: Allow to define operation order in image math command @joda01 in https://github.com/joda01/imagec/pull/131
* feat: Allow to define cache scope (iteration or pipeline scoped) @joda01 in https://github.com/joda01/imagec/pull/131
* fix: After image cache command no additional command could be added @joda01 in https://github.com/joda01/imagec/pull/131
* fix: Wrong reason for noisy images was used @joda01 in https://github.com/joda01/imagec/pull/131
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.83...v2.0.0-alpha.84
----------------------------------------
# Release: v2.0.0-alpha.83
Description:
## What's Changed
* fix: Exit after export successful in command line by @joda01
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.82...v2.0.0-alpha.83
----------------------------------------
# Release: v2.0.0-alpha.82
Description:
## What's Changed
* fix: Command line wrong working directory by @joda01
* fix: Added missing shared libs for linux application by @joda01
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.81...v2.0.0-alpha.82
----------------------------------------
# Release: v2.0.0-alpha.81
Description:
## What's Changed
* feat: Add notes textfield to pipeline settings by @joda01
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.80...v2.0.0-alpha.81
----------------------------------------
# Release: v2.0.0-alpha.80
Description:
## What's Changed
* fix: Fixed auto contrast for thumbnail by @joda01 in https://github.com/joda01/imagec/pull/130
* fix: Fixed image cache dependency graph calculation by @joda01 in https://github.com/joda01/imagec/pull/130
* fix: Allow higher contrast values by @joda01 in https://github.com/joda01/imagec/pull/130
* feat: Add rank filter by @joda01 in https://github.com/joda01/imagec/pull/130
* feat: Added enhance contrast command by @joda01 in https://github.com/joda01/imagec/pull/130
* feat: Added rank filter command by @joda01 in https://github.com/joda01/imagec/pull/130
* feat: Allow to create history tags by @joda01 in https://github.com/joda01/imagec/pull/130
* feat: Generate preview using multiple threads by @joda01 in https://github.com/joda01/imagec/pull/130
* feat: Add clear button to history by @joda01 in https://github.com/joda01/imagec/pull/130
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.79...v2.0.0-alpha.80
----------------------------------------
# Release: v2.0.0-alpha.79
Description:
## What's Changed
* fix: Fixed build optimization. @joda01
* fix: RGB thumbnail where not created. @joda01
* feat: Create thumbnail from thumbnail series if no pyramid information is stored. @joda01
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.78...v2.0.0-alpha.79
----------------------------------------
# Release: v2.0.0-alpha.78
Description:
## What's Changed
* fix: Crash on edit classification by @joda01 in https://github.com/joda01/imagec/pull/129
* fix: Fixed shifted values in image table if one or more elements are NaN by @joda01 in https://github.com/joda01/imagec/pull/129
* fix: Removed not working tooltip in pipeline overview by @joda01 in https://github.com/joda01/imagec/pull/129
* feat: Added change history log for pipelines by @joda01 in https://github.com/joda01/imagec/pull/126
* feat: Allow to create project templates by @joda01 in https://github.com/joda01/imagec/pull/129
* feat: Allow to define results template in project by @joda01 in https://github.com/joda01/imagec/pull/129
* feat: Allow to disable pipelines by @joda01 in https://github.com/joda01/imagec/pull/129
* feat: Added classification suggestions using dropwdown by @joda01 in https://github.com/joda01/imagec/pull/129
* feat: Improve usability of results panel (added breadcrumb for navigation, make not used sidebar invisible) by @joda01 in https://github.com/joda01/imagec/pull/129
* feat: Center heatmap and plate in results view by @joda01 in https://github.com/joda01/imagec/pull/129
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.77...v2.0.0-alpha.78
----------------------------------------
# Release: v2.0.0-alpha.77
Description:
## What's Changed
* feat: Allow to measure object hierarchy/tree using reclassify move or copy by @joda01 in https://github.com/joda01/imagec/pull/125
* feat: Added intersection measure channel to table by @joda01 in https://github.com/joda01/imagec/pull/125
* feat: Allow to add object ID to results table by @joda01 in https://github.com/joda01/imagec/pull/125
* feat: Allow to draw bounding box to control image by @joda01 in https://github.com/joda01/imagec/pull/125
* feat: Allow to draw object ID to control image by @joda01 in https://github.com/joda01/imagec/pull/125
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.76...v2.0.0-alpha.77
----------------------------------------
# Release: v2.0.0-alpha.76
Description:
## What's Changed
* feat: Added separate command for Canny and Sobel by @joda01 in https://github.com/joda01/imagec/pull/123
* feat: Allow to parameterize Sobel edge detector by @joda01 in https://github.com/joda01/imagec/pull/123
* feat: Use OpenCV sobel detection and added ImageJ implementation as fallback by @joda01 in https://github.com/joda01/imagec/pull/123
* feat: Rework command selection dialog: Added short description and search and faster startup by @joda01 in https://github.com/joda01/imagec/pull/123
* feat: Improved ImageC startup and pipeline editor performance by @joda01 in https://github.com/joda01/imagec/pull/123
* feat: Open ImageC projects is know multiple times faster by @joda01 in https://github.com/joda01/imagec/pull/123
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.75...v2.0.0-alpha.76
----------------------------------------
# Release: v2.0.0-alpha.75
Description:
## What's Changed
* fix: Fixed crash when using mean intensity projection by @joda01 in https://github.com/joda01/imagec/pull/121
* fix: AI model path not loaded correct under windows by @joda01 in https://github.com/joda01/imagec/pull/121
* fix: AI model detail were not loading correctly on project open by @joda01 in https://github.com/joda01/imagec/pull/121
* fix: Increased max pipeline name length to 30 by @joda01 in https://github.com/joda01/imagec/pull/121
* fix: Reduced minimum windows size from 1600 to 1500 px by @joda01 in https://github.com/joda01/imagec/pull/121
* feat: Added morphological transform command by @joda01 in https://github.com/joda01/imagec/pull/121
* feat: Added circle Hough-Transformation command by @joda01 in https://github.com/joda01/imagec/pull/121
* feat: Added fill holes command by @joda01 in https://github.com/joda01/imagec/pull/121
* feat: Added support for canny edge detection with parameters by @joda01 in https://github.com/joda01/imagec/pull/121
* feat: Allow to select z-stack index for analyzing in pipeline by @joda01 in https://github.com/joda01/imagec/pull/121
* feat: Added take the middle projection by @joda01 in https://github.com/joda01/imagec/pull/121
* feat: Extended object classifier to allow specification of the contour finding mode (inner, outer or both) by @joda01 in https://github.com/joda01/imagec/pull/121
* feat: Add yest cell brightfield pipeline template by @joda01 in https://github.com/joda01/imagec/pull/121
* feat: It is now possible to start analyzes and export data using the command line by @joda01 in https://github.com/joda01/imagec/pull/121
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.73...v2.0.0-alpha.75
----------------------------------------
# Release: v2.0.0-alpha.74
Description:
----------------------------------------
# Release: v2.0.0-alpha.73
Description:
## What's Changed
* feat: Support for pytorch trained AI models by @joda01 in https://github.com/joda01/imagec/pull/116
* feat: Support for U-Net AI model architecture by @joda01 in https://github.com/joda01/imagec/pull/116
* fix: Support 8 bit non interleaved images by @joda01 in https://github.com/joda01/imagec/pull/116
* chore: Changed compiler for windows from mingw to msvc @joda01 in https://github.com/joda01/imagec/pull/116
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.72...v2.0.0-alpha.73
----------------------------------------
# Release: v2.0.0-alpha.72
Description:
## What's Changed
* fix: Measure settings have not been updated by @joda01 in https://github.com/joda01/imagec/pull/114
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.71...v2.0.0-alpha.72
----------------------------------------
# Release: v2.0.0-alpha.71
Description:
## What's Changed
* feat: Allow to reorder pipelines in overview using drag and drop by @joda01 in https://github.com/joda01/imagec/pull/111
* feat(change): Pipeline opens now with double click instead of single click to avoid conflicts together with drag and drop by @joda01 in https://github.com/joda01/imagec/pull/111
* fix: Reclassify move and copy does not work correct by @joda01 in https://github.com/joda01/imagec/pull/113
* fix: Intensity filter was not applied in reclassify move and copy by @joda01 in https://github.com/joda01/imagec/pull/113
* fix: Preview refresh was not triggered on empty text input by @joda01 in https://github.com/joda01/imagec/pull/113
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.70...v2.0.0-alpha.71
----------------------------------------
# Release: v2.0.0-alpha.70
Description:
## What's Changed
* fix: images stored in big endian format are not loaded correct by @joda01 in https://github.com/joda01/imagec/pull/108
* fix: Template for export cannot be saved by @joda01 in https://github.com/joda01/imagec/pull/109
* fix: Wrong numbering in table view of results by @joda01 in https://github.com/joda01/imagec/pull/110
* feat: It is now possible to select the image series to analyze by @joda01 in https://github.com/joda01/imagec/pull/108
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.69...v2.0.0-alpha.70
----------------------------------------
# Release: v2.0.0-alpha.69
Description:
## What's Changed
* fix: dependency loop is resolved wrong for preview in case of recursive depending pipelines by @joda01 in https://github.com/joda01/imagec/pull/103
* fix: coloc pipeline template load does not work by @joda01 in https://github.com/joda01/imagec/pull/104
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.68...v2.0.0-alpha.69
----------------------------------------
# Release: v2.0.0-alpha.68
Description:
## What's Changed
- fix: Fixed spelling mistakes
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.67...v2.0.0-alpha.68
----------------------------------------
# Release: v2.0.0-alpha.67
Description:
## What's Changed
* feat: Allow to define a probability handicap for AI detection by @joda01 in https://github.com/joda01/imagec/pull/99
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.66...v2.0.0-alpha.67
----------------------------------------
# Release: v2.0.0-alpha.66
Description:
## What's Changed
* fix: Fixed crash when using not supported AI model by @joda01
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.65...v2.0.0-alpha.66
----------------------------------------
# Release: v2.0.0-alpha.65
Description:
## What's Changed
* feat: Added auto adjustment for preview by @joda01
* feat: Allow to specify AI thresholds by @joda01
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.63...v2.0.0-alpha.64
----------------------------------------
# Release: v2.0.0-alpha.64
Description:
## What's Changed
* fix: Fixed auto preiview update by @joda01 in https://github.com/joda01/imagec/pull/97
* feat: Added auto adjust for thumbnail brightness by @joda01 in https://github.com/joda01/imagec/pull/98
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.63...v2.0.0-alpha.64
----------------------------------------
# Release: v2.0.0-alpha.63
Description:
## What's Changed
feat: It is no possible to populate classes from image channels automatically by @joda01
fix: Save as did not save the project if no changes were done by @joda01
fix: Classes were not displayed correctly in commands after loading a template by @joda01
fix: Some fixes in predefined templates by @joda01
fix: Thumbnail was not updated when channel of image changed by @joda01
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.62...v2.0.0-alpha.63
----------------------------------------
# Release: v2.0.0-alpha.62
Description:
## What's Changed
* feat!: Add colored classes (this is a breaking change since clusters are removed now) by @joda01 in https://github.com/joda01/imagec/pull/94
* feat: Allow to store images to cache for later use in other pipeline by @joda01 in https://github.com/joda01/imagec/pull/94
* fix: Crash when inserting command at top by @joda01 in https://github.com/joda01/imagec/pull/94
* fix: Allow to start with any command in pipeline by @joda01 in https://github.com/joda01/imagec/pull/94
* fix: Add mutex lock in preview to prevent crash when switching window by @joda01 in https://github.com/joda01/imagec/pull/94
* fix: Change position of pixel info dialog in advanced preview to prevent being hidden on edges by @joda01 in https://github.com/joda01/imagec/pull/94
* fix: Fixed size of AI classifier edit dialog by @joda01 in https://github.com/joda01/imagec/pull/94
* fix: Crash when AI model was not loaded successfully by @joda01 in https://github.com/joda01/imagec/pull/94
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.61...v2.0.0-alpha.62
----------------------------------------
# Release: v2.0.0-alpha.61
Description:
## What's Changed
* fix: Fixed image math multiply and divide by @joda01 in https://github.com/joda01/imagec/pull/93
* fix: Set threshold settings per default to manual by @joda01 in https://github.com/joda01/imagec/pull/93
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.60...v2.0.0-alpha.61
----------------------------------------
# Release: v2.0.0-alpha.60
Description:
## What's Changed
* feat: Allow different image types as command input by @joda01 in https://github.com/joda01/imagec/pull/92
* feat: Add helper arrows by @joda01 in https://github.com/joda01/imagec/pull/92
* feat: allow to select which elements to be shown in the preview by @joda01 in https://github.com/joda01/imagec/pull/92
* fix: Fixed JVM ram allocation is now done dynamically by @joda01 in https://github.com/joda01/imagec/pull/92
* fix: Visibility of of none types by @joda01 in https://github.com/joda01/imagec/pull/92
* fix: Fixed dependency graph calculation by @joda01 in https://github.com/joda01/imagec/pull/92
* fix: Image saver did not define output clusters and classes by @joda01 in https://github.com/joda01/imagec/pull/92
* fix: Lock guard on image load to prevent loading the same image twize by @joda01 in https://github.com/joda01/imagec/pull/92
* fix: Fixed reclassify interpretation by @joda01 in https://github.com/joda01/imagec/pull/92
* fix: Removed max particle size from object classifier by @joda01 in https://github.com/joda01/imagec/pull/92
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.52...v2.0.0-alpha.60
----------------------------------------
# Release: v2.0.0-alpha.59
Description:
----------------------------------------
# Release: v2.0.0-alpha.58
Description:
----------------------------------------
# Release: v2.0.0-alpha.57
Description:
----------------------------------------
# Release: v2.0.0-alpha.56
Description:
----------------------------------------
# Release: v2.0.0-alpha.55
Description:
----------------------------------------
# Release: v2.0.0-alpha.54
Description:
----------------------------------------
# Release: v2.0.0-alpha.53
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.52...v2.0.0-alpha.53
----------------------------------------
# Release: v2.0.0-alpha.52
Description:
## What's Changed
* fix: Crash when switching pipeline tab @joda01
----------------------------------------
# Release: 2.0.0-alpha.51
Description:
## What's Changed
* fix: Do not paint centroid @joda01
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.50...2.0.0-alpha.51
----------------------------------------
# Release: v2.0.0-alpha.50
Description:
## What's Changed
* fix: Paint command as disabled after loading and it was disabled in setting @joda01 in https://github.com/joda01/imagec/pull/91
* feat: Added pixel information by @joda01 in https://github.com/joda01/imagec/pull/91
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.46...v2.0.0-alpha.50
----------------------------------------
# Release: v2.0.0-alpha.49
Description:
## What's Changed
* fix: Fixed dependency graph by @joda01
* fix: Fixed grid in preview for small resolutions by @joda01
* feat: Added and not by @joda01
* feat: Fasten up preview by @joda01
* feat: Added object transform command by @joda01
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.44...v2.0.0-alpha.47
----------------------------------------
# Release: v2.0.0-alpha.46
Description:
## What's Changed
* fix: Color chooser when from color is bigger than to color by @joda01
* feat: Add image math command by @joda01
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.44...v2.0.0-alpha.45
----------------------------------------
# Release: v2.0.0-alpha.44
Description:
## What's Changed
* fix: Input clusters in UI not updated by @joda01
* fix: Results table not opened correctly after run by @joda01
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.43...v2.0.0-alpha.44
----------------------------------------
# Release: v2.0.0-alpha.43
Description:
## What's Changed
* fix: Plate size orientation by @joda01
**Full Changelog**: https://github.com/joda01/imagec/compare/2.0.0-alpha.42...v2.0.0-alpha.43
----------------------------------------
# Release: 2.0.0-alpha.42
Description:
## What's Changed
* fix: Color chooser by @joda01 in https://github.com/joda01/imagec/pull/90
* fix: Fixed heatmap export by @joda01 in https://github.com/joda01/imagec/pull/90
* fix: Fixed tile selector in preview @joda01 in https://github.com/joda01/imagec/pull/90
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.41...2.0.0-alpha.42
----------------------------------------
# Release: v2.0.0-alpha.41
Description:
## What's Changed
* feat: Allow to set preview size and tile size by @joda01 in https://github.com/joda01/imagec/pull/89
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.40...v2.0.0-alpha.41
----------------------------------------
# Release: v2.0.0-alpha.40
Description:
## What's Changed
feat: Added fine tuning options for color chooser by @joda01
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.39...v2.0.0-alpha.40
----------------------------------------
# Release: v2.0.0-alpha.39
Description:
## What's Changed
* feat: feat: Added support for nd2 files
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.38...v2.0.0-alpha.39
----------------------------------------
# Release: v2.0.0-alpha.38
Description:
## What's Changed
* fix: Fixed density map by @joda01
* fix: Crash on multiple intsenty values in one table by @joda01
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.37...v2.0.0-alpha.38
----------------------------------------
# Release: v2.0.0-alpha.37
Description:
## What's Changed
* fix: Fixed join which is also needed to include image_id by @joda01
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.36...v2.0.0-alpha.37
----------------------------------------
# Release: v2.0.0-alpha.36
Description:
## What's Changed
* feat: Added classification templates by @joda01 in https://github.com/joda01/imagec/pull/87
* feat: Allow to copy pipeline by @joda01 in https://github.com/joda01/imagec/pull/87
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.35...v2.0.0-alpha.36
----------------------------------------
# Release: v2.0.0-alpha.35
Description:
## What's Changed
* feat: Add R export by @joda01 in https://github.com/joda01/imagec/pull/84
* feat: Allow to individual configure data export table by @joda01 in https://github.com/joda01/imagec/pull/84
* feat: Last data export table configuration is stored to db now by @joda01 in https://github.com/joda01/imagec/pull/84
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.34...v2.0.0-alpha.35
----------------------------------------
# Release: v2.0.0-alpha.34
Description:
----------------------------------------
# Release: v2.0.0-alpha.33
Description:
----------------------------------------
# Release: v2.0.0-alpha.32
Description:
## What's Changed
* feat: Added reclassify option which allows to reclassify objects based on intersection and intensity. by @joda01 in https://github.com/joda01/imagec/pull/83
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.31...v2.0.0-alpha.32
----------------------------------------
# Release: v2.0.0-alpha.31
Description:
## What's Changed
* feat: Support of object math functions by @joda01
* feat: Performance improvements on project load by @joda01 in https://github.com/joda01/imagec/pull/82
* fix: Fixed noise filter input field only allows numbers with 1 digit by @joda01
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.25...v2.0.0-alpha.31
----------------------------------------
# Release: v2.0.0-alpha.30
Description:
----------------------------------------
# Release: v2.0.0-alpha.29
Description:
----------------------------------------
# Release: v2.0.0-alpha.28
Description:
----------------------------------------
# Release: v2.0.0-alpha.27
Description: - feat: MacOs Try
----------------------------------------
# Release: v2.0.0-alpha.26
Description:
----------------------------------------
# Release: v2.0.0-alpha.25
Description:
## What's Changed
* fix: Fixed pipeline loading by @joda01 in https://github.com/joda01/imagec/pull/81
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.24...v2.0.0-alpha.25
----------------------------------------
# Release: v2.0.0-alpha.24
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.23...v2.0.0-alpha.24
----------------------------------------
# Release: v2.0.0-alpha.23
Description:
## What's Changed
* feat: Added support for RGB images by @joda01 in https://github.com/joda01/imagec/pull/80
* feat: Added cross hair cursor feature by @joda01 in https://github.com/joda01/imagec/pull/80
* fix: Fixed zoom behavior by @joda01 in https://github.com/joda01/imagec/pull/80
* fix: Trigger preview update by @joda01 in https://github.com/joda01/imagec/pull/80
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.22...v2.0.0-alpha.23
----------------------------------------
# Release: v2.0.0-alpha.22
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.21...v2.0.0-alpha.22
----------------------------------------
# Release: v2.0.0-alpha.21
Description:
## What's Changed
* feat: Add onnx runtime to allow AI model parsing by @joda01 in https://github.com/joda01/imagec/pull/79
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.20...v2.0.0-alpha.21
----------------------------------------
# Release: v2.0.0-alpha.20
Description:
## What's Changed
* feat: Added new icons by @joda01 in https://github.com/joda01/imagec/pull/76
* feat: Added colored legend for preview by @joda01
* fix: Set default z-projection to THIS to avoid pipeline error by @joda01
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.19...v2.0.0-alpha.20
----------------------------------------
# Release: v2.0.0-alpha.19
Description:
----------------------------------------
# Release: v2.0.0-alpha.17
Description:
----------------------------------------
# Release: v2.0.0-alpha.16
Description:
----------------------------------------
# Release: v2.0.0-alpha.15
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.14...v2.0.0-alpha.15
----------------------------------------
# Release: v2.0.0-alpha.14
Description:
----------------------------------------
# Release: v2.0.0-alpha.13
Description:
----------------------------------------
# Release: v2.0.0-alpha.11
Description:
----------------------------------------
# Release: v2.0.0-alpha.7
Description:
## What's Changed
* feat: Added color code for pipeline generation by @joda01 in https://github.com/joda01/imagec/pull/72
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.6...v2.0.0-alpha.7
----------------------------------------
# Release: v2.0.0-alpha.6
Description:
## What's Changed
* feat: Added pipeline debug log by @joda01 in https://github.com/joda01/imagec/pull/71
* fix: Made threshold and classifier more clear in usability by @joda01 in https://github.com/joda01/imagec/pull/71
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.5...v2.0.0-alpha.6
----------------------------------------
# Release: v2.0.0-alpha.5
Description:
## What's Changed
* fix: Fixed well order assigenment by @joda01 in cd236d417b7e48f0e7b5aa0e9a8ac3fd8d34124a
* fix: Fixed pipeline execution order in multi threading scenario by @joda01 in a9f08f73445ed46a5b23b8746e93f39f2157fd36
**Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.2...v2.0.0-alpha.3
----------------------------------------
# Release: v2.0.0-alpha.2
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v2.0.0-alpha.1...v2.0.0-alpha.2
## What's Changed
* fix: Fixed image well statisitcs by @joda01
----------------------------------------
# Release: v2.0.0-alpha.1
Description:
## What's Changed
* feat!: Concept rework by @joda01 in https://github.com/joda01/imagec/pull/70
* feat: Allow to store and open templates by @joda01 in https://github.com/joda01/imagec/pull/70
* feat: Allow to copy channels by @joda01 in https://github.com/joda01/imagec/pull/70
* fix: Don't show thumbnail if no tiles by @joda01 in https://github.com/joda01/imagec/pull/70
* feat: Allow to set max threshold by @joda01 in https://github.com/joda01/imagec/pull/70
* fix: Segfault on loading wrong time by @joda01 in https://github.com/joda01/imagec/pull/70
* feat: Added tile size to heatmap size by @joda01 in https://github.com/joda01/imagec/pull/70
* fix: Fixed voronoi grid by @joda01 in https://github.com/joda01/imagec/pull/70
* fix: Fixed list export by @joda01 in https://github.com/joda01/imagec/pull/70
* feat: Allow cross channel preview by @joda01 in https://github.com/joda01/imagec/pull/70
* feat: Allow to reclassify copy by @joda01 in https://github.com/joda01/imagec/pull/70
* feat: Allow to store export settings by @joda01 in https://github.com/joda01/imagec/pull/70
* fix: Close database on back clicked by @joda01 in https://github.com/joda01/imagec/pull/70
**Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.106...v2.0.0-alpha.1
----------------------------------------
# Release: v1.0.0-alpha.124
Description:
----------------------------------------
# Release: v1.0.0-alpha.123
Description:
----------------------------------------
# Release: v1.0.0-alpha.122
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.121...v1.0.0-alpha.122
----------------------------------------
# Release: v1.0.0-alpha.121
Description:
----------------------------------------
# Release: v1.0.0-alpha.120
Description:
----------------------------------------
# Release: v1.0.0-alpha.119
Description:
----------------------------------------
# Release: v1.0.0-alpha.118
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.117...v1.0.0-alpha.118
----------------------------------------
# Release: v1.0.0-alpha.117
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.116...v1.0.0-alpha.117
----------------------------------------
# Release: v1.0.0-alpha.116
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.115...v1.0.0-alpha.116
----------------------------------------
# Release: v1.0.0-alpha.115
Description:
----------------------------------------
# Release: v1.0.0-alpha.114
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.113...v1.0.0-alpha.114
----------------------------------------
# Release: v1.0.0-alpha.113
Description:
----------------------------------------
# Release: v1.0.0-alpha.112
Description:
----------------------------------------
# Release: v1.0.0-alpha.111
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.110...v1.0.0-alpha.111
----------------------------------------
# Release: v1.0.0-alpha.110
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.109...v1.0.0-alpha.110
----------------------------------------
# Release: v1.0.0-alpha.109
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.107...v1.0.0-alpha.109
----------------------------------------
# Release: v1.0.0-alpha.107
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.106...v1.0.0-alpha.107
Complete design rework
----------------------------------------
# Release: v1.0.0-alpha.106
Description:
## What's Changed
* feat: Support for pyramid images in preview by @joda01 in https://github.com/joda01/imagec/pull/69
* fix: Fixed export of well to XLSX by @joda01 in https://github.com/joda01/imagec/pull/69
**Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.105...v1.0.0-alpha.106
----------------------------------------
# Release: v1.0.0-alpha.105
Description:
## What's Changed
* feat: Added sidebar showing image and channel information from OME XML by @joda01 in https://github.com/joda01/imagec/pull/65
* fix: Fixed image propertie loading from tif @joda01
**Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.103...v1.0.0-alpha.105
----------------------------------------
# Release: v1.0.0-alpha.102
Description:
## What's Changed
* feat: Add comparison view dialog which allows to compare edited and original image by @joda01 in https://github.com/joda01/imagec/pull/63
* fix: Bounding box was painted in original image wich leads to wrong intensity values @joda01 in https://github.com/joda01/imagec/pull/63
**Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.100...v1.0.0-alpha.102
----------------------------------------
# Release: v1.0.0-alpha.101
Description:
## What's Changed
- fix: Bounding box was paintined in original image which leads to wrong intensity calculation from @joda01
- feat: Extened preview functionality which allows to compare edited with original image form @joda01
**Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.100...v1.0.0-alpha.101
----------------------------------------
# Release: v1.0.0-alpha.99
Description:
## What's Changed
* fix: Limit channel name to 15 chars to prevent crash on export for excel by @joda01 in https://github.com/joda01/imagec/pull/60
* fix: When repainting the heaptmap, the wait-cursor was displayed for too long by @joda01 in https://github.com/joda01/imagec/pull/60
* feat: Added tooltip for reporting statistics by @joda01 in https://github.com/joda01/imagec/pull/60
* feat: Added start screen including new project wizard by @joda01 in https://github.com/joda01/imagec/pull/60
**Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.98...v1.0.0-alpha.99
----------------------------------------
# Release: v1.0.0-alpha.100
Description:
## What's Changed
* fix: Remove channel and show home screen not working under Windows. by @joda01
* fix: Working directory is not updated in Windows by @joda01
**Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.99...v1.0.0-alpha.100
----------------------------------------
# Release: v1.0.0-alpha.98
Description:
## What's Changed
* feat: Use SQL database for data storage by @joda01 in https://github.com/joda01/imagec/pull/54
* feat: Added unit test by @joda01 in https://github.com/joda01/imagec/pull/55
* feat: Faster heatmap view by @joda01 in https://github.com/joda01/imagec/pull/56
* feat: Allow to set fixed min/max values for heatmap
**Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.97...v1.0.0-alpha.98
----------------------------------------
# Release: v1.0.0-alpha.97
Description: feat: Use duckdb
----------------------------------------
# Release: v1.0.0-alpha.96
Description:
----------------------------------------
# Release: v1.0.0-alpha.95
Description:
----------------------------------------
# Release: v1.0.0-alpha.94
Description:
----------------------------------------
# Release: v1.0.0-alpha.93
Description:
----------------------------------------
# Release: v1.0.0-alpha.92
Description:
----------------------------------------
# Release: v1.0.0-alpha.91
Description:
----------------------------------------
# Release: v1.0.0-alpha.90
Description: chore: Allow to export images
----------------------------------------
# Release: v1.0.0-alpha.89
Description:
----------------------------------------
# Release: v1.0.0-alpha.88
Description:
----------------------------------------
# Release: v1.0.0-alpha.87
Description:
----------------------------------------
# Release: v1.0.0-alpha.86
Description: chore: Use spartial index
----------------------------------------
# Release: v1.0.0-alpha.85
Description:
----------------------------------------
# Release: v1.0.0-alpha.84
Description:
----------------------------------------
# Release: v1.0.0-alpha.83
Description:
----------------------------------------
# Release: v1.0.0-alpha.82
Description:
----------------------------------------
# Release: v1.0.0-alpha.81
Description:
----------------------------------------
# Release: v1.0.0-alpha.80
Description:
----------------------------------------
# Release: v1.0.0-alpha.79
Description:
----------------------------------------
# Release: v1.0.0-alpha.78
Description:
----------------------------------------
# Release: v1.0.0-alpha.76
Description:
----------------------------------------
# Release: v1.0.0-alpha.75
Description:
----------------------------------------
# Release: v1.0.0-alpha.74
Description:
----------------------------------------
# Release: v1.0.0-alpha.73
Description:
----------------------------------------
# Release: v1.0.0-alpha.71
Description:
----------------------------------------
# Release: v1.0.0-alpha.70
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.69...v1.0.0-alpha.70
----------------------------------------
# Release: v1.0.0-alpha.72
Description: chore: No Ofast
----------------------------------------
# Release: v1.0.0-alpha.69
Description:
## What's Changed
* feat: Allow to filter images by @joda01 in https://github.com/joda01/imagec/pull/53
**Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.68...v1.0.0-alpha.69
----------------------------------------
# Release: v1.0.0-alpha.68
Description:
## What's Changed
* feat: Added filter for voronoi channel by @joda01 in https://github.com/joda01/imagec/pull/52
**Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.67...v1.0.0-alpha.68
----------------------------------------
# Release: v1.0.0-alpha.67
Description:
## What's Changed
* feat: Design fixes by @joda01 in https://github.com/joda01/imagec/pull/51
**Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.66...v1.0.0-alpha.67
----------------------------------------
# Release: v1.0.0-alpha.66
Description:
----------------------------------------
# Release: v1.0.0-alpha.65
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.64...v1.0.0-alpha.65
----------------------------------------
# Release: v1.0.0-alpha.64
Description:
## What's Changed
* feat: Added thread pool by @joda01 in https://github.com/joda01/imagec/pull/50
* feat: Added tooltips by @joda01
**Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.63...v1.0.0-alpha.64
----------------------------------------
# Release: v1.0.0-alpha.63
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.62...v1.0.0-alpha.63
----------------------------------------
# Release: v1.0.0-alpha.62
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.61...v1.0.0-alpha.62
----------------------------------------
# Release: v1.0.0-alpha.61
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.60...v1.0.0-alpha.61
----------------------------------------
# Release: v1.0.0-alpha.60
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.59...v1.0.0-alpha.60
----------------------------------------
# Release: v1.0.0-alpha.59
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.57...v1.0.0-alpha.59
----------------------------------------
# Release: v1.0.0-alpha.57
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.56...v1.0.0-alpha.57
----------------------------------------
# Release: v1.0.0-alpha.58
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.57...v1.0.0-alpha.58
- feat: Multi threading JNI
----------------------------------------
# Release: v1.0.0-alpha.56
Description:
## What's Changed
* feat: Allow to display sum in overview by @joda01 in https://github.com/joda01/imagec/pull/49
**Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.55...v1.0.0-alpha.56
----------------------------------------
# Release: v1.0.0-alpha.55
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.54...v1.0.0-alpha.55
----------------------------------------
# Release: v1.0.0-alpha.54
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.53...v1.0.0-alpha.54
----------------------------------------
# Release: v1.0.0-alpha.53
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.52...v1.0.0-alpha.53
----------------------------------------
# Release: v1.0.0-alpha.52
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.51...v1.0.0-alpha.52
----------------------------------------
# Release: v1.0.0-alpha.51
Description:
## What's Changed
* feat: Added missing templates by @joda01 in https://github.com/joda01/imagec/pull/48
**Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.50...v1.0.0-alpha.51
----------------------------------------
# Release: v1.0.0-alpha.50
Description:
## What's Changed
* feat: Config change by @joda01 in https://github.com/joda01/imagec/pull/47
**Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.49...v1.0.0-alpha.50
----------------------------------------
# Release: v1.0.0-alpha.49
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.48...v1.0.0-alpha.49
----------------------------------------
# Release: v1.0.0-alpha.48
Description:
----------------------------------------
# Release: v1.0.0-alpha.47
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.46...v1.0.0-alpha.47
----------------------------------------
# Release: v1.0.0-alpha.46
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.45...v1.0.0-alpha.46
----------------------------------------
# Release: v1.0.0-alpha.45
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.44...v1.0.0-alpha.45
----------------------------------------
# Release: v1.0.0-alpha.44
Description:
## What's Changed
* feat: Advanced reporting by @joda01 in https://github.com/joda01/imagec/pull/46
**Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.43...v1.0.0-alpha.44
----------------------------------------
# Release: v1.0.0-alpha.43
Description:
## What's Changed
* feat: Added advanced reporting by @joda01 in https://github.com/joda01/imagec/pull/44
**Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.42...v1.0.0-alpha.43
----------------------------------------
# Release: v1.0.0-alpha.42
Description:
## What's Changed
* feat: Added rank filter by @joda01 in https://github.com/joda01/imagec/pull/43
* feat: Allow to create heatmap for wells
* feat: Allow to define a job name
**Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.41...v1.0.0-alpha.42
----------------------------------------
# Release: v1.0.0-alpha.41
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.40...v1.0.0-alpha.41
----------------------------------------
# Release: v1.0.0-alpha.40
Description:
## What's Changed
* feat: Added rank filters by @joda01 in https://github.com/joda01/imagec/pull/42
**Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.39...v1.0.0-alpha.40
----------------------------------------
# Release: v1.0.0-alpha.39
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.38...v1.0.0-alpha.39
----------------------------------------
# Release: v1.0.0-alpha.38
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.37...v1.0.0-alpha.38
----------------------------------------
# Release: v1.0.0-alpha.37
Description:
## What's Changed
* feat: Allow to open and parse onnx models by @joda01 in https://github.com/joda01/imagec/pull/41
**Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.36...v1.0.0-alpha.37
----------------------------------------
# Release: v1.0.0-alpha.36
Description:
----------------------------------------
# Release: v1.0.0-alpha.35
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.34...v1.0.0-alpha.35
----------------------------------------
# Release: v1.0.0-alpha.34
Description:
## What's Changed
* fix: Fixed kernel size for median background subtraction by @joda01 in https://github.com/joda01/imagec/pull/39
**Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.33...v1.0.0-alpha.34
----------------------------------------
# Release: v1.0.0-alpha.33
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.32...v1.0.0-alpha.33
----------------------------------------
# Release: v1.0.0-alpha.32
Description:
## What's Changed
* feat: Add cross channel counting support by @joda01 in https://github.com/joda01/imagec/pull/38
**Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.31...v1.0.0-alpha.32
----------------------------------------
# Release: v1.0.0-alpha.31
Description:
## What's Changed
* fix: Heatmap for big tiff by @joda01 in https://github.com/joda01/imagec/pull/37
**Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.30...v1.0.0-alpha.31
----------------------------------------
# Release: v1.0.0-alpha.30
Description:
## What's Changed
* chore: Thread safe by @joda01 in https://github.com/joda01/imagec/pull/36
**Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.29...v1.0.0-alpha.30
----------------------------------------
# Release: v1.0.0-alpha.29
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.28...v1.0.0-alpha.29
----------------------------------------
# Release: v1.0.0-alpha.28
Description: **Full Changelog**: https://github.com/joda01/imagec/compare/v1.0.0-alpha.27...v1.0.0-alpha.28
----------------------------------------
# Release: v1.0.0-alpha.27
Description: