@@ -188,7 +188,7 @@ async function initUIcomponents() {
188
188
provideContent : true ,
189
189
content : `
190
190
<div class = "message" >
191
-
191
+
192
192
<h3> Please select a model</h3></div><br>
193
193
<table id = 'roitable'>
194
194
<thead>
@@ -503,7 +503,7 @@ function camicStopDraw(e) {
503
503
const viewer = $CAMIC . viewer ;
504
504
const canvasDraw = viewer . canvasDrawInstance ;
505
505
const imgColl = canvasDraw . getImageFeatureCollection ( ) ;
506
- if ( imgColl . features . length > 0 ) {
506
+ if ( imgColl . features . length > 0 && imgColl . features [ 0 ] . bound . coordinates [ 0 ] . length >= 5 ) {
507
507
// Check size first
508
508
const box = checkSize ( imgColl , viewer . imagingHelper ) ;
509
509
@@ -539,8 +539,8 @@ function checkSize(imgColl, imagingHelper) {
539
539
// slide images svsslide images svs
540
540
// get position on viewer
541
541
542
- const topLeft = imgColl . features [ 0 ] . bound [ 0 ] ;
543
- const bottomRight = imgColl . features [ 0 ] . bound [ 2 ] ;
542
+ const topLeft = imgColl . features [ 0 ] . bound . coordinates [ 0 ] [ 0 ] ;
543
+ const bottomRight = imgColl . features [ 0 ] . bound . coordinates [ 0 ] [ 2 ] ;
544
544
const min = imagingHelper . _viewer . viewport . imageToViewportCoordinates ( topLeft [ 0 ] , topLeft [ 1 ] ) ;
545
545
const max = imagingHelper . _viewer . viewport . imageToViewportCoordinates ( bottomRight [ 0 ] , bottomRight [ 1 ] ) ;
546
546
const rect = new OpenSeadragon . Rect ( min . x , min . y , max . x - min . x , max . y - min . y ) ;
@@ -956,7 +956,7 @@ async function showInfo() {
956
956
deleteModel ( name ) ;
957
957
} ) ;
958
958
document . getElementById ( 'chngClassListBtn' + modelCount ) . addEventListener ( 'click' , ( ) => {
959
- showNewClassInput ( name ) ;
959
+ showNewClassInput ( name , classes ) ;
960
960
} ) ;
961
961
modelCount += 1 ;
962
962
} ;
@@ -968,12 +968,13 @@ async function showInfo() {
968
968
}
969
969
970
970
971
- function showNewClassInput ( name ) {
971
+ function showNewClassInput ( name , classes ) {
972
972
const self = $UI . chngClassLst ;
973
973
self . body . innerHTML = `
974
974
<input id ="new_classList" type="text"/>
975
975
<button class="btn btn-primary btn-xs my-xs-btn btn-final-change" id='chngbtn' type="button">Change Class List</button>
976
976
` ;
977
+ document . getElementById ( 'new_classList' ) . defaultValue = classes ;
977
978
$UI . chngClassLst . open ( ) ; // Open the box to take input from user
978
979
document . getElementById ( 'chngbtn' ) . addEventListener ( 'click' , ( ) => {
979
980
// $UI.chngClassLst.close();
@@ -1061,7 +1062,7 @@ function dataURItoBlob(dataURI) {
1061
1062
* Convert image coordinates
1062
1063
*/
1063
1064
function convertCoordinates ( imagingHelper , bound ) {
1064
- const newArray = bound . map ( function ( arr ) {
1065
+ const newArray = bound . coordinates [ 0 ] . map ( function ( arr ) {
1065
1066
return arr . slice ( ) ; // copy
1066
1067
} ) ;
1067
1068
0 commit comments