view src/app/feature-extraction-menu/feature-extraction-menu.component.html @ 64:270f59ef3b83

Incorporate recent piper changes and use output descriptor for some basic feature discrimination to render appropriate layers.
author Lucas Thompson <dev@lucas.im>
date Mon, 12 Dec 2016 00:41:37 +0000
parents af0b4b05311c
children 0980eb001bde
line wrap: on
line source
<select id="extractor-outputs" #extractorOutputs>
  <option selected></option>
  <option *ngFor="let extractor of extractors" value="{{extractor.combinedKey}}">
    {{extractor.name}}
  </option>
</select>
<p>
  <button md-raised-button
          color="primary"
          (click)="extract(extractorOutputs.value)"
          [disabled]="disabled">Extract</button>
</p>