UNPKG

runu

Version:
53 lines (48 loc) 2.22 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Logo Detection</title> <link href="../css/todo.css" rel="stylesheet" /> </head> <body> <div class="row" ng-controller='LogoDetectionController'> <div class="large-12 columns"> <div class="row"> <div class="large-4 columns hide-for-small"> <h4>Upload an image</h4> <hr> <div class="panel radius callout" style="text-align: center"> <label>Enter Image Url: <input type="text" name="analyzelabel" ng-model="analyze.labelurl" required > <button ng-click='analyzePicture(analyze.labelurl)'>Analyze</button> <p ng-bind-html="myText"></p> </label> </div> </div> <div class="large-8 columns"> <div class="panel radius" ng-style="{'background-image': 'url(http://hdwallnpics.com/wp-content/gallery/white-background-wallpaper/White-Background-Wallpaper.jpg)'}"> <div class="row"> <div class="large-6 small-6 columns analyzeText"> <div class="analysistitle"> <h4>Detect Image</h4> <hr> <h5 class="subheader"><p>On uploading an image Runu should able to identify the associated logo in that image.</p></h5> <h5 class="subheader"><p>For ex: The attached logo should be identified by Runu as a Coca-Cola logo.</p></h5> </div> <div ng-repeat="x in analysisResponse">{{x}}</div> </div> <div class="large-6 small-6 columns analyzeImage"> <div ng-init="myVar = 'http://franverona.com/loadgo/logos/cocacola.png'"> <img ng-src="{{myVar}}"> </div> </div> <hr> </div> </div> </div> </div> </div> </div> </body> </html>