Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
evc-ufv
V1-0
Commits
7deaa73d
Commit
7deaa73d
authored
Dec 19, 2025
by
valentini
Browse files
Carica un nuovo file
parent
8bd02460
Changes
1
Hide whitespace changes
Inline
Side-by-side
Reference Software/UFV1.0-Test/README.md
0 → 100644
View file @
7deaa73d
# 📦 DeepCamera 2x Super Resolution
A command-line interface (CLI) tool to perform 2x super-resolution on YUV video files using a remote inference server.
---
## 🚀 Usage
```
bash
python your_script.py
[
OPTIONS]
```
---
## 🔧 Arguments
| Argument | Short | Required | Description |
| ---------------- | ----- | -------- | ------------------------------------------------------------------------------------------------------------------------------------ |
|
`--input_file`
|
`-i`
| ✅ Yes | Path to the
**input YUV video**
file to be processed. |
|
`--output_file`
|
`-o`
| ✅ Yes | Path where the
**upsampled output**
video will be saved. |
|
`--url`
|
`-u`
| ✅ Yes | URL of the
**inference server**
(
`https://mpai-ufv.cyens.org.cy/`
). |
|
`--size`
| | ✅ Yes | Input video resolution (e.g.,
`720p`
,
`1080p`
). |
|
`--pixel_format`
| | ✅ Yes | YUV pixel format. See supported formats here:
[
labradon/yuvio
](
https://github.com/labradon/yuvio
)
. |
|
`--model`
| | ❌ No | Which model to use for upscaling. Options:
<br>
•
`hd24k_full`
<br>
•
`hd24k_standard`
(default)
<br>
•
`sd2hd_full`
<br>
•
`sd2hd_standard`
|
---
## 🧪 Example
```
bash
python main.py
-i
input_video.yuv
-o
output_video.yuv
-u
https://mpai-ufv.cyens.org.cy/
--size
1080p
--pixel_format
yuv420p10le
--model
hd24k_standard
```
---
## 📝 Notes
*
The input video must be a
**raw YUV**
file with the specified resolution and pixel format.
*
Make sure the remote inference server is running and accessible via the
`--url`
you provide.
*
This tool does
**not read/write MP4 or other container formats**
— it operates directly on raw video frames.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment