vision-pilot
一套基于 C# 与 .NET 6 构建的工业视觉检测上位机系统,实现了从图像采集、算子处理、工业通信到数据追溯的全链路自动化控制。
vision-pilot Latest Version Download
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
dotnet restore
View Details ▼
dotnet restore
Restores the dependencies and tools of a .NET project.
dotnet restore
Restore dependencies for a .NET project or solution in the current directory:
dotnet restore {{path/to/project_or_solution}}
Restore dependencies for a .NET project or solution in a specific location:
dotnet restore --no-http-cache
Restore dependencies without caching the HTTP requests:
dotnet run
View Details ▼
dotnet run
Run a .NET application without explicit compile or launch commands.
dotnet run
Run the project in the current directory:
dotnet run --project {{path/to/file.csproj}}
Run a specific project:
dotnet run -- {{arg1=foo arg2=bar ...}}
Run the project with specific arguments:
dotnet test
View Details ▼
dotnet test
Execute tests for a .NET application.
Note: View <https://learn.microsoft.com/dotnet/core/testing/selective-unit-tests> for supported filter expressions.
dotnet test
Execute tests for a .NET project/solution in the current directory:
dotnet test {{path/to/project_or_solution}}
Execute tests for a .NET project/solution in a specific location:
dotnet test --filter {{Name~TestMethod1}}
Execute tests matching the given filter expression:
opt
View Details ▼
opt
Run optimizations and analyze LLVM source files.
opt -{{passname}} {{path/to/file.bc}} -S -o {{file_opt.bc}}
Run an optimization or analysis on a bitcode file:
opt {{-dot-cfg}} -S {{path/to/file.bc}} -disable-output
Output the Control Flow Graph of a function to a `.dot` file:
opt -O2 {{path/to/file.bc}} -S -o {{path/to/output_file.bc}}
Optimize the program at level 2 and output the result to another file:
powershell
View Details ▼
powershell
This command may be mistaken as the cross-platform version of PowerShell (formerly known as PowerShell Core), which uses `pwsh` instead of `powershell`.
The original `powershell` command in Windows is still available to use the legacy Windows version of PowerShell (version 5.1 and below).
tldr pwsh
View the documentation for the command referring to the latest, cross-platform version of PowerShell (version 6 and above):
powershell
Start an interactive shell session:
tldr powershell {{[-p|--platform]}} windows
View the documentation for the command referring to the legacy Windows PowerShell (version 5.1 and below):
