diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2020-01-12 03:32:32 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2020-01-12 03:32:32 +0100 |
| commit | 2237dfc6b57f8c72b39898b54302fcae75bd3dcb (patch) | |
| tree | db0fe3a4f317b1c334cdadb003b7f526922d6304 /app/client/modules | |
| parent | 740d31c9564d6bf02eca935f1f979ddd72b1ffbc (diff) | |
disentangled vectors
Diffstat (limited to 'app/client/modules')
| -rw-r--r-- | app/client/modules/biggan/views/biggan.live.js | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/app/client/modules/biggan/views/biggan.live.js b/app/client/modules/biggan/views/biggan.live.js index e24d449..cb97c13 100644 --- a/app/client/modules/biggan/views/biggan.live.js +++ b/app/client/modules/biggan/views/biggan.live.js @@ -121,6 +121,29 @@ class BigGANLive extends Component { min={0} max={1} type='float' /> </Group> + + <Group title={"Scaling"}> + <Slider live + name='zoom' + title={"Zoom"} + min={-4.0} max={4.0} type='float' + /> + <Slider live + name='shiftx' + title={"shiftx"} + min={-100.0} max={100.0} type='float' + /> + <Slider live + name='shifty' + title={"shifty"} + min={-100.0} max={100.0} type='float' + /> + <Slider live + name='luminance' + title={"Luminance"} + min={-10.0} max={10} type='float' + /> + </Group> </div> <div className='params column'> <BigGANCategoryList /> |
