How to Install and Uninstall klt.x86_64 Package on Fedora 35

Last updated: October 05,2024

1. Install "klt.x86_64" package

This tutorial shows how to install klt.x86_64 on Fedora 35

$ sudo dnf update $ sudo dnf install klt.x86_64

2. Uninstall "klt.x86_64" package

Please follow the guidelines below to uninstall klt.x86_64 on Fedora 35:

$ sudo dnf remove klt.x86_64 $ sudo dnf autoremove

3. Information about the klt.x86_64 package on Fedora 35

Last metadata expiration check: 2:04:28 ago on Wed Sep 7 08:25:01 2022.
Available Packages
Name : klt
Version : 1.3.4
Release : 24.fc35
Architecture : x86_64
Size : 40 k
Source : klt-1.3.4-24.fc35.src.rpm
Repository : fedora
Summary : An implementation of the Kanade-Lucas-Tomasi feature tracker
URL : http://www.ces.clemson.edu/~stb/klt/index.html
License : Public Domain
Description :
: KLT is an implementation, in the C programming language, of a
: feature tracker for the computer vision community. The source
: code is in the public domain, available for both commercial and
: non-commercial use.
:
: The tracker is based on the early work of Lucas and Kanade,
: was developed fully by Tomasi and Kanade, and was explained clearly
: in the paper by Shi and Tomasi. Later, Tomasi proposed a slight
: modification which makes the computation symmetric with respect
: to the two images -- the resulting equation is derived in the
: unpublished note by myself. Briefly, good features are located
: by examining the minimum eigenvalue of each 2 by 2 gradient
: matrix, and features are tracked using a Newton-Raphson method of
: minimizing the difference between the two windows. Multi-resolution
: tracking allows for relatively large displacements between images.
: The affine computation that evaluates the consistency of features
: between non-consecutive frames was implemented by Thorsten
: Thormaehlen several years after the original code and documentation
: were written.