Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Running starter

...

In terminal go to folder where PEKAT is installed (cd folder) and run

Code Block
languagebash
./pekat-vision-gui -l

Running starter with web interface

In terminal go to folder where PEKAT is installed (cd folder) and runThis both opens GUI (not available on Jetson) and also writes an address where you can access the web interface through your web browser. The -l option shows all logs also in the command line (without this option the logs are just written to file).

You can also use the host option for the same purpose:

Code Block
./pekat-webvision host -l

Then open the given address in web browser.

Creating project

In terminal go to folder where PEKAT is installed (cd folder) and run

Code Block
./pekat-webvision create -d path_to_new_project_directory -n name_of_project

...

Code Block
languagebash
./pekat-webvision start -p port_number -d path_to_project -l

When project is started, you can open it in web browser on the address http://localhost:port_number

...

In terminal go to folder where PEKAT is installed (cd folder) and run

Code Block
./pekat-webvision start -p port_number -d path_to_project -g gpu_number -l

...

In terminal go to folder where PEKAT is installed (cd folder) and run

Code Block
./pekat-webvision start -p 8000 -d path_to_project1 -g 0 -l

Open another terminal and run

Code Block
./pekat-webvision start -p 8010 -d path_to_project2 -g 1 -l

When projects are started, open them in browser on http://localhost:8000 and http://localhost:8010

Help

To get information about different parameters, you can use the -h option.
Help for starter:

Code Block
./pekat-vision -h

Help for creating project:

Code Block
./pekat-vision create -h

Help for starting project:

Code Block
./pekat-vision start -h