-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Vaibhav Phutane
committed
Jun 16, 2020
1 parent
1d4d2db
commit 6c8d09c
Showing
3 changed files
with
86 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,51 @@ | ||
<div class="wrapper"> | ||
<div class="overlay"> | ||
<div class="wrap-track-status"> | ||
<div class="" id="pills-profile" role="tabpanel" aria-labelledby="pills-profile-tab"> | ||
<div class="div-tab col-md-12"> | ||
<div class="header"> | ||
<img src="../../assets/images/logo.JPG" alt=""> | ||
<h3>Image Analyser for case number: {{caseNumber}}</h3> | ||
<div class="wrap-track-status"> | ||
<div class="" id="pills-profile" role="tabpanel" aria-labelledby="pills-profile-tab"> | ||
<div class="div-tab col-md-12"> | ||
<div class="header"> | ||
<img src="../../assets/images/logo.JPG" alt=""> | ||
<h3>Image Analyser for case number: {{caseNumber}}</h3> | ||
</div> | ||
<div class="main-content"> | ||
<h5>[Click on the images below]</h5> | ||
<div class="img-container"> | ||
<img *ngFor="let img of images" (click)="processImage(img.image)" | ||
[ngClass]="{'active': selectedId === img.id }" [src]="img.image" alt=""> | ||
</div> | ||
<div *ngIf="isProccessing"> | ||
<div class="wrap-loader"> | ||
<div class="loader-wrapper"> | ||
<div class="sandwatch-holder"> | ||
<div class="sandwatch-top"></div> | ||
<div class="sandwatch-bottom"></div> | ||
</div> | ||
</div> | ||
<div class="div-tab col-md-8 col-sm-12"> | ||
<div class="main-content"> | ||
<h5>[Click on the images below]</h5> | ||
<div class="img-container"> | ||
<div class="row"> | ||
<div *ngFor="let img of images" class="column"> | ||
<img (click)="processImage(img.image)" [ngClass]="{'active': selectedId === img.id }" [src]="img.image" alt=""> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="content-wrap"> | ||
<div *ngIf="processedImageURL" class="div-first"> | ||
<img [src]="processedImageURL" alt=""> | ||
</div> | ||
</div> | ||
<div *ngIf="isProccessing"> | ||
<div class="wrap-loader"> | ||
<div class="loader-wrapper"> | ||
<div class="sandwatch-holder"> | ||
<div class="sandwatch-top"></div> | ||
<div class="sandwatch-bottom"></div> | ||
</div> | ||
</div> | ||
</div> | ||
<h3 class="text-center">Processing your image...</h3> | ||
</div> | ||
</div> | ||
</div> | ||
<div *ngIf="objects" class="div-tab object col-md-4 col-sm-12"> | ||
<div class="panel panel-default drug-image-wrap"> | ||
<div class="panel-heading"> | ||
<h4>List of objects identified:</h4> | ||
</div> | ||
<div class="panel-body"> | ||
<div class="row list-detail"> | ||
<div class="col-md-4"> | ||
<h4><span class="find"> {{objects}}</span></h4> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<h3 class="text-center">Processing your image...</h3> | ||
</div> | ||
</div> | ||
<div class="result-container"> | ||
<div *ngIf="processedImageURL"> | ||
<img [src]="processedImageURL" alt=""> | ||
</div> | ||
<div *ngIf="objects"> | ||
<div class="panel panel-default"> | ||
<div class="panel-heading"> | ||
<h5>List of objects identified:</h5> | ||
</div> | ||
<div class="panel-body"> | ||
<div class="row list-detail"> | ||
<div class="col-md-4"> | ||
<h4><span class="find"> {{objects}}</span></h4> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters