mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-25 13:01:07 +00:00
videocompare: Update README with reference
This commit is contained in:
parent
1929f5872c
commit
b97a855a51
3 changed files with 3 additions and 2 deletions
|
@ -92,6 +92,7 @@ You will find the following plugins in this repository:
|
|||
- `videofx`: Plugin with various video filters.
|
||||
- `roundedcorners`: Element to make the corners of a video rounded via the alpha channel.
|
||||
- `colordetect`: A pass-through filter able to detect the dominant color(s) on incoming frames, using [color-thief](https://github.com/RazrFalcon/color-thief-rs).
|
||||
- `videocompare`: Compare similarity of video frames. The element can use different hashing algorithms like [Blockhash](https://github.com/commonsmachinery/blockhash-rfc), [DSSIM](https://kornel.ski/dssim), and others.
|
||||
|
||||
- `webp`: WebP decoder based on the [libwebp-sys-2](https://github.com/qnighy/libwebp-sys2-rs) library.
|
||||
|
||||
|
|
|
@ -7568,7 +7568,7 @@
|
|||
"value": "3"
|
||||
},
|
||||
{
|
||||
"desc": "Blockhash: The [Blockhash](https://github.com/commonsmachinery/blockhash-rfc) algorithm.",
|
||||
"desc": "Blockhash: The Blockhash (block median value perceptual hash) algorithm.",
|
||||
"name": "blockhash",
|
||||
"value": "4"
|
||||
}
|
||||
|
|
|
@ -78,7 +78,7 @@ pub enum HashAlgorithm {
|
|||
DoubleGradient = 3,
|
||||
|
||||
#[enum_value(
|
||||
name = "Blockhash: The [Blockhash](https://github.com/commonsmachinery/blockhash-rfc) algorithm.",
|
||||
name = "Blockhash: The Blockhash (block median value perceptual hash) algorithm.",
|
||||
nick = "blockhash"
|
||||
)]
|
||||
Blockhash = 4,
|
||||
|
|
Loading…
Reference in a new issue