Compare 2 frames
Project description
Compare frames
Compare 2 frames
Installation
Package Installation from PyPi
$ pip install compare-frames-g4
Package Installation from Source Code
The source code is available on GitHub.
Download and install the package:
$ git clone https://github.com/Genzo4/compare_frames
$ cd compare_frames
$ pip install -r requirements.txt
$ pip install .
Usage
- From files
from compare_frames_g4 import compare_frames
is_equal = compare_frames('path_to_frame_1', 'path_to_frame_2')
- From frames (numpy.ndarray)
from compare_frames_g4 import compare_frames
import cv2
frame_1 = cv2.imread('path_to_frame_1')
frame_2 = cv2.imread('path_to_frame_2')
is_equal = compare_frames(frame_1, frame_2)
- Mix
from compare_frames_g4 import compare_frames
import cv2
frame_1 = cv2.imread('path_to_frame_1')
is_equal = compare_frames(frame_1, 'path_to_frame_2')
from compare_frames_g4 import compare_frames
import cv2
frame_2 = cv2.imread('path_to_frame_2')
is_equal = compare_frames('path_to_frame_2', frame_2)
Compare frames
Сравнение двух кадров (изображений).
Установка
Установка пакета с PyPi
$ pip install compare-frames-g4
Установка пакета из исходного кода
Исходный код размещается на GitHub.
Скачайте его и установите пакет:
$ git clone https://github.com/Genzo4/compare_frames
$ cd compare_frames
$ pip install -r requirements.txt
$ pip install .
Использование
- Берём кадры из файлов
from compare_frames_g4 import compare_frames
is_equal = compare_frames('path_to_frame_1', 'path_to_frame_2')
- Используем "готовые" кадры (numpy.ndarray). Например, из cv2.imread
from compare_frames_g4 import compare_frames
import cv2
frame_1 = cv2.imread('path_to_frame_1')
frame_2 = cv2.imread('path_to_frame_2')
is_equal = compare_frames(frame_1, frame_2)
- Смешанный режим
from compare_frames_g4 import compare_frames
import cv2
frame_1 = cv2.imread('path_to_frame_1')
is_equal = compare_frames(frame_1, 'path_to_frame_2')
from compare_frames_g4 import compare_frames
import cv2
frame_2 = cv2.imread('path_to_frame_2')
is_equal = compare_frames('path_to_frame_2', frame_2)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file compare_frames_g4-1.1.0.tar.gz
.
File metadata
- Download URL: compare_frames_g4-1.1.0.tar.gz
- Upload date:
- Size: 4.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b9a36230deee38e2a49c3d252299ec571b679f01cbc9f7f7a9d7452e177c2eda |
|
MD5 | 951ceb16f084d231e1f2e0be665feddf |
|
BLAKE2b-256 | 23a9f9c1360d65ab72fe62055b21324e95ca870e389c05acefa3c2223b3c76f5 |
File details
Details for the file compare_frames_g4-1.1.0-py3-none-any.whl
.
File metadata
- Download URL: compare_frames_g4-1.1.0-py3-none-any.whl
- Upload date:
- Size: 4.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ea7f83ad17775ed28b6d22f65b3bd83a5eceec599e293bdb4788a5bed52e446d |
|
MD5 | 0775065002ef064250651435f13d4f28 |
|
BLAKE2b-256 | bebb6b61621a0c753cd0c7216c174a68e7d9b1e5c5f7e7ef41e0087b376b85d5 |